49e1316f7f
protocol: api to register custom schemes to standard schemes
90 lines
2.8 KiB
C++
90 lines
2.8 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_PROTOCOL_H_
|
|
#define ATOM_BROWSER_API_ATOM_API_PROTOCOL_H_
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include "atom/browser/api/event_emitter.h"
|
|
#include "base/callback.h"
|
|
#include "native_mate/handle.h"
|
|
|
|
namespace net {
|
|
class URLRequest;
|
|
}
|
|
|
|
namespace atom {
|
|
|
|
class AtomBrowserContext;
|
|
class AtomURLRequestJobFactory;
|
|
|
|
namespace api {
|
|
|
|
class Protocol : public mate::EventEmitter {
|
|
public:
|
|
typedef base::Callback<v8::Local<v8::Value>(const net::URLRequest*)>
|
|
JsProtocolHandler;
|
|
|
|
static mate::Handle<Protocol> Create(
|
|
v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
|
|
|
JsProtocolHandler GetProtocolHandler(const std::string& scheme);
|
|
|
|
AtomBrowserContext* browser_context() const { return browser_context_; }
|
|
|
|
protected:
|
|
explicit Protocol(AtomBrowserContext* browser_context);
|
|
|
|
// mate::Wrappable implementations:
|
|
virtual mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
v8::Isolate* isolate);
|
|
|
|
private:
|
|
typedef std::map<std::string, JsProtocolHandler> ProtocolHandlersMap;
|
|
|
|
// Register schemes to standard scheme list.
|
|
void RegisterStandardSchemes(const std::vector<std::string>& schemes);
|
|
|
|
// Register/unregister an networking |scheme| which would be handled by
|
|
// |callback|.
|
|
void RegisterProtocol(v8::Isolate* isolate,
|
|
const std::string& scheme,
|
|
const JsProtocolHandler& callback);
|
|
void UnregisterProtocol(v8::Isolate* isolate, const std::string& scheme);
|
|
|
|
// Returns whether a scheme has been registered.
|
|
// FIXME Should accept a callback and be asynchronous so we do not have to use
|
|
// locks.
|
|
bool IsHandledProtocol(const std::string& scheme);
|
|
|
|
// Intercept/unintercept an existing protocol handler.
|
|
void InterceptProtocol(v8::Isolate* isolate,
|
|
const std::string& scheme,
|
|
const JsProtocolHandler& callback);
|
|
void UninterceptProtocol(v8::Isolate* isolate, const std::string& scheme);
|
|
|
|
// The networking related operations have to be done in IO thread.
|
|
void RegisterProtocolInIO(const std::string& scheme);
|
|
void UnregisterProtocolInIO(const std::string& scheme);
|
|
void InterceptProtocolInIO(const std::string& scheme);
|
|
void UninterceptProtocolInIO(const std::string& scheme);
|
|
|
|
// Do protocol.emit(event, parameter) under UI thread.
|
|
void EmitEventInUI(const std::string& event, const std::string& parameter);
|
|
|
|
AtomBrowserContext* browser_context_;
|
|
AtomURLRequestJobFactory* job_factory_;
|
|
ProtocolHandlersMap protocol_handlers_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Protocol);
|
|
};
|
|
|
|
} // namespace api
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_PROTOCOL_H_
|