Chris@50: // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors Chris@50: // Licensed under the MIT License: Chris@50: // Chris@50: // Permission is hereby granted, free of charge, to any person obtaining a copy Chris@50: // of this software and associated documentation files (the "Software"), to deal Chris@50: // in the Software without restriction, including without limitation the rights Chris@50: // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell Chris@50: // copies of the Software, and to permit persons to whom the Software is Chris@50: // furnished to do so, subject to the following conditions: Chris@50: // Chris@50: // The above copyright notice and this permission notice shall be included in Chris@50: // all copies or substantial portions of the Software. Chris@50: // Chris@50: // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR Chris@50: // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, Chris@50: // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE Chris@50: // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER Chris@50: // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, Chris@50: // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN Chris@50: // THE SOFTWARE. Chris@50: Chris@50: #ifndef CAPNP_EZ_RPC_H_ Chris@50: #define CAPNP_EZ_RPC_H_ Chris@50: Chris@50: #if defined(__GNUC__) && !defined(CAPNP_HEADER_WARNINGS) Chris@50: #pragma GCC system_header Chris@50: #endif Chris@50: Chris@50: #include "rpc.h" Chris@50: #include "message.h" Chris@50: Chris@50: struct sockaddr; Chris@50: Chris@50: namespace kj { class AsyncIoProvider; class LowLevelAsyncIoProvider; } Chris@50: Chris@50: namespace capnp { Chris@50: Chris@50: class EzRpcContext; Chris@50: Chris@50: class EzRpcClient { Chris@50: // Super-simple interface for setting up a Cap'n Proto RPC client. Example: Chris@50: // Chris@50: // # Cap'n Proto schema Chris@50: // interface Adder { Chris@50: // add @0 (left :Int32, right :Int32) -> (value :Int32); Chris@50: // } Chris@50: // Chris@50: // // C++ client Chris@50: // int main() { Chris@50: // capnp::EzRpcClient client("localhost:3456"); Chris@50: // Adder::Client adder = client.getMain(); Chris@50: // auto request = adder.addRequest(); Chris@50: // request.setLeft(12); Chris@50: // request.setRight(34); Chris@50: // auto response = request.send().wait(client.getWaitScope()); Chris@50: // assert(response.getValue() == 46); Chris@50: // return 0; Chris@50: // } Chris@50: // Chris@50: // // C++ server Chris@50: // class AdderImpl final: public Adder::Server { Chris@50: // public: Chris@50: // kj::Promise add(AddContext context) override { Chris@50: // auto params = context.getParams(); Chris@50: // context.getResults().setValue(params.getLeft() + params.getRight()); Chris@50: // return kj::READY_NOW; Chris@50: // } Chris@50: // }; Chris@50: // Chris@50: // int main() { Chris@50: // capnp::EzRpcServer server(kj::heap(), "*:3456"); Chris@50: // kj::NEVER_DONE.wait(server.getWaitScope()); Chris@50: // } Chris@50: // Chris@50: // This interface is easy, but it hides a lot of useful features available from the lower-level Chris@50: // classes: Chris@50: // - The server can only export a small set of public, singleton capabilities under well-known Chris@50: // string names. This is fine for transient services where no state needs to be kept between Chris@50: // connections, but hides the power of Cap'n Proto when it comes to long-lived resources. Chris@50: // - EzRpcClient/EzRpcServer automatically set up a `kj::EventLoop` and make it current for the Chris@50: // thread. Only one `kj::EventLoop` can exist per thread, so you cannot use these interfaces Chris@50: // if you wish to set up your own event loop. (However, you can safely create multiple Chris@50: // EzRpcClient / EzRpcServer objects in a single thread; they will make sure to make no more Chris@50: // than one EventLoop.) Chris@50: // - These classes only support simple two-party connections, not multilateral VatNetworks. Chris@50: // - These classes only support communication over a raw, unencrypted socket. If you want to Chris@50: // build on an abstract stream (perhaps one which supports encryption), you must use the Chris@50: // lower-level interfaces. Chris@50: // Chris@50: // Some of these restrictions will probably be lifted in future versions, but some things will Chris@50: // always require using the low-level interfaces directly. If you are interested in working Chris@50: // at a lower level, start by looking at these interfaces: Chris@50: // - `kj::setupAsyncIo()` in `kj/async-io.h`. Chris@50: // - `RpcSystem` in `capnp/rpc.h`. Chris@50: // - `TwoPartyVatNetwork` in `capnp/rpc-twoparty.h`. Chris@50: Chris@50: public: Chris@50: explicit EzRpcClient(kj::StringPtr serverAddress, uint defaultPort = 0, Chris@50: ReaderOptions readerOpts = ReaderOptions()); Chris@50: // Construct a new EzRpcClient and connect to the given address. The connection is formed in Chris@50: // the background -- if it fails, calls to capabilities returned by importCap() will fail with an Chris@50: // appropriate exception. Chris@50: // Chris@50: // `defaultPort` is the IP port number to use if `serverAddress` does not include it explicitly. Chris@50: // If unspecified, the port is required in `serverAddress`. Chris@50: // Chris@50: // The address is parsed by `kj::Network` in `kj/async-io.h`. See that interface for more info Chris@50: // on the address format, but basically it's what you'd expect. Chris@50: // Chris@50: // `readerOpts` is the ReaderOptions structure used to read each incoming message on the Chris@50: // connection. Setting this may be necessary if you need to receive very large individual Chris@50: // messages or messages. However, it is recommended that you instead think about how to change Chris@50: // your protocol to send large data blobs in multiple small chunks -- this is much better for Chris@50: // both security and performance. See `ReaderOptions` in `message.h` for more details. Chris@50: Chris@50: EzRpcClient(const struct sockaddr* serverAddress, uint addrSize, Chris@50: ReaderOptions readerOpts = ReaderOptions()); Chris@50: // Like the above constructor, but connects to an already-resolved socket address. Any address Chris@50: // format supported by `kj::Network` in `kj/async-io.h` is accepted. Chris@50: Chris@50: explicit EzRpcClient(int socketFd, ReaderOptions readerOpts = ReaderOptions()); Chris@50: // Create a client on top of an already-connected socket. Chris@50: // `readerOpts` acts as in the first constructor. Chris@50: Chris@50: ~EzRpcClient() noexcept(false); Chris@50: Chris@50: template Chris@50: typename Type::Client getMain(); Chris@50: Capability::Client getMain(); Chris@50: // Get the server's main (aka "bootstrap") interface. Chris@50: Chris@50: template Chris@50: typename Type::Client importCap(kj::StringPtr name) Chris@50: KJ_DEPRECATED("Change your server to export a main interface, then use getMain() instead."); Chris@50: Capability::Client importCap(kj::StringPtr name) Chris@50: KJ_DEPRECATED("Change your server to export a main interface, then use getMain() instead."); Chris@50: // ** DEPRECATED ** Chris@50: // Chris@50: // Ask the sever for the capability with the given name. You may specify a type to automatically Chris@50: // down-cast to that type. It is up to you to specify the correct expected type. Chris@50: // Chris@50: // Named interfaces are deprecated. The new preferred usage pattern is for the server to export Chris@50: // a "main" interface which itself has methods for getting any other interfaces. Chris@50: Chris@50: kj::WaitScope& getWaitScope(); Chris@50: // Get the `WaitScope` for the client's `EventLoop`, which allows you to synchronously wait on Chris@50: // promises. Chris@50: Chris@50: kj::AsyncIoProvider& getIoProvider(); Chris@50: // Get the underlying AsyncIoProvider set up by the RPC system. This is useful if you want Chris@50: // to do some non-RPC I/O in asynchronous fashion. Chris@50: Chris@50: kj::LowLevelAsyncIoProvider& getLowLevelIoProvider(); Chris@50: // Get the underlying LowLevelAsyncIoProvider set up by the RPC system. This is useful if you Chris@50: // want to do some non-RPC I/O in asynchronous fashion. Chris@50: Chris@50: private: Chris@50: struct Impl; Chris@50: kj::Own impl; Chris@50: }; Chris@50: Chris@50: class EzRpcServer { Chris@50: // The server counterpart to `EzRpcClient`. See `EzRpcClient` for an example. Chris@50: Chris@50: public: Chris@50: explicit EzRpcServer(Capability::Client mainInterface, kj::StringPtr bindAddress, Chris@50: uint defaultPort = 0, ReaderOptions readerOpts = ReaderOptions()); Chris@50: // Construct a new `EzRpcServer` that binds to the given address. An address of "*" means to Chris@50: // bind to all local addresses. Chris@50: // Chris@50: // `defaultPort` is the IP port number to use if `serverAddress` does not include it explicitly. Chris@50: // If unspecified, a port is chosen automatically, and you must call getPort() to find out what Chris@50: // it is. Chris@50: // Chris@50: // The address is parsed by `kj::Network` in `kj/async-io.h`. See that interface for more info Chris@50: // on the address format, but basically it's what you'd expect. Chris@50: // Chris@50: // The server might not begin listening immediately, especially if `bindAddress` needs to be Chris@50: // resolved. If you need to wait until the server is definitely up, wait on the promise returned Chris@50: // by `getPort()`. Chris@50: // Chris@50: // `readerOpts` is the ReaderOptions structure used to read each incoming message on the Chris@50: // connection. Setting this may be necessary if you need to receive very large individual Chris@50: // messages or messages. However, it is recommended that you instead think about how to change Chris@50: // your protocol to send large data blobs in multiple small chunks -- this is much better for Chris@50: // both security and performance. See `ReaderOptions` in `message.h` for more details. Chris@50: Chris@50: EzRpcServer(Capability::Client mainInterface, struct sockaddr* bindAddress, uint addrSize, Chris@50: ReaderOptions readerOpts = ReaderOptions()); Chris@50: // Like the above constructor, but binds to an already-resolved socket address. Any address Chris@50: // format supported by `kj::Network` in `kj/async-io.h` is accepted. Chris@50: Chris@50: EzRpcServer(Capability::Client mainInterface, int socketFd, uint port, Chris@50: ReaderOptions readerOpts = ReaderOptions()); Chris@50: // Create a server on top of an already-listening socket (i.e. one on which accept() may be Chris@50: // called). `port` is returned by `getPort()` -- it serves no other purpose. Chris@50: // `readerOpts` acts as in the other two above constructors. Chris@50: Chris@50: explicit EzRpcServer(kj::StringPtr bindAddress, uint defaultPort = 0, Chris@50: ReaderOptions readerOpts = ReaderOptions()) Chris@50: KJ_DEPRECATED("Please specify a main interface for your server."); Chris@50: EzRpcServer(struct sockaddr* bindAddress, uint addrSize, Chris@50: ReaderOptions readerOpts = ReaderOptions()) Chris@50: KJ_DEPRECATED("Please specify a main interface for your server."); Chris@50: EzRpcServer(int socketFd, uint port, ReaderOptions readerOpts = ReaderOptions()) Chris@50: KJ_DEPRECATED("Please specify a main interface for your server."); Chris@50: Chris@50: ~EzRpcServer() noexcept(false); Chris@50: Chris@50: void exportCap(kj::StringPtr name, Capability::Client cap); Chris@50: // Export a capability publicly under the given name, so that clients can import it. Chris@50: // Chris@50: // Keep in mind that you can implicitly convert `kj::Own&&` to Chris@50: // `Capability::Client`, so it's typical to pass something like Chris@50: // `kj::heap()` as the second parameter. Chris@50: Chris@50: kj::Promise getPort(); Chris@50: // Get the IP port number on which this server is listening. This promise won't resolve until Chris@50: // the server is actually listening. If the address was not an IP address (e.g. it was a Unix Chris@50: // domain socket) then getPort() resolves to zero. Chris@50: Chris@50: kj::WaitScope& getWaitScope(); Chris@50: // Get the `WaitScope` for the client's `EventLoop`, which allows you to synchronously wait on Chris@50: // promises. Chris@50: Chris@50: kj::AsyncIoProvider& getIoProvider(); Chris@50: // Get the underlying AsyncIoProvider set up by the RPC system. This is useful if you want Chris@50: // to do some non-RPC I/O in asynchronous fashion. Chris@50: Chris@50: kj::LowLevelAsyncIoProvider& getLowLevelIoProvider(); Chris@50: // Get the underlying LowLevelAsyncIoProvider set up by the RPC system. This is useful if you Chris@50: // want to do some non-RPC I/O in asynchronous fashion. Chris@50: Chris@50: private: Chris@50: struct Impl; Chris@50: kj::Own impl; Chris@50: }; Chris@50: Chris@50: // ======================================================================================= Chris@50: // inline implementation details Chris@50: Chris@50: template Chris@50: inline typename Type::Client EzRpcClient::getMain() { Chris@50: return getMain().castAs(); Chris@50: } Chris@50: Chris@50: template Chris@50: inline typename Type::Client EzRpcClient::importCap(kj::StringPtr name) { Chris@50: return importCap(name).castAs(); Chris@50: } Chris@50: Chris@50: } // namespace capnp Chris@50: Chris@50: #endif // CAPNP_EZ_RPC_H_