Fix RequestContext held too long issue in EventBase
[folly.git] / folly / io / async / test / EventBaseBenchmark.cpp
1 /*
2  * Copyright 2017 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
17 #include <folly/Benchmark.h>
18 #include <folly/io/async/EventBase.h>
19 #include <folly/portability/GFlags.h>
20
21 using namespace folly;
22
23 class CountedLoopCallback : public EventBase::LoopCallback {
24  public:
25   CountedLoopCallback(EventBase* eventBase, unsigned int count)
26     : eventBase_(eventBase)
27     , count_(count) {}
28
29   void runLoopCallback() noexcept override {
30     --count_;
31     if (count_ > 0) {
32       eventBase_->runInLoop(this);
33     }
34   }
35
36  private:
37   EventBase* eventBase_;
38   unsigned int count_;
39 };
40
41 BENCHMARK(timeMeasurementsOn, n) {
42   EventBase eventBase;
43
44   while (n--) {
45     CountedLoopCallback c(&eventBase, 10);
46     eventBase.runInLoop(&c);
47     eventBase.loop();
48   }
49 }
50
51 BENCHMARK_RELATIVE(timeMeasurementsOff, n) {
52   EventBase eventBase(/* enableTimeMeasurement */ false);
53
54   while (n--) {
55     CountedLoopCallback c(&eventBase, 10);
56     eventBase.runInLoop(&c);
57     eventBase.loop();
58   }
59 }
60
61 /**
62  * --bm_min_iters=1000000
63  *
64  * ============================================================================
65  * folly/io/async/test/EventBaseBenchmark.cpp      relative  time/iter  iters/s
66  * ============================================================================
67  * timeMeasurementsOn                                           2.02us  494.57K
68  * timeMeasurementsOff                              231.19%   874.58ns    1.14M
69  * ============================================================================
70  */
71
72 int main(int argc, char** argv) {
73   gflags::ParseCommandLineFlags(&argc, &argv, true);
74   runBenchmarks();
75 }