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