copy wangle back into folly
[folly.git] / folly / wangle / channel / EventBaseHandler.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17
18 namespace folly { namespace wangle {
19
20 class EventBaseHandler : public OutboundBytesToBytesHandler {
21  public:
22   folly::Future<void> write(
23       Context* ctx,
24       std::unique_ptr<folly::IOBuf> buf) override {
25     folly::Future<void> retval;
26     DCHECK(ctx->getTransport());
27     DCHECK(ctx->getTransport()->getEventBase());
28     ctx->getTransport()->getEventBase()->runImmediatelyOrRunInEventBaseThreadAndWait([&](){
29         retval = ctx->fireWrite(std::move(buf));
30     });
31     return retval;
32   }
33
34   Future<void> close(Context* ctx) override {
35     DCHECK(ctx->getTransport());
36     DCHECK(ctx->getTransport()->getEventBase());
37     Future<void> retval;
38     ctx->getTransport()->getEventBase()->runImmediatelyOrRunInEventBaseThreadAndWait([&](){
39         retval = ctx->fireClose();
40     });
41     return retval;
42   }
43 };
44
45 }} // namespace