capability.h 36.7 KB
Newer Older
Kenton Varda's avatar
Kenton Varda committed
1 2
// Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
// Licensed under the MIT License:
3
//
Kenton Varda's avatar
Kenton Varda committed
4 5 6 7 8 9
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
10
//
Kenton Varda's avatar
Kenton Varda committed
11 12
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
13
//
Kenton Varda's avatar
Kenton Varda committed
14 15 16 17 18 19 20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
21 22 23 24

#ifndef CAPNP_CAPABILITY_H_
#define CAPNP_CAPABILITY_H_

25
#if defined(__GNUC__) && !defined(CAPNP_HEADER_WARNINGS)
26 27 28
#pragma GCC system_header
#endif

29 30 31 32
#if CAPNP_LITE
#error "RPC APIs, including this header, are not available in lite mode."
#endif

33
#include <kj/async.h>
34
#include <kj/vector.h>
35
#include "raw-schema.h"
36
#include "any.h"
37
#include "pointer-helpers.h"
38 39 40

namespace capnp {

41
template <typename Results>
42 43
class Response;

44
template <typename T>
45 46 47 48 49 50 51 52
class RemotePromise: public kj::Promise<Response<T>>, public T::Pipeline {
  // A Promise which supports pipelined calls.  T is typically a struct type.  T must declare
  // an inner "mix-in" type "Pipeline" which implements pipelining; RemotePromise simply
  // multiply-inherits that type along with Promise<Response<T>>.  T::Pipeline must be movable,
  // but does not need to be copyable (i.e. just like Promise<T>).
  //
  // The promise is for an owned pointer so that the RPC system can allocate the MessageReader
  // itself.
53 54

public:
55 56
  inline RemotePromise(kj::Promise<Response<T>>&& promise, typename T::Pipeline&& pipeline)
      : kj::Promise<Response<T>>(kj::mv(promise)),
57 58
        T::Pipeline(kj::mv(pipeline)) {}
  inline RemotePromise(decltype(nullptr))
59 60
      : kj::Promise<Response<T>>(nullptr),
        T::Pipeline(nullptr) {}
61 62 63 64 65
  KJ_DISALLOW_COPY(RemotePromise);
  RemotePromise(RemotePromise&& other) = default;
  RemotePromise& operator=(RemotePromise&& other) = default;
};

66
class LocalClient;
67 68
namespace _ { // private
extern const RawSchema NULL_INTERFACE_SCHEMA;  // defined in schema.c++
69
class CapabilityServerSetBase;
70 71 72 73 74 75 76 77 78 79
}  // namespace _ (private)

struct Capability {
  // A capability without type-safe methods.  Typed capability clients wrap `Client` and typed
  // capability servers subclass `Server` to dispatch to the regular, typed methods.

  class Client;
  class Server;

  struct _capnpPrivate {
80
    struct IsInterface;
81 82 83
    static constexpr uint64_t typeId = 0x3;
    static constexpr Kind kind = Kind::INTERFACE;
    static constexpr _::RawSchema const* schema = &_::NULL_INTERFACE_SCHEMA;
84

85 86 87
    static const _::RawBrandedSchema* brand() {
      return &_::NULL_INTERFACE_SCHEMA.defaultBrand;
    }
88 89 90
  };
};

91
// =======================================================================================
92
// Capability clients
93

94 95 96 97
class RequestHook;
class ResponseHook;
class PipelineHook;
class ClientHook;
98

99
template <typename Params, typename Results>
100 101 102 103 104
class Request: public Params::Builder {
  // A call that hasn't been sent yet.  This class extends a Builder for the call's "Params"
  // structure with a method send() that actually sends it.
  //
  // Given a Cap'n Proto method `foo(a :A, b :B): C`, the generated client interface will have
David Renshaw's avatar
David Renshaw committed
105
  // a method `Request<FooParams, C> fooRequest()` (as well as a convenience method
106
  // `RemotePromise<C> foo(A::Reader a, B::Reader b)`).
107 108

public:
109 110
  inline Request(typename Params::Builder builder, kj::Own<RequestHook>&& hook)
      : Params::Builder(builder), hook(kj::mv(hook)) {}
111
  inline Request(decltype(nullptr)): Params::Builder(nullptr) {}
112

113
  RemotePromise<Results> send() KJ_WARN_UNUSED_RESULT;
114
  // Send the call and return a promise for the results.
115

116 117
private:
  kj::Own<RequestHook> hook;
118 119

  friend class Capability::Client;
120
  friend struct DynamicCapability;
121 122
  template <typename, typename>
  friend class CallContext;
123
  friend class RequestHook;
124 125
};

126 127
template <typename Results>
class Response: public Results::Reader {
128 129 130 131
  // A completed call.  This class extends a Reader for the call's answer structure.  The Response
  // is move-only -- once it goes out-of-scope, the underlying message will be freed.

public:
132
  inline Response(typename Results::Reader reader, kj::Own<ResponseHook>&& hook)
133
      : Results::Reader(reader), hook(kj::mv(hook)) {}
134 135

private:
136
  kj::Own<ResponseHook> hook;
137 138 139

  template <typename, typename>
  friend class Request;
140
  friend class ResponseHook;
141 142 143 144 145 146
};

class Capability::Client {
  // Base type for capability clients.

public:
147 148 149
  typedef Capability Reads;
  typedef Capability Calls;

150
  Client(decltype(nullptr));
151 152 153 154
  // If you need to declare a Client before you have anything to assign to it (perhaps because
  // the assignment is going to occur in an if/else scope), you can start by initializing it to
  // `nullptr`.  The resulting client is not meant to be called and throws exceptions from all
  // methods.
155

156
  template <typename T, typename = kj::EnableIf<kj::canConvert<T*, Capability::Server*>()>>
157
  Client(kj::Own<T>&& server);
158 159 160
  // Make a client capability that wraps the given server capability.  The server's methods will
  // only be executed in the given EventLoop, regardless of what thread calls the client's methods.

161
  template <typename T, typename = kj::EnableIf<kj::canConvert<T*, Client*>()>>
162
  Client(kj::Promise<T>&& promise);
163 164 165 166 167 168
  // Make a client from a promise for a future client.  The resulting client queues calls until the
  // promise resolves.

  Client(kj::Exception&& exception);
  // Make a broken client that throws the given exception from all calls.

169 170 171 172
  Client(Client& other);
  Client& operator=(Client& other);
  // Copies by reference counting.  Warning:  This refcounting is not thread-safe.  All copies of
  // the client must remain in one thread.
173 174 175

  Client(Client&&) = default;
  Client& operator=(Client&&) = default;
176
  // Move constructor avoids reference counting.
177

178
  explicit Client(kj::Own<ClientHook>&& hook);
179 180
  // For use by the RPC implementation:  Wrap a ClientHook.

181
  template <typename T>
182
  typename T::Client castAs();
183 184 185 186 187
  // Reinterpret the capability as implementing the given interface.  Note that no error will occur
  // here if the capability does not actually implement this interface, but later method calls will
  // fail.  It's up to the application to decide how indicate that additional interfaces are
  // supported.
  //
Kenton Varda's avatar
Kenton Varda committed
188
  // TODO(perf):  GCC 4.8 / Clang 3.3:  rvalue-qualified version for better performance.
189 190

  template <typename T>
191
  typename T::Client castAs(InterfaceSchema schema);
192 193
  // Dynamic version.  `T` must be `DynamicCapability`, and you must `#include <capnp/dynamic.h>`.

194
  kj::Promise<void> whenResolved();
195 196 197 198 199 200
  // If the capability is actually only a promise, the returned promise resolves once the
  // capability itself has resolved to its final destination (or propagates the exception if
  // the capability promise is rejected).  This is mainly useful for error-checking in the case
  // where no calls are being made.  There is no reason to wait for this before making calls; if
  // the capability does not resolve, the call results will propagate the error.

201 202 203 204 205 206
  Request<AnyPointer, AnyPointer> typelessRequest(
      uint64_t interfaceId, uint16_t methodId,
      kj::Maybe<MessageSize> sizeHint);
  // Make a request without knowing the types of the params or results. You specify the type ID
  // and method number manually.

207
  // TODO(someday):  method(s) for Join
208

209 210 211 212 213
protected:
  Client() = default;

  template <typename Params, typename Results>
  Request<Params, Results> newCall(uint64_t interfaceId, uint16_t methodId,
214
                                   kj::Maybe<MessageSize> sizeHint);
215

216
private:
217
  kj::Own<ClientHook> hook;
218

219
  static kj::Own<ClientHook> makeLocalClient(kj::Own<Capability::Server>&& server);
220

Kenton Varda's avatar
Kenton Varda committed
221 222
  template <typename, Kind>
  friend struct _::PointerHelpers;
223 224 225 226 227 228
  friend struct DynamicCapability;
  friend class Orphanage;
  friend struct DynamicStruct;
  friend struct DynamicList;
  template <typename, Kind>
  friend struct List;
229
  friend class _::CapabilityServerSetBase;
230
  friend class ClientHook;
231 232 233
};

// =======================================================================================
234
// Capability servers
235 236 237

class CallContextHook;

238
template <typename Params, typename Results>
239
class CallContext: public kj::DisallowConstCopy {
240
  // Wrapper around CallContextHook with a specific return type.
241 242 243
  //
  // Methods of this class may only be called from within the server's event loop, not from other
  // threads.
Kenton Varda's avatar
Kenton Varda committed
244 245
  //
  // The CallContext becomes invalid as soon as the call reports completion.
246 247

public:
248 249 250 251 252 253 254 255 256 257 258
  explicit CallContext(CallContextHook& hook);

  typename Params::Reader getParams();
  // Get the params payload.

  void releaseParams();
  // Release the params payload.  getParams() will throw an exception after this is called.
  // Releasing the params may allow the RPC system to free up buffer space to handle other
  // requests.  Long-running asynchronous methods should try to call this as early as is
  // convenient.

259 260
  typename Results::Builder getResults(kj::Maybe<MessageSize> sizeHint = nullptr);
  typename Results::Builder initResults(kj::Maybe<MessageSize> sizeHint = nullptr);
261 262
  void setResults(typename Results::Reader value);
  void adoptResults(Orphan<Results>&& value);
263
  Orphanage getResultsOrphanage(kj::Maybe<MessageSize> sizeHint = nullptr);
264 265
  // Manipulate the results payload.  The "Return" message (part of the RPC protocol) will
  // typically be allocated the first time one of these is called.  Some RPC systems may
266 267 268
  // allocate these messages in a limited space (such as a shared memory segment), therefore the
  // application should delay calling these as long as is convenient to do so (but don't delay
  // if doing so would require extra copies later).
Kenton Varda's avatar
Kenton Varda committed
269
  //
270 271 272 273 274
  // `sizeHint` indicates a guess at the message size.  This will usually be used to decide how
  // much space to allocate for the first message segment (don't worry: only space that is actually
  // used will be sent on the wire).  If omitted, the system decides.  The message root pointer
  // should not be included in the size.  So, if you are simply going to copy some existing message
  // directly into the results, just call `.totalSize()` and pass that in.
275

276 277 278 279 280 281 282 283 284 285 286 287 288
  template <typename SubParams>
  kj::Promise<void> tailCall(Request<SubParams, Results>&& tailRequest);
  // Resolve the call by making a tail call.  `tailRequest` is a request that has been filled in
  // but not yet sent.  The context will send the call, then fill in the results with the result
  // of the call.  If tailCall() is used, {get,init,set,adopt}Results (above) *must not* be called.
  //
  // The RPC implementation may be able to optimize a tail call to another machine such that the
  // results never actually pass through this machine.  Even if no such optimization is possible,
  // `tailCall()` may allow pipelined calls to be forwarded optimistically to the new call site.
  //
  // In general, this should be the last thing a method implementation calls, and the promise
  // returned from `tailCall()` should then be returned by the method implementation.

289
  void allowCancellation();
290 291 292 293 294 295 296 297 298
  // Indicate that it is OK for the RPC system to discard its Promise for this call's result if
  // the caller cancels the call, thereby transitively canceling any asynchronous operations the
  // call implementation was performing.  This is not done by default because it could represent a
  // security risk:  applications must be carefully written to ensure that they do not end up in
  // a bad state if an operation is canceled at an arbitrary point.  However, for long-running
  // method calls that hold significant resources, prompt cancellation is often useful.
  //
  // Keep in mind that asynchronous cancellation cannot occur while the method is synchronously
  // executing on a local thread.  The method must perform an asynchronous operation or call
David Renshaw's avatar
David Renshaw committed
299
  // `EventLoop::current().evalLater()` to yield control.
Kenton Varda's avatar
Kenton Varda committed
300
  //
301 302 303 304 305 306 307 308 309
  // Note:  You might think that we should offer `onCancel()` and/or `isCanceled()` methods that
  // provide notification when the caller cancels the request without forcefully killing off the
  // promise chain.  Unfortunately, this composes poorly with promise forking:  the canceled
  // path may be just one branch of a fork of the result promise.  The other branches still want
  // the call to continue.  Promise forking is used within the Cap'n Proto implementation -- in
  // particular each pipelined call forks the result promise.  So, if a caller made a pipelined
  // call and then dropped the original object, the call should not be canceled, but it would be
  // excessively complicated for the framework to avoid notififying of cancellation as long as
  // pipelined calls still exist.
310

311
private:
312 313 314
  CallContextHook* hook;

  friend class Capability::Server;
315
  friend struct DynamicCapability;
316 317
};

318 319 320 321
class Capability::Server {
  // Objects implementing a Cap'n Proto interface must subclass this.  Typically, such objects
  // will instead subclass a typed Server interface which will take care of implementing
  // dispatchCall().
322 323

public:
324 325
  typedef Capability Serves;

326
  virtual kj::Promise<void> dispatchCall(uint64_t interfaceId, uint16_t methodId,
327
                                         CallContext<AnyPointer, AnyPointer> context) = 0;
328 329 330 331
  // Call the given method.  `params` is the input struct, and should be released as soon as it
  // is no longer needed.  `context` may be used to allocate the output struct and deal with
  // cancellation.

332
  // TODO(someday):  Method which can optionally be overridden to implement Join when the object is
333
  //   a proxy.
334 335

protected:
336 337 338 339 340 341
  inline Capability::Client thisCap();
  // Get a capability pointing to this object, much like the `this` keyword.
  //
  // The effect of this method is undefined if:
  // - No capability client has been created pointing to this object. (This is always the case in
  //   the server's constructor.)
David Renshaw's avatar
David Renshaw committed
342
  // - The capability client pointing at this object has been destroyed. (This is always the case
343 344 345 346
  //   in the server's destructor.)
  // - Multiple capability clients have been created around the same server (possible if the server
  //   is refcounted, which is not recommended since the client itself provides refcounting).

347 348
  template <typename Params, typename Results>
  CallContext<Params, Results> internalGetTypedContext(
349
      CallContext<AnyPointer, AnyPointer> typeless);
350 351 352 353 354 355
  kj::Promise<void> internalUnimplemented(const char* actualInterfaceName,
                                          uint64_t requestedTypeId);
  kj::Promise<void> internalUnimplemented(const char* interfaceName,
                                          uint64_t typeId, uint16_t methodId);
  kj::Promise<void> internalUnimplemented(const char* interfaceName, const char* methodName,
                                          uint64_t typeId, uint16_t methodId);
356 357 358 359

private:
  ClientHook* thisHook = nullptr;
  friend class LocalClient;
360 361
};

362 363
// =======================================================================================

364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
class ReaderCapabilityTable: private _::CapTableReader {
  // Class which imbues Readers with the ability to read capabilities.
  //
  // In Cap'n Proto format, the encoding of a capability pointer is simply an integer index into
  // an external table. Since these pointers fundamentally point outside the message, a
  // MessageReader by default has no idea what they point at, and therefore reading capabilities
  // from such a reader will throw exceptions.
  //
  // In order to be able to read capabilities, you must first attach a capability table, using
  // this class. By "imbuing" a Reader, you get a new Reader which will interpret capability
  // pointers by treating them as indexes into the ReaderCapabilityTable.
  //
  // Note that when using Cap'n Proto's RPC system, this is handled automatically.

public:
  explicit ReaderCapabilityTable(kj::Array<kj::Maybe<kj::Own<ClientHook>>> table);
  KJ_DISALLOW_COPY(ReaderCapabilityTable);

  template <typename T>
  T imbue(T reader);
  // Return a reader equivalent to `reader` except that when reading capability-valued fields,
  // the capabilities are looked up in this table.

private:
  kj::Array<kj::Maybe<kj::Own<ClientHook>>> table;

  kj::Maybe<kj::Own<ClientHook>> extractCap(uint index) override;
};

class BuilderCapabilityTable: private _::CapTableBuilder {
  // Class which imbues Builders with the ability to read and write capabilities.
  //
  // This is much like ReaderCapabilityTable, except for builders. The table starts out empty,
  // but capabilities can be added to it over time.

public:
  BuilderCapabilityTable();
  KJ_DISALLOW_COPY(BuilderCapabilityTable);

  inline kj::ArrayPtr<kj::Maybe<kj::Own<ClientHook>>> getTable() { return table; }

  template <typename T>
  T imbue(T builder);
  // Return a builder equivalent to `builder` except that when reading capability-valued fields,
  // the capabilities are looked up in this table.

private:
  kj::Vector<kj::Maybe<kj::Own<ClientHook>>> table;

  kj::Maybe<kj::Own<ClientHook>> extractCap(uint index) override;
  uint injectCap(kj::Own<ClientHook>&& cap) override;
  void dropCap(uint index) override;
};

// =======================================================================================

420 421 422 423 424 425 426 427 428 429 430 431
namespace _ {  // private

class CapabilityServerSetBase {
public:
  Capability::Client addInternal(kj::Own<Capability::Server>&& server, void* ptr);
  kj::Promise<void*> getLocalServerInternal(Capability::Client& client);
};

}  // namespace _ (private)

template <typename T>
class CapabilityServerSet: private _::CapabilityServerSetBase {
432 433
  // Allows a server to recognize its own capabilities when passed back to it, and obtain the
  // underlying Server objects associated with them.
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
  //
  // All objects in the set must have the same interface type T. The objects may implement various
  // interfaces derived from T (and in fact T can be `capnp::Capability` to accept all objects),
  // but note that if you compile with RTTI disabled then you will not be able to down-cast through
  // virtual inheritance, and all inheritance between server interfaces is virtual. So, with RTTI
  // disabled, you will likely need to set T to be the most-derived Cap'n Proto interface type,
  // and you server class will need to be directly derived from that, so that you can use
  // static_cast (or kj::downcast) to cast to it after calling getLocalServer(). (If you compile
  // with RTTI, then you can freely dynamic_cast and ignore this issue!)

public:
  CapabilityServerSet() = default;
  KJ_DISALLOW_COPY(CapabilityServerSet);

  typename T::Client add(kj::Own<typename T::Server>&& server);
  // Create a new capability Client for the given Server and also add this server to the set.

  kj::Promise<kj::Maybe<typename T::Server&>> getLocalServer(typename T::Client& client);
  // Given a Client pointing to a server previously passed to add(), return the corresponding
  // Server. This returns a promise because if the input client is itself a promise, this must
  // wait for it to resolve. Keep in mind that the server will be deleted when all clients are
  // gone, so the caller should make sure to keep the client alive (hence why this method only
  // accepts an lvalue input).
};

459
// =======================================================================================
460 461
// Hook interfaces which must be implemented by the RPC system.  Applications never call these
// directly; the RPC system implements them and the types defined earlier in this file wrap them.
462

463 464
class RequestHook {
  // Hook interface implemented by RPC system representing a request being built.
465

466
public:
467
  virtual RemotePromise<AnyPointer> send() = 0;
468
  // Send the call and return a promise for the result.
469

470
  virtual const void* getBrand() = 0;
471 472 473
  // Returns a void* that identifies who made this request.  This can be used by an RPC adapter to
  // discover when tail call is going to be sent over its own connection and therefore can be
  // optimized into a remote tail call.
474 475 476 477 478

  template <typename T, typename U>
  inline static kj::Own<RequestHook> from(Request<T, U>&& request) {
    return kj::mv(request.hook);
  }
479 480
};

481 482 483 484
class ResponseHook {
  // Hook interface implemented by RPC system representing a response.
  //
  // At present this class has no methods.  It exists only for garbage collection -- when the
485
  // ResponseHook is destroyed, the results can be freed.
486 487

public:
Kenton Varda's avatar
Kenton Varda committed
488 489
  virtual ~ResponseHook() noexcept(false);
  // Just here to make sure the type is dynamic.
490 491 492 493 494

  template <typename T>
  inline static kj::Own<ResponseHook> from(Response<T>&& response) {
    return kj::mv(response.hook);
  }
495 496
};

497
// class PipelineHook is declared in any.h because it is needed there.
498

499
class ClientHook {
500
public:
501 502
  ClientHook();

503
  virtual Request<AnyPointer, AnyPointer> newCall(
504
      uint64_t interfaceId, uint16_t methodId, kj::Maybe<MessageSize> sizeHint) = 0;
Kenton Varda's avatar
Kenton Varda committed
505 506
  // Start a new call, allowing the client to allocate request/response objects as it sees fit.
  // This version is used when calls are made from application code in the local process.
507

Kenton Varda's avatar
Kenton Varda committed
508 509
  struct VoidPromiseAndPipeline {
    kj::Promise<void> promise;
510
    kj::Own<PipelineHook> pipeline;
Kenton Varda's avatar
Kenton Varda committed
511 512 513
  };

  virtual VoidPromiseAndPipeline call(uint64_t interfaceId, uint16_t methodId,
514
                                      kj::Own<CallContextHook>&& context) = 0;
Kenton Varda's avatar
Kenton Varda committed
515
  // Call the object, but the caller controls allocation of the request/response objects.  If the
516
  // callee insists on allocating these objects itself, it must make a copy.  This version is used
517 518 519
  // when calls come in over the network via an RPC system.  Note that even if the returned
  // `Promise<void>` is discarded, the call may continue executing if any pipelined calls are
  // waiting for it.
Kenton Varda's avatar
Kenton Varda committed
520
  //
521 522
  // Since the caller of this method chooses the CallContext implementation, it is the caller's
  // responsibility to ensure that the returned promise is not canceled unless allowed via
523
  // the context's `allowCancellation()`.
524
  //
525 526 527
  // The call must not begin synchronously; the callee must arrange for the call to begin in a
  // later turn of the event loop. Otherwise, application code may call back and affect the
  // callee's state in an unexpected way.
Kenton Varda's avatar
Kenton Varda committed
528

529
  virtual kj::Maybe<ClientHook&> getResolved() = 0;
530 531 532 533 534
  // If this ClientHook is a promise that has already resolved, returns the inner, resolved version
  // of the capability.  The caller may permanently replace this client with the resolved one if
  // desired.  Returns null if the client isn't a promise or hasn't resolved yet -- use
  // `whenMoreResolved()` to distinguish between them.

535
  virtual kj::Maybe<kj::Promise<kj::Own<ClientHook>>> whenMoreResolved() = 0;
Kenton Varda's avatar
Kenton Varda committed
536 537
  // If this client is a settled reference (not a promise), return nullptr.  Otherwise, return a
  // promise that eventually resolves to a new client that is closer to being the final, settled
538 539
  // client (i.e. the value eventually returned by `getResolved()`).  Calling this repeatedly
  // should eventually produce a settled client.
Kenton Varda's avatar
Kenton Varda committed
540

541
  kj::Promise<void> whenResolved();
542 543
  // Repeatedly calls whenMoreResolved() until it returns nullptr.

544
  virtual kj::Own<ClientHook> addRef() = 0;
545
  // Return a new reference to the same capability.
546

547
  virtual const void* getBrand() = 0;
548 549 550
  // Returns a void* that identifies who made this client.  This can be used by an RPC adapter to
  // discover when a capability it needs to marshal is one that it created in the first place, and
  // therefore it can transfer the capability without proxying.
551

552 553 554 555 556 557 558
  static const uint NULL_CAPABILITY_BRAND;
  // Value is irrelevant; used for pointer.

  inline bool isNull() { return getBrand() == &NULL_CAPABILITY_BRAND; }
  // Returns true if the capability was created as a result of assigning a Client to null or by
  // reading a null pointer out of a Cap'n Proto message.

559 560 561 562
  virtual void* getLocalServer(_::CapabilityServerSetBase& capServerSet);
  // If this is a local capability created through `capServerSet`, return the underlying Server.
  // Otherwise, return nullptr. Default implementation (which everyone except LocalClient should
  // use) always returns nullptr.
563 564

  static kj::Own<ClientHook> from(Capability::Client client) { return kj::mv(client.hook); }
565 566
};

567 568 569
class CallContextHook {
  // Hook interface implemented by RPC system to manage a call on the server side.  See
  // CallContext<T>.
570 571

public:
572
  virtual AnyPointer::Reader getParams() = 0;
573
  virtual void releaseParams() = 0;
574
  virtual AnyPointer::Builder getResults(kj::Maybe<MessageSize> sizeHint) = 0;
575
  virtual kj::Promise<void> tailCall(kj::Own<RequestHook>&& request) = 0;
576
  virtual void allowCancellation() = 0;
577

578
  virtual kj::Promise<AnyPointer::Pipeline> onTailCall() = 0;
579 580 581
  // If `tailCall()` is called, resolves to the PipelineHook from the tail call.  An
  // implementation of `ClientHook::call()` is allowed to call this at most once.

582 583 584 585 586
  virtual ClientHook::VoidPromiseAndPipeline directTailCall(kj::Own<RequestHook>&& request) = 0;
  // Call this when you would otherwise call onTailCall() immediately followed by tailCall().
  // Implementations of tailCall() should typically call directTailCall() and then fulfill the
  // promise fulfiller for onTailCall() with the returned pipeline.

587
  virtual kj::Own<CallContextHook> addRef() = 0;
588
};
589

590
kj::Own<ClientHook> newLocalPromiseClient(kj::Promise<kj::Own<ClientHook>>&& promise);
Kenton Varda's avatar
Kenton Varda committed
591 592 593 594
// Returns a ClientHook that queues up calls until `promise` resolves, then forwards them to
// the new client.  This hook's `getResolved()` and `whenMoreResolved()` methods will reflect the
// redirection to the eventual replacement client.

595 596 597 598
kj::Own<PipelineHook> newLocalPromisePipeline(kj::Promise<kj::Own<PipelineHook>>&& promise);
// Returns a PipelineHook that queues up calls until `promise` resolves, then forwards them to
// the new pipeline.

599 600 601 602 603 604 605
kj::Own<ClientHook> newBrokenCap(kj::StringPtr reason);
kj::Own<ClientHook> newBrokenCap(kj::Exception&& reason);
// Helper function that creates a capability which simply throws exceptions when called.

kj::Own<PipelineHook> newBrokenPipeline(kj::Exception&& reason);
// Helper function that creates a pipeline which simply throws exceptions when called.

606 607 608 609
Request<AnyPointer, AnyPointer> newBrokenRequest(
    kj::Exception&& reason, kj::Maybe<MessageSize> sizeHint);
// Helper function that creates a Request object that simply throws exceptions when sent.

610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
// =======================================================================================
// Extend PointerHelpers for interfaces

namespace _ {  // private

template <typename T>
struct PointerHelpers<T, Kind::INTERFACE> {
  static inline typename T::Client get(PointerReader reader) {
    return typename T::Client(reader.getCapability());
  }
  static inline typename T::Client get(PointerBuilder builder) {
    return typename T::Client(builder.getCapability());
  }
  static inline void set(PointerBuilder builder, typename T::Client&& value) {
    builder.setCapability(kj::mv(value.Capability::Client::hook));
  }
626
  static inline void set(PointerBuilder builder, typename T::Client& value) {
627 628
    builder.setCapability(value.Capability::Client::hook->addRef());
  }
629 630 631 632 633 634 635 636 637 638
  static inline void adopt(PointerBuilder builder, Orphan<T>&& value) {
    builder.adopt(kj::mv(value.builder));
  }
  static inline Orphan<T> disown(PointerBuilder builder) {
    return Orphan<T>(builder.disown());
  }
};

}  // namespace _ (private)

639 640 641 642 643 644 645 646 647 648 649 650 651 652
// =======================================================================================
// Extend List for interfaces

template <typename T>
struct List<T, Kind::INTERFACE> {
  List() = delete;

  class Reader {
  public:
    typedef List<T> Reads;

    Reader() = default;
    inline explicit Reader(_::ListReader reader): reader(reader) {}

653
    inline uint size() const { return unbound(reader.size() / ELEMENTS); }
654 655
    inline typename T::Client operator[](uint index) const {
      KJ_IREQUIRE(index < size());
656
      return typename T::Client(reader.getPointerElement(
657
          bounded(index) * ELEMENTS).getCapability());
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
    }

    typedef _::IndexingIterator<const Reader, typename T::Client> Iterator;
    inline Iterator begin() const { return Iterator(this, 0); }
    inline Iterator end() const { return Iterator(this, size()); }

  private:
    _::ListReader reader;
    template <typename U, Kind K>
    friend struct _::PointerHelpers;
    template <typename U, Kind K>
    friend struct List;
    friend class Orphanage;
    template <typename U, Kind K>
    friend struct ToDynamic_;
  };

  class Builder {
  public:
    typedef List<T> Builds;

    Builder() = delete;
    inline Builder(decltype(nullptr)) {}
    inline explicit Builder(_::ListBuilder builder): builder(builder) {}

683 684
    inline operator Reader() const { return Reader(builder.asReader()); }
    inline Reader asReader() const { return Reader(builder.asReader()); }
685

686
    inline uint size() const { return unbound(builder.size() / ELEMENTS); }
687 688
    inline typename T::Client operator[](uint index) {
      KJ_IREQUIRE(index < size());
689
      return typename T::Client(builder.getPointerElement(
690
          bounded(index) * ELEMENTS).getCapability());
691 692 693
    }
    inline void set(uint index, typename T::Client value) {
      KJ_IREQUIRE(index < size());
694
      builder.getPointerElement(bounded(index) * ELEMENTS).setCapability(kj::mv(value.hook));
695 696 697
    }
    inline void adopt(uint index, Orphan<T>&& value) {
      KJ_IREQUIRE(index < size());
698
      builder.getPointerElement(bounded(index) * ELEMENTS).adopt(kj::mv(value));
699 700 701
    }
    inline Orphan<T> disown(uint index) {
      KJ_IREQUIRE(index < size());
702
      return Orphan<T>(builder.getPointerElement(bounded(index) * ELEMENTS).disown());
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
    }

    typedef _::IndexingIterator<Builder, typename T::Client> Iterator;
    inline Iterator begin() { return Iterator(this, 0); }
    inline Iterator end() { return Iterator(this, size()); }

  private:
    _::ListBuilder builder;
    friend class Orphanage;
    template <typename U, Kind K>
    friend struct ToDynamic_;
  };

private:
  inline static _::ListBuilder initPointer(_::PointerBuilder builder, uint size) {
718
    return builder.initList(ElementSize::POINTER, bounded(size) * ELEMENTS);
719 720
  }
  inline static _::ListBuilder getFromPointer(_::PointerBuilder builder, const word* defaultValue) {
721
    return builder.getList(ElementSize::POINTER, defaultValue);
722 723 724
  }
  inline static _::ListReader getFromPointer(
      const _::PointerReader& reader, const word* defaultValue) {
725
    return reader.getList(ElementSize::POINTER, defaultValue);
726 727 728 729 730 731 732 733
  }

  template <typename U, Kind k>
  friend struct List;
  template <typename U, Kind K>
  friend struct _::PointerHelpers;
};

734 735 736
// =======================================================================================
// Inline implementation details

737 738
template <typename Params, typename Results>
RemotePromise<Results> Request<Params, Results>::send() {
739
  auto typelessPromise = hook->send();
740
  hook = nullptr;  // prevent reuse
741 742 743 744

  // Convert the Promise to return the correct response type.
  // Explicitly upcast to kj::Promise to make clear that calling .then() doesn't invalidate the
  // Pipeline part of the RemotePromise.
745 746
  auto typedPromise = kj::implicitCast<kj::Promise<Response<AnyPointer>>&>(typelessPromise)
      .then([](Response<AnyPointer>&& response) -> Response<Results> {
747
        return Response<Results>(response.getAs<Results>(), kj::mv(response.hook));
748 749 750
      });

  // Wrap the typeless pipeline in a typed wrapper.
751
  typename Results::Pipeline typedPipeline(
752
      kj::mv(kj::implicitCast<AnyPointer::Pipeline&>(typelessPromise)));
753

754
  return RemotePromise<Results>(kj::mv(typedPromise), kj::mv(typedPipeline));
755 756
}

757
inline Capability::Client::Client(kj::Own<ClientHook>&& hook): hook(kj::mv(hook)) {}
758
template <typename T, typename>
759 760
inline Capability::Client::Client(kj::Own<T>&& server)
    : hook(makeLocalClient(kj::mv(server))) {}
761
template <typename T, typename>
762 763 764 765
inline Capability::Client::Client(kj::Promise<T>&& promise)
    : hook(newLocalPromiseClient(promise.then([](T&& t) { return kj::mv(t.hook); }))) {}
inline Capability::Client::Client(Client& other): hook(other.hook->addRef()) {}
inline Capability::Client& Capability::Client::operator=(Client& other) {
766 767 768
  hook = other.hook->addRef();
  return *this;
}
769
template <typename T>
770
inline typename T::Client Capability::Client::castAs() {
771 772
  return typename T::Client(hook->addRef());
}
773
inline kj::Promise<void> Capability::Client::whenResolved() {
774 775
  return hook->whenResolved();
}
776 777 778 779 780
inline Request<AnyPointer, AnyPointer> Capability::Client::typelessRequest(
    uint64_t interfaceId, uint16_t methodId,
    kj::Maybe<MessageSize> sizeHint) {
  return newCall<AnyPointer, AnyPointer>(interfaceId, methodId, sizeHint);
}
781 782
template <typename Params, typename Results>
inline Request<Params, Results> Capability::Client::newCall(
783 784
    uint64_t interfaceId, uint16_t methodId, kj::Maybe<MessageSize> sizeHint) {
  auto typeless = hook->newCall(interfaceId, methodId, sizeHint);
785 786
  return Request<Params, Results>(typeless.template getAs<Params>(), kj::mv(typeless.hook));
}
787

788 789 790 791 792 793 794 795 796 797 798
template <typename Params, typename Results>
inline CallContext<Params, Results>::CallContext(CallContextHook& hook): hook(&hook) {}
template <typename Params, typename Results>
inline typename Params::Reader CallContext<Params, Results>::getParams() {
  return hook->getParams().template getAs<Params>();
}
template <typename Params, typename Results>
inline void CallContext<Params, Results>::releaseParams() {
  hook->releaseParams();
}
template <typename Params, typename Results>
Kenton Varda's avatar
Kenton Varda committed
799
inline typename Results::Builder CallContext<Params, Results>::getResults(
800
    kj::Maybe<MessageSize> sizeHint) {
801
  // `template` keyword needed due to: http://llvm.org/bugs/show_bug.cgi?id=17401
802
  return hook->getResults(sizeHint).template getAs<Results>();
803
}
804
template <typename Params, typename Results>
Kenton Varda's avatar
Kenton Varda committed
805
inline typename Results::Builder CallContext<Params, Results>::initResults(
806
    kj::Maybe<MessageSize> sizeHint) {
807
  // `template` keyword needed due to: http://llvm.org/bugs/show_bug.cgi?id=17401
808
  return hook->getResults(sizeHint).template initAs<Results>();
809
}
810 811
template <typename Params, typename Results>
inline void CallContext<Params, Results>::setResults(typename Results::Reader value) {
812
  hook->getResults(value.totalSize()).template setAs<Results>(value);
813
}
814 815
template <typename Params, typename Results>
inline void CallContext<Params, Results>::adoptResults(Orphan<Results>&& value) {
816
  hook->getResults(nullptr).adopt(kj::mv(value));
817
}
818
template <typename Params, typename Results>
819 820 821
inline Orphanage CallContext<Params, Results>::getResultsOrphanage(
    kj::Maybe<MessageSize> sizeHint) {
  return Orphanage::getForMessageContaining(hook->getResults(sizeHint));
822
}
823
template <typename Params, typename Results>
824 825 826 827 828 829
template <typename SubParams>
inline kj::Promise<void> CallContext<Params, Results>::tailCall(
    Request<SubParams, Results>&& tailRequest) {
  return hook->tailCall(kj::mv(tailRequest.hook));
}
template <typename Params, typename Results>
830 831
inline void CallContext<Params, Results>::allowCancellation() {
  hook->allowCancellation();
832
}
833

834 835
template <typename Params, typename Results>
CallContext<Params, Results> Capability::Server::internalGetTypedContext(
836
    CallContext<AnyPointer, AnyPointer> typeless) {
837 838 839
  return CallContext<Params, Results>(*typeless.hook);
}

840 841
Capability::Client Capability::Server::thisCap() {
  return Client(thisHook->addRef());
842 843
}

844 845 846 847 848 849 850 851 852 853
template <typename T>
T ReaderCapabilityTable::imbue(T reader) {
  return T(_::PointerHelpers<FromReader<T>>::getInternalReader(reader).imbue(this));
}

template <typename T>
T BuilderCapabilityTable::imbue(T builder) {
  return T(_::PointerHelpers<FromBuilder<T>>::getInternalBuilder(kj::mv(builder)).imbue(this));
}

854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
template <typename T>
typename T::Client CapabilityServerSet<T>::add(kj::Own<typename T::Server>&& server) {
  void* ptr = reinterpret_cast<void*>(server.get());
  // Clang insists that `castAs` is a template-dependent member and therefore we need the
  // `template` keyword here, but AFAICT this is wrong: addImpl() is not a template.
  return addInternal(kj::mv(server), ptr).template castAs<T>();
}

template <typename T>
kj::Promise<kj::Maybe<typename T::Server&>> CapabilityServerSet<T>::getLocalServer(
    typename T::Client& client) {
  return getLocalServerInternal(client)
      .then([](void* server) -> kj::Maybe<typename T::Server&> {
    if (server == nullptr) {
      return nullptr;
    } else {
      return *reinterpret_cast<typename T::Server*>(server);
    }
  });
}

875 876 877 878 879 880 881
template <typename T>
struct Orphanage::GetInnerReader<T, Kind::INTERFACE> {
  static inline kj::Own<ClientHook> apply(typename T::Client t) {
    return ClientHook::from(kj::mv(t));
  }
};

882 883 884
}  // namespace capnp

#endif  // CAPNP_CAPABILITY_H_