1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_X_FUTURE_H_
#define UI_GFX_X_FUTURE_H_
#include "base/component_export.h"
#include "ui/gfx/x/xproto_types.h"
namespace x11 {
class Connection;
class Event;
class COMPONENT_EXPORT(X11) FutureImpl {
public:
FutureImpl(Connection* connection,
SequenceType sequence,
bool generates_reply,
const char* request_name_for_tracing);
void Wait();
void DispatchNow();
bool AfterEvent(const Event& event) const;
void Sync(RawReply* raw_reply, std::unique_ptr<Error>* error);
void OnResponse(ResponseCallback callback);
// Update an existing Request with a new handler. |sequence| must
// correspond to a request in the queue that has not already been processed
// out-of-order.
void UpdateRequestHandler(ResponseCallback callback);
// Call the response handler for request |sequence| now (out-of-order). The
// response must already have been obtained from a call to
// WaitForResponse().
void ProcessResponse();
// Clear the response handler for request |sequence| and take the response.
// The response must already have been obtained using WaitForResponse().
void TakeResponse(RawReply* reply, std::unique_ptr<Error>* error);
SequenceType sequence() const { return sequence_; }
bool generates_reply() const { return generates_reply_; }
const char* request_name_for_tracing() const {
return request_name_for_tracing_;
}
private:
raw_ptr<Connection, DanglingUntriaged> connection_ = nullptr;
SequenceType sequence_ = 0;
bool generates_reply_ = false;
const char* request_name_for_tracing_ = nullptr;
};
class COMPONENT_EXPORT(X11) FutureBase {
public:
FutureBase();
explicit FutureBase(std::unique_ptr<FutureImpl> impl);
FutureBase(FutureBase&&);
FutureBase& operator=(FutureBase&&);
~FutureBase();
// Block until this request is handled by the server.
void Wait();
// Block until this request is handled by the server. Unlike Sync(), this
// method doesn't return the response. Rather, it calls the response
// handler installed for this request out-of-order.
void DispatchNow();
// Returns true iff the response for this request was received after `event`.
bool AfterEvent(const Event& event) const;
protected:
FutureImpl* impl() { return impl_.get(); }
private:
std::unique_ptr<FutureImpl> impl_;
};
// An Future wraps an asynchronous response from the X11 server. The
// response may be waited-for with Sync(), or asynchronously handled by
// installing a response handler using OnResponse().
template <typename Reply>
class Future : public FutureBase {
public:
using Callback = base::OnceCallback<void(Response<Reply> response)>;
Future() = default;
explicit Future(std::unique_ptr<FutureImpl> impl)
: FutureBase(std::move(impl)) {
static_assert(sizeof(Future<Reply>) == sizeof(FutureBase),
"Future must not have any members so that it can be sliced "
"to FutureBase");
}
// Blocks until we receive the response from the server. Returns the response.
Response<Reply> Sync() {
if (!impl()) {
return {nullptr, nullptr};
}
RawReply raw_reply;
std::unique_ptr<Error> error;
impl()->Sync(&raw_reply, &error);
std::unique_ptr<Reply> reply;
if (raw_reply) {
auto buf = ReadBuffer(raw_reply);
reply = detail::ReadReply<Reply>(&buf);
}
return {std::move(reply), std::move(error)};
}
// Installs |callback| to be run when the response is received.
void OnResponse(Callback callback) {
if (!impl()) {
std::move(callback).Run({nullptr, nullptr});
return;
}
// This intermediate callback handles the conversion from |raw_reply| to a
// real Reply object before feeding the result to |callback|. This means
// |callback| must be bound as the first argument of the intermediate
// function.
auto wrapper = [](Callback callback, RawReply raw_reply,
std::unique_ptr<Error> error) {
std::unique_ptr<Reply> reply;
if (raw_reply) {
ReadBuffer buf(raw_reply);
reply = detail::ReadReply<Reply>(&buf);
}
std::move(callback).Run({std::move(reply), std::move(error)});
};
impl()->OnResponse(base::BindOnce(wrapper, std::move(callback)));
}
void IgnoreError() {
OnResponse(base::BindOnce([](Response<Reply>) {}));
}
};
// Sync() specialization for requests that don't generate replies. The returned
// response will only contain an error if there was one.
template <>
inline Response<void> Future<void>::Sync() {
if (!impl()) {
return Response<void>{nullptr};
}
RawReply raw_reply;
std::unique_ptr<Error> error;
impl()->Sync(&raw_reply, &error);
CHECK(!raw_reply);
return Response<void>(std::move(error));
}
// OnResponse() specialization for requests that don't generate replies. The
// response argument to |callback| will only contain an error if there was one.
template <>
inline void Future<void>::OnResponse(Callback callback) {
if (!impl()) {
std::move(callback).Run(Response<void>(nullptr));
return;
}
// See Future<Reply>::OnResponse() for an explanation of why
// this wrapper is necessary.
auto wrapper = [](Callback callback, RawReply reply,
std::unique_ptr<Error> error) {
CHECK(!reply);
std::move(callback).Run(Response<void>{std::move(error)});
};
impl()->OnResponse(base::BindOnce(wrapper, std::move(callback)));
}
} // namespace x11
#endif // UI_GFX_X_FUTURE_H_
|