Add missing override and remove redundant virtual in folly
authorIgor Sugak <sugak@fb.com>
Mon, 22 Jun 2015 23:40:19 +0000 (16:40 -0700)
committerSara Golemon <sgolemon@fb.com>
Mon, 22 Jun 2015 23:45:35 +0000 (16:45 -0700)
Summary: Running clang-tidy to fix this problem, using script D2171334.

I noticed that even without this change clang dev build succeeds for folly and opened a separate task to investigate why.

Reviewed By: @markisaa

Differential Revision: D2179299

28 files changed:
folly/experimental/symbolizer/test/ElfTests.cpp
folly/experimental/symbolizer/test/SymbolizerTest.cpp
folly/futures/detail/ThreadWheelTimekeeper.h
folly/futures/test/ContextTest.cpp
folly/futures/test/ViaTest.cpp
folly/io/async/AsyncSSLSocket.cpp
folly/io/async/AsyncServerSocket.cpp
folly/io/async/AsyncSocket.cpp
folly/io/async/EventBase.cpp
folly/io/async/test/AsyncSocketTest2.cpp
folly/io/async/test/AsyncUDPSocketTest.cpp
folly/io/async/test/EventBaseBenchmark.cpp
folly/io/async/test/EventBaseTest.cpp
folly/io/test/CompressionTest.cpp
folly/io/test/IOBufTest.cpp
folly/test/ExceptionWrapperTest.cpp
folly/test/PaddedTest.cpp
folly/test/PortabilityTest.cpp
folly/test/function_benchmark/test_functions.cpp
folly/wangle/acceptor/Acceptor.cpp
folly/wangle/bootstrap/BootstrapTest.cpp
folly/wangle/channel/test/FileRegionTest.cpp
folly/wangle/channel/test/PipelineTest.cpp
folly/wangle/codec/CodecTest.cpp
folly/wangle/concurrent/IOThreadPoolExecutor.cpp
folly/wangle/concurrent/test/ThreadPoolExecutorTest.cpp
folly/wangle/service/ServiceTest.cpp
folly/wangle/ssl/test/SSLCacheTest.cpp

index b5330b7b3ba62def7285104552103ccbbc45652f..5496e92ffa9406fd332d209dd7cc84270ca1fc01 100644 (file)
@@ -32,8 +32,7 @@ class ElfTest : public ::testing::Test {
 
   ElfTest() : elfFile_(binaryPath.c_str()) {
   }
-  virtual ~ElfTest() {
-  }
+  ~ElfTest() override {}
 
  protected:
   ElfFile elfFile_;
index 0cbce4ebd8c10e56a1ccba4d08c10d7b254cd134..088ae1e7a332426d83bf64f0d042643f998e0f67 100644 (file)
@@ -64,7 +64,7 @@ void bar() {
 
 class ElfCacheTest : public testing::Test {
  protected:
-  void SetUp();
+  void SetUp() override;
 };
 
 // Capture "golden" stack trace with default-configured Symbolizer
index 42f8900102275ec0d45d2bb7a81461098e55661c..ddbb442d7da77f49b6499d2e9a04ed5378758706 100644 (file)
@@ -31,7 +31,7 @@ class ThreadWheelTimekeeper : public Timekeeper {
  public:
   /// But it doesn't *have* to be a singleton.
   ThreadWheelTimekeeper();
-  ~ThreadWheelTimekeeper();
+  ~ThreadWheelTimekeeper() override;
 
   /// Implement the Timekeeper interface
   /// This future *does* complete on the timer thread. You should almost
index dd29b155b96e83998c16bae28df4dffabe9ad007..487753aa75f7a5bd55b4aae179bc3616ab04eebc 100644 (file)
@@ -23,7 +23,7 @@ using namespace folly;
 class TestData : public RequestData {
  public:
   explicit TestData(int data) : data_(data) {}
-  virtual ~TestData() {}
+  ~TestData() override {}
   int data_;
 };
 
index 6ed8e29c44b8387e8461766018af67aa74a02bd3..053499c3a3bde1a51ea24d5538a43caec7618900 100644 (file)
@@ -56,7 +56,7 @@ struct ViaFixture : public testing::Test {
       });
   }
 
-  ~ViaFixture() {
+  ~ViaFixture() override {
     done = true;
     eastExecutor->add([=]() { });
     t.join();
@@ -316,7 +316,7 @@ class ThreadExecutor : public Executor {
     worker = std::thread(std::bind(&ThreadExecutor::work, this));
   }
 
-  ~ThreadExecutor() {
+  ~ThreadExecutor() override {
     done = true;
     funcs.write([]{});
     worker.join();
index f4a443214cff1cc4965be1509324603aaabeda5e..7be1983eb5f26b3440e07e281f3fdb038560bfe2 100644 (file)
@@ -84,8 +84,7 @@ class AsyncSSLSocketConnector: public AsyncSocket::ConnectCallback,
   int64_t startTime_;
 
  protected:
-  virtual ~AsyncSSLSocketConnector() {
-  }
+  ~AsyncSSLSocketConnector() override {}
 
  public:
   AsyncSSLSocketConnector(AsyncSSLSocket *sslSocket,
@@ -98,7 +97,7 @@ class AsyncSSLSocketConnector: public AsyncSocket::ConnectCallback,
                    std::chrono::steady_clock::now().time_since_epoch()).count()) {
   }
 
-  virtual void connectSuccess() noexcept {
+  void connectSuccess() noexcept override {
     VLOG(7) << "client socket connected";
 
     int64_t timeoutLeft = 0;
@@ -118,13 +117,13 @@ class AsyncSSLSocketConnector: public AsyncSocket::ConnectCallback,
     sslSocket_->sslConn(this, timeoutLeft);
   }
 
-  virtual void connectErr(const AsyncSocketException& ex) noexcept {
+  void connectErr(const AsyncSocketException& ex) noexcept override {
     LOG(ERROR) << "TCP connect failed: " <<  ex.what();
     fail(ex);
     delete this;
   }
 
-  virtual void handshakeSuc(AsyncSSLSocket *sock) noexcept {
+  void handshakeSuc(AsyncSSLSocket* sock) noexcept override {
     VLOG(7) << "client handshake success";
     if (callback_) {
       callback_->connectSuccess();
@@ -132,8 +131,8 @@ class AsyncSSLSocketConnector: public AsyncSocket::ConnectCallback,
     delete this;
   }
 
-  virtual void handshakeErr(AsyncSSLSocket *socket,
-                              const AsyncSocketException& ex) noexcept {
+  void handshakeErr(AsyncSSLSocket* socket,
+                    const AsyncSocketException& ex) noexcept override {
     LOG(ERROR) << "client handshakeErr: " << ex.what();
     fail(ex);
     delete this;
index 34fa5c6fc8796c8e2c6f61a4514bf00cfb98acdd..b6a28cd0e9980cd8ecbeb1b78e4bc27ce98381af 100644 (file)
@@ -121,9 +121,7 @@ class AsyncServerSocket::BackoffTimeout : public AsyncTimeout {
   BackoffTimeout(AsyncServerSocket* socket)
       : AsyncTimeout(socket->getEventBase()), socket_(socket) {}
 
-  virtual void timeoutExpired() noexcept {
-    socket_->backoffTimeoutExpired();
-  }
+  void timeoutExpired() noexcept override { socket_->backoffTimeoutExpired(); }
 
  private:
   AsyncServerSocket* socket_;
index 205261621e0bdc6569f58b94fb765a263a97c545..4ab1cdea0f74e9de696b172ca7fd82cf0fef2681 100644 (file)
@@ -148,7 +148,7 @@ class AsyncSocket::BytesWriteRequest : public AsyncSocket::WriteRequest {
   }
 
   // private destructor, to ensure callers use destroy()
-  virtual ~BytesWriteRequest() = default;
+  ~BytesWriteRequest() override = default;
 
   const struct iovec* getOps() const {
     assert(opCount_ > opIndex_);
index d901650650fd59e6f70dd17dbd03f7de9e8fa844..b8a1c25675b6c9c408f7fc1260d3bbf0621916be 100644 (file)
@@ -44,7 +44,7 @@ class FunctionLoopCallback : public EventBase::LoopCallback {
   explicit FunctionLoopCallback(const Cob& function)
       : function_(function) {}
 
-  virtual void runLoopCallback() noexcept {
+  void runLoopCallback() noexcept override {
     function_();
     delete this;
   }
@@ -66,7 +66,7 @@ const int kNoFD = -1;
 class EventBase::FunctionRunner
     : public NotificationQueue<std::pair<void (*)(void*), void*>>::Consumer {
  public:
-  void messageAvailable(std::pair<void (*)(void*), void*>&& msg) {
+  void messageAvailable(std::pair<void (*)(void*), void*>&& msg) override {
 
     // In libevent2, internal events do not break the loop.
     // Most users would expect loop(), followed by runInEventBaseThread(),
index f44d4fd52779806a9f47de97541f32e066529f8a..0cdf08762f41d71f07f501c0a85ba08c31ca4f5f 100644 (file)
@@ -1263,7 +1263,7 @@ class AsyncSocketImmediateRead : public folly::AsyncSocket {
   bool immediateReadCalled = false;
   explicit AsyncSocketImmediateRead(folly::EventBase* evb) : AsyncSocket(evb) {}
  protected:
-  virtual void checkForImmediateRead() noexcept override {
+  void checkForImmediateRead() noexcept override {
     immediateReadCalled = true;
     AsyncSocket::handleRead();
   }
@@ -1441,29 +1441,29 @@ class TestAcceptCallback : public AsyncServerSocket::AcceptCallback {
     acceptStoppedFn_ = fn;
   }
 
-  void connectionAccepted(int fd, const folly::SocketAddress& clientAddr)
-      noexcept {
+  void connectionAccepted(
+      int fd, const folly::SocketAddress& clientAddr) noexcept override {
     events_.emplace_back(fd, clientAddr);
 
     if (connectionAcceptedFn_) {
       connectionAcceptedFn_(fd, clientAddr);
     }
   }
-  void acceptError(const std::exception& ex) noexcept {
+  void acceptError(const std::exception& ex) noexcept override {
     events_.emplace_back(ex.what());
 
     if (acceptErrorFn_) {
       acceptErrorFn_(ex);
     }
   }
-  void acceptStarted() noexcept {
+  void acceptStarted() noexcept override {
     events_.emplace_back(TYPE_START);
 
     if (acceptStartedFn_) {
       acceptStartedFn_();
     }
   }
-  void acceptStopped() noexcept {
+  void acceptStopped() noexcept override {
     events_.emplace_back(TYPE_STOP);
 
     if (acceptStoppedFn_) {
index b9f99af1f1aa70b05fc712f1d15325945e6aad57..2af6ffb6267c4172a389128aeb7f32b7ba7fca82 100644 (file)
@@ -41,16 +41,14 @@ class UDPAcceptor
   UDPAcceptor(EventBase* evb, int n): evb_(evb), n_(n) {
   }
 
-  void onListenStarted() noexcept {
-  }
+  void onListenStarted() noexcept override {}
 
-  void onListenStopped() noexcept {
-  }
+  void onListenStopped() noexcept override {}
 
   void onDataAvailable(std::shared_ptr<folly::AsyncUDPSocket> socket,
                        const folly::SocketAddress& client,
                        std::unique_ptr<folly::IOBuf> data,
-                       bool truncated) noexcept {
+                       bool truncated) noexcept override {
 
     lastClient_ = client;
     lastMsg_ = data->moveToFbString().toStdString();
@@ -206,14 +204,14 @@ class UDPClient
         folly::IOBuf::copyBuffer(folly::to<std::string>("PING ", n_)));
   }
 
-  void getReadBuffer(void** buf, size_t* len) noexcept {
+  void getReadBuffer(void** buf, size_t* len) noexcept override {
     *buf = buf_;
     *len = 1024;
   }
 
   void onDataAvailable(const folly::SocketAddress& client,
                        size_t len,
-                       bool truncated) noexcept {
+                       bool truncated) noexcept override {
     VLOG(4) << "Read " << len << " bytes (trun:" << truncated << ") from "
               << client.describe() << " - " << std::string(buf_, len);
     VLOG(4) << n_ << " left";
@@ -223,18 +221,18 @@ class UDPClient
     sendPing();
   }
 
-  void onReadError(const folly::AsyncSocketException& ex) noexcept {
+  void onReadError(const folly::AsyncSocketException& ex) noexcept override {
     VLOG(4) << ex.what();
 
     // Start listening for next PONG
     socket_->resumeRead(this);
   }
 
-  void onReadClosed() noexcept {
+  void onReadClosed() noexcept override {
     CHECK(false) << "We unregister reads before closing";
   }
 
-  void timeoutExpired() noexcept {
+  void timeoutExpired() noexcept override {
     VLOG(4) << "Timeout expired";
     sendPing();
   }
index cbb8b42c802e927389da59f1da65b00473a7fca7..edf39793adf66baac97f034cd04ab4237f3a21d2 100644 (file)
@@ -27,7 +27,7 @@ class CountedLoopCallback : public EventBase::LoopCallback {
     : eventBase_(eventBase)
     , count_(count) {}
 
-  virtual void runLoopCallback() noexcept {
+  void runLoopCallback() noexcept override {
     --count_;
     if (count_ > 0) {
       eventBase_->runInLoop(this);
index 5e8520eca9165f1c35fe1c5d005e6f80cdde0707..40e29d52d92fb94cf1bf6aa1196c97029a6f66d6 100644 (file)
@@ -141,7 +141,7 @@ class TestHandler : public EventHandler {
   TestHandler(EventBase* eventBase, int fd)
     : EventHandler(eventBase, fd), fd_(fd) {}
 
-  virtual void handlerReady(uint16_t events) noexcept {
+  void handlerReady(uint16_t events) noexcept override {
     ssize_t bytesRead = 0;
     ssize_t bytesWritten = 0;
     if (events & READ) {
@@ -645,7 +645,7 @@ class PartialReadHandler : public TestHandler {
   PartialReadHandler(EventBase* eventBase, int fd, size_t readLength)
     : TestHandler(eventBase, fd), fd_(fd), readLength_(readLength) {}
 
-  virtual void handlerReady(uint16_t events) noexcept {
+  void handlerReady(uint16_t events) noexcept override {
     assert(events == EventHandler::READ);
     ssize_t bytesRead = readFromFD(fd_, readLength_);
     log.emplace_back(events, bytesRead, 0);
@@ -710,7 +710,7 @@ class PartialWriteHandler : public TestHandler {
   PartialWriteHandler(EventBase* eventBase, int fd, size_t writeLength)
     : TestHandler(eventBase, fd), fd_(fd), writeLength_(writeLength) {}
 
-  virtual void handlerReady(uint16_t events) noexcept {
+  void handlerReady(uint16_t events) noexcept override {
     assert(events == EventHandler::WRITE);
     ssize_t bytesWritten = writeToFD(fd_, writeLength_);
     log.emplace_back(events, 0, bytesWritten);
@@ -780,9 +780,7 @@ TEST(EventBaseTest, DestroyHandler) {
       : AsyncTimeout(eb)
       , handler_(h) {}
 
-    virtual void timeoutExpired() noexcept {
-      delete handler_;
-    }
+    void timeoutExpired() noexcept override { delete handler_; }
 
    private:
     EventHandler* handler_;
@@ -895,9 +893,7 @@ class TestTimeout : public AsyncTimeout {
     : AsyncTimeout(eventBase)
     , timestamp(false) {}
 
-  virtual void timeoutExpired() noexcept {
-    timestamp.reset();
-  }
+  void timeoutExpired() noexcept override { timestamp.reset(); }
 
   TimePoint timestamp;
 };
@@ -933,7 +929,7 @@ class ReschedulingTimeout : public AsyncTimeout {
     reschedule();
   }
 
-  virtual void timeoutExpired() noexcept {
+  void timeoutExpired() noexcept override {
     timestamps.emplace_back();
     reschedule();
   }
@@ -1052,9 +1048,7 @@ TEST(EventBaseTest, DestroyTimeout) {
       : AsyncTimeout(eb)
       , timeout_(t) {}
 
-    virtual void timeoutExpired() noexcept {
-      delete timeout_;
-    }
+    void timeoutExpired() noexcept override { delete timeout_; }
 
    private:
     AsyncTimeout* timeout_;
@@ -1269,7 +1263,7 @@ class CountedLoopCallback : public EventBase::LoopCallback {
     , count_(count)
     , action_(action) {}
 
-  virtual void runLoopCallback() noexcept {
+  void runLoopCallback() noexcept override {
     --count_;
     if (count_ > 0) {
       eventBase_->runInLoop(this);
@@ -1437,7 +1431,7 @@ class TerminateTestCallback : public EventBase::LoopCallback,
     unregisterHandler();
   }
 
-  virtual void handlerReady(uint16_t events) noexcept {
+  void handlerReady(uint16_t events) noexcept override {
     // We didn't register with PERSIST, so we will have been automatically
     // unregistered already.
     ASSERT_FALSE(isHandlerRegistered());
@@ -1449,7 +1443,7 @@ class TerminateTestCallback : public EventBase::LoopCallback,
 
     eventBase_->runInLoop(this);
   }
-  virtual void runLoopCallback() noexcept {
+  void runLoopCallback() noexcept override {
     ++loopInvocations_;
     if (loopInvocations_ >= maxLoopInvocations_) {
       return;
@@ -1526,9 +1520,9 @@ class IdleTimeTimeoutSeries : public AsyncTimeout {
       scheduleTimeout(1);
     }
 
-  virtual ~IdleTimeTimeoutSeries() {}
+    ~IdleTimeTimeoutSeries() override {}
 
-  void timeoutExpired() noexcept {
+    void timeoutExpired() noexcept override {
     ++timeouts_;
 
     if(timeout_.empty()){
@@ -1696,9 +1690,7 @@ public:
   PipeHandler(EventBase* eventBase, int fd)
     : EventHandler(eventBase, fd) {}
 
-  void handlerReady(uint16_t events) noexcept {
-    abort();
-  }
+  void handlerReady(uint16_t events) noexcept override { abort(); }
 };
 
 TEST(EventBaseTest, StopBeforeLoop) {
index 8fc0ad0045e7f12e22e90437ccb490d228d9da8e..314eba5ec745112e6e20ea82e263c35d709ea9c7 100644 (file)
@@ -133,7 +133,7 @@ TEST(CompressionTestNeedsUncompressedLength, Simple) {
 class CompressionTest
     : public testing::TestWithParam<std::tr1::tuple<int, CodecType>> {
   protected:
-   void SetUp() {
+   void SetUp() override {
      auto tup = GetParam();
      uncompressedLength_ = uint64_t(1) << std::tr1::get<0>(tup);
      codec_ = getCodec(std::tr1::get<1>(tup));
@@ -185,7 +185,7 @@ INSTANTIATE_TEST_CASE_P(
 class CompressionVarintTest
     : public testing::TestWithParam<std::tr1::tuple<int, CodecType>> {
  protected:
-  void SetUp() {
+  void SetUp() override {
     auto tup = GetParam();
     uncompressedLength_ = uint64_t(1) << std::tr1::get<0>(tup);
     codec_ = getCodec(std::tr1::get<1>(tup));
@@ -237,9 +237,7 @@ INSTANTIATE_TEST_CASE_P(
 
 class CompressionCorruptionTest : public testing::TestWithParam<CodecType> {
  protected:
-  void SetUp() {
-    codec_ = getCodec(GetParam());
-  }
+  void SetUp() override { codec_ = getCodec(GetParam()); }
 
   void runSimpleTest(const DataHolder& dh);
 
index 4e4c1312825925f2f7676cf9b610a109c02bb085..4ee43cf2cfb39b1e1966b19517e913e37bafbc52 100644 (file)
@@ -832,7 +832,7 @@ enum BufType {
 class MoveToFbStringTest
   : public ::testing::TestWithParam<std::tr1::tuple<int, int, bool, BufType>> {
  protected:
-  void SetUp() {
+  void SetUp() override {
     elementSize_ = std::tr1::get<0>(GetParam());
     elementCount_ = std::tr1::get<1>(GetParam());
     shared_ = std::tr1::get<2>(GetParam());
index 47b18d2ef5fbc200c01d2be0cce91cd2af1c3cc7..79660da3c433613d31cb3abd19266cb75bd3c83c 100644 (file)
@@ -139,8 +139,8 @@ public:
   explicit IntException(int i)
     : i_(i) {}
 
-  virtual int getInt() const override { return i_; }
-  virtual const char* what() const noexcept override {
+  int getInt() const override { return i_; }
+  const char* what() const noexcept override {
     what_ = folly::to<std::string>("int == ", i_);
     return what_.c_str();
   }
index b3ea1d4a2a3c42b29d973edeb6062404d69c2b5a..406d88c0317046f7d3985d3efc329f7bf149fc06 100644 (file)
@@ -84,7 +84,7 @@ class IntPaddedTestBase : public ::testing::Test {
 
 class IntPaddedConstTest : public IntPaddedTestBase {
  protected:
-  void SetUp() {
+  void SetUp() override {
     v_.resize(4);
     n_ = 0;
     for (int i = 0; i < 4; i++) {
@@ -181,7 +181,7 @@ class StructPaddedTestBase : public ::testing::Test {
 
 class StructPaddedConstTest : public StructPaddedTestBase {
  protected:
-  void SetUp() {
+  void SetUp() override {
     v_.resize(4);
     n_ = 0;
     for (int i = 0; i < 4; i++) {
index f69717931dbc36d424d4ba874bb5ea90d2a83bf8..62b255531b9e95c7d83797d8c123d67346b51ab8 100644 (file)
@@ -28,7 +28,7 @@ class Base {
 
 class Derived : public Base {
  public:
-  virtual int foo() const FOLLY_FINAL { return 2; }
+  int foo() const FOLLY_FINAL { return 2; }
 };
 
 // A compiler that supports final will likely inline the call to p->foo()
index ed34257ae2398250ea7a947e87b3493abf57796d..8eaf51a456aec7ebb06cabc3d8e9c51216e99cbf 100644 (file)
 class Exception : public std::exception {
  public:
   explicit Exception(const std::string& value) : value_(value) {}
-  virtual ~Exception(void) noexcept {}
+  ~Exception(void) noexcept override {}
 
-  virtual const char *what(void) const noexcept {
-    return value_.c_str();
-  }
+  const char* what(void) const noexcept override { return value_.c_str(); }
 
  private:
   std::string value_;
index 8ef0d18b521f76ddf562765d8a8828e6073169af..f66b3412231cfc11ea6397299b45d8cc7c4f4668 100644 (file)
@@ -69,30 +69,27 @@ class AcceptorHandshakeHelper :
     socket_->sslAccept(this);
   }
 
-  virtual void timeoutExpired() noexcept override {
+  void timeoutExpired() noexcept override {
     VLOG(4) << "SSL handshake timeout expired";
     sslError_ = SSLErrorEnum::TIMEOUT;
     dropConnection();
   }
-  virtual void describe(std::ostream& os) const override {
+  void describe(std::ostream& os) const override {
     os << "pending handshake on " << clientAddr_;
   }
-  virtual bool isBusy() const override {
-    return true;
-  }
-  virtual void notifyPendingShutdown() override {}
-  virtual void closeWhenIdle() override {}
+  bool isBusy() const override { return true; }
+  void notifyPendingShutdown() override {}
+  void closeWhenIdle() override {}
 
-  virtual void dropConnection() override {
+  void dropConnection() override {
     VLOG(10) << "Dropping in progress handshake for " << clientAddr_;
     socket_->closeNow();
   }
-  virtual void dumpConnectionState(uint8_t loglevel) override {
-  }
+  void dumpConnectionState(uint8_t loglevel) override {}
 
  private:
   // AsyncSSLSocket::HandshakeCallback API
-  virtual void handshakeSuc(AsyncSSLSocket* sock) noexcept override {
+  void handshakeSuc(AsyncSSLSocket* sock) noexcept override {
 
     const unsigned char* nextProto = nullptr;
     unsigned nextProtoLength = 0;
@@ -146,8 +143,8 @@ class AcceptorHandshakeHelper :
     delete this;
   }
 
-  virtual void handshakeErr(AsyncSSLSocket* sock,
-                            const AsyncSocketException& ex) noexcept override {
+  void handshakeErr(AsyncSSLSocket* sock,
+                    const AsyncSocketException& ex) noexcept override {
     auto elapsedTime = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - acceptTime_);
     VLOG(3) << "SSL handshake error after " << elapsedTime.count() <<
         " ms; " << sock->getRawBytesReceived() << " bytes received & " <<
index 724afec93f24a5b693276372bee8284038bec557..ad82738d537a0ece4528fa889cfa83bcfeca1bdf 100644 (file)
@@ -33,7 +33,7 @@ typedef ClientBootstrap<BytesPipeline> TestClient;
 class TestClientPipelineFactory : public PipelineFactory<BytesPipeline> {
  public:
   std::unique_ptr<BytesPipeline, folly::DelayedDestruction::Destructor>
-  newPipeline(std::shared_ptr<AsyncSocket> sock) {
+  newPipeline(std::shared_ptr<AsyncSocket> sock) override {
     // We probably aren't connected immedately, check after a small delay
     EventBaseManager::get()->getEventBase()->tryRunAfterDelay([sock](){
       CHECK(sock->good());
@@ -45,8 +45,8 @@ class TestClientPipelineFactory : public PipelineFactory<BytesPipeline> {
 
 class TestPipelineFactory : public PipelineFactory<BytesPipeline> {
  public:
-  std::unique_ptr<BytesPipeline, folly::DelayedDestruction::Destructor> newPipeline(
-    std::shared_ptr<AsyncSocket> sock) {
+  std::unique_ptr<BytesPipeline, folly::DelayedDestruction::Destructor>
+  newPipeline(std::shared_ptr<AsyncSocket> sock) override {
 
     pipelines++;
     return std::unique_ptr<BytesPipeline, folly::DelayedDestruction::Destructor>(
@@ -61,17 +61,15 @@ EventBase base_;
   TestAcceptor() : Acceptor(ServerSocketConfig()) {
     Acceptor::init(nullptr, &base_);
   }
-  void onNewConnection(
-      AsyncSocket::UniquePtr sock,
-      const folly::SocketAddress* address,
-      const std::string& nextProtocolName,
-        const TransportInfo& tinfo) {
-  }
+  void onNewConnection(AsyncSocket::UniquePtr sock,
+                       const folly::SocketAddress* address,
+                       const std::string& nextProtocolName,
+                       const TransportInfo& tinfo) override {}
 };
 
 class TestAcceptorFactory : public AcceptorFactory {
  public:
-  std::shared_ptr<Acceptor> newAcceptor(EventBase* base) {
+  std::shared_ptr<Acceptor> newAcceptor(EventBase* base) override {
     return std::make_shared<TestAcceptor>();
   }
 };
@@ -272,7 +270,7 @@ std::atomic<int> connections{0};
 
 class TestHandlerPipeline : public InboundHandler<void*> {
  public:
-  void read(Context* ctx, void* conn) {
+  void read(Context* ctx, void* conn) override {
     connections++;
     return ctx->fireRead(conn);
   }
@@ -284,7 +282,7 @@ class TestHandlerPipelineFactory
  public:
   std::unique_ptr<ServerBootstrap<BytesPipeline>::AcceptPipeline,
                   folly::DelayedDestruction::Destructor>
-  newPipeline(std::shared_ptr<AsyncSocket>) {
+      newPipeline(std::shared_ptr<AsyncSocket>) override {
 
     std::unique_ptr<ServerBootstrap<BytesPipeline>::AcceptPipeline,
                     folly::DelayedDestruction::Destructor> pipeline(
@@ -320,9 +318,7 @@ TEST(Bootstrap, LoadBalanceHandler) {
 
 class TestUDPPipeline : public InboundHandler<void*> {
  public:
-  void read(Context* ctx, void* conn) {
-    connections++;
-  }
+  void read(Context* ctx, void* conn) override { connections++; }
 };
 
 TEST(Bootstrap, UDP) {
index ff12fc2fba09afc816177fffb65a333efa343b47..965743dd9882694b309d5eb8936cc9635e3114e2 100644 (file)
@@ -38,7 +38,7 @@ struct FileRegionTest : public Test {
     EXPECT_EQ(0, unlink(path));
   }
 
-  ~FileRegionTest() {
+  ~FileRegionTest() override {
     // Close up shop
     close(fd);
     acceptedSocket->close();
index 36c4cee671b1aec9cf30e12f8ed3086fe41c187f..84a25584b6d08c05e6cdc6f34c61975fbf6e64a8 100644 (file)
@@ -265,8 +265,8 @@ template <class Rin, class Rout = Rin, class Win = Rout, class Wout = Rin>
 class ConcreteHandler : public Handler<Rin, Rout, Win, Wout> {
   typedef typename Handler<Rin, Rout, Win, Wout>::Context Context;
  public:
-  void read(Context* ctx, Rin msg) {}
-  Future<void> write(Context* ctx, Win msg) { return makeFuture(); }
+  void read(Context* ctx, Rin msg) override {}
+  Future<void> write(Context* ctx, Win msg) override { return makeFuture(); }
 };
 
 typedef HandlerAdapter<std::string, std::string> StringHandler;
index ecca824fe82e62d8013bbe0481cede0404e9f18f..25ff2fea49b7aa339c333cb1fb904652118b80d2 100644 (file)
@@ -30,11 +30,11 @@ class FrameTester
   explicit FrameTester(std::function<void(std::unique_ptr<IOBuf>)> test)
     : test_(test) {}
 
-  void read(Context* ctx, std::unique_ptr<IOBuf> buf) {
+  void read(Context* ctx, std::unique_ptr<IOBuf> buf) override {
     test_(std::move(buf));
   }
 
-  void readException(Context* ctx, exception_wrapper w) {
+  void readException(Context* ctx, exception_wrapper w) override {
     test_(nullptr);
   }
  private:
@@ -44,8 +44,7 @@ class FrameTester
 class BytesReflector
     : public BytesToBytesHandler {
  public:
-
-  Future<void> write(Context* ctx, std::unique_ptr<IOBuf> buf) {
+  Future<void> write(Context* ctx, std::unique_ptr<IOBuf> buf) override {
     IOBufQueue q_(IOBufQueue::cacheChainLength());
     q_.append(std::move(buf));
     ctx->fireRead(q_);
index 7552cad93ced27e8b7ed33d804976baae5239c4a..91f32842ad24aff22da6443d58fd045c77c46643 100644 (file)
@@ -33,11 +33,9 @@ class MemoryIdlerTimeout
  public:
   explicit MemoryIdlerTimeout(EventBase* b) : AsyncTimeout(b), base_(b) {}
 
-  virtual void timeoutExpired() noexcept {
-    idled = true;
-  }
+  void timeoutExpired() noexcept override { idled = true; }
 
-  virtual void runLoopCallback() noexcept {
+  void runLoopCallback() noexcept override {
     if (idled) {
       MemoryIdler::flushLocalMallocCaches();
       MemoryIdler::unmapUnusedStack(MemoryIdler::kDefaultStackToRetain);
index 8a6fcc023bc04a7f40959a3930fc12c6eb5204d4..59c28c01c42d547e318ba599e41871fdfcb68178 100644 (file)
@@ -322,16 +322,12 @@ TEST(ThreadPoolExecutorTest, PriorityPreemptionTest) {
 
 class TestObserver : public ThreadPoolExecutor::Observer {
  public:
-  void threadStarted(ThreadPoolExecutor::ThreadHandle*) {
+  void threadStarted(ThreadPoolExecutor::ThreadHandle*) override { threads_++; }
+  void threadStopped(ThreadPoolExecutor::ThreadHandle*) override { threads_--; }
+  void threadPreviouslyStarted(ThreadPoolExecutor::ThreadHandle*) override {
     threads_++;
   }
-  void threadStopped(ThreadPoolExecutor::ThreadHandle*) {
-    threads_--;
-  }
-  void threadPreviouslyStarted(ThreadPoolExecutor::ThreadHandle*) {
-    threads_++;
-  }
-  void threadNotYetStopped(ThreadPoolExecutor::ThreadHandle*) {
+  void threadNotYetStopped(ThreadPoolExecutor::ThreadHandle*) override {
     threads_--;
   }
   void checkCalls() {
index 4bf37df8d184d34bd3f7f30f2b8efb123cee1b87..93da3e2db919e49811dea70dc10ef1f5362221f9 100644 (file)
@@ -29,22 +29,21 @@ typedef Pipeline<IOBufQueue&, std::string> ServicePipeline;
 
 class SimpleDecode : public ByteToMessageCodec {
  public:
-  virtual std::unique_ptr<IOBuf> decode(
-    Context* ctx, IOBufQueue& buf, size_t&) {
+  std::unique_ptr<IOBuf> decode(Context* ctx,
+                                IOBufQueue& buf,
+                                size_t&) override {
     return buf.move();
   }
 };
 
 class EchoService : public Service<std::string, std::string> {
  public:
-  virtual Future<std::string> operator()(std::string req) override {
-    return req;
-  }
+  Future<std::string> operator()(std::string req) override { return req; }
 };
 
 class EchoIntService : public Service<std::string, int> {
  public:
-  virtual Future<int> operator()(std::string req) override {
+  Future<int> operator()(std::string req) override {
     return folly::to<int>(req);
   }
 };
@@ -143,7 +142,7 @@ class AppendFilter : public ServiceFilter<std::string, std::string> {
     std::shared_ptr<Service<std::string, std::string>> service) :
       ServiceFilter<std::string, std::string>(service) {}
 
-  virtual Future<std::string> operator()(std::string req) {
+  Future<std::string> operator()(std::string req) override {
     return (*service_)(req + "\n");
   }
 };
@@ -155,7 +154,7 @@ class IntToStringFilter
     std::shared_ptr<Service<std::string, std::string>> service) :
       ServiceFilter<int, int, std::string, std::string>(service) {}
 
-  virtual Future<int> operator()(int req) {
+  Future<int> operator()(int req) override {
     return (*service_)(folly::to<std::string>(req)).then([](std::string resp) {
       return folly::to<int>(resp);
     });
@@ -183,7 +182,7 @@ class ChangeTypeFilter
     std::shared_ptr<Service<std::string, int>> service) :
       ServiceFilter<int, std::string, std::string, int>(service) {}
 
-  virtual Future<std::string> operator()(int req) {
+  Future<std::string> operator()(int req) override {
     return (*service_)(folly::to<std::string>(req)).then([](int resp) {
       return folly::to<std::string>(resp);
     });
@@ -204,8 +203,8 @@ class ConnectionCountFilter : public ServiceFactoryFilter<Pipeline, Req, Resp> {
     std::shared_ptr<ServiceFactory<Pipeline, Req, Resp>> factory)
       : ServiceFactoryFilter<Pipeline, Req, Resp>(factory) {}
 
-    virtual Future<std::shared_ptr<Service<Req, Resp>>> operator()(
-      std::shared_ptr<ClientBootstrap<Pipeline>> client) {
+  Future<std::shared_ptr<Service<Req, Resp>>> operator()(
+      std::shared_ptr<ClientBootstrap<Pipeline>> client) override {
       connectionCount++;
       return (*this->serviceFactory_)(client);
     }
index f3129e48291cd1a85d0bab20d1996710412651bd..24f805185d845b61767479a07075b48628124a50 100644 (file)
@@ -60,7 +60,7 @@ private:
 
 public:
   SSLCacheClient(EventBase* eventBase, SSL_SESSION **pSess, ClientRunner* cr);
-  ~SSLCacheClient() {
+  ~SSLCacheClient() override {
     if (session_ && !FLAGS_global)
       SSL_SESSION_free(session_);
     if (socket_ != nullptr) {
@@ -75,17 +75,14 @@ public:
 
   void start();
 
-  virtual void connectSuccess() noexcept;
+  void connectSuccess() noexcept override;
 
-  virtual void connectErr(const AsyncSocketException& ex)
-    noexcept ;
+  void connectErr(const AsyncSocketException& ex) noexcept override;
 
-  virtual void handshakeSuc(AsyncSSLSocket* sock) noexcept;
-
-  virtual void handshakeErr(
-    AsyncSSLSocket* sock,
-    const AsyncSocketException& ex) noexcept;
+  void handshakeSuc(AsyncSSLSocket* sock) noexcept override;
 
+  void handshakeErr(AsyncSSLSocket* sock,
+                    const AsyncSocketException& ex) noexcept override;
 };
 
 int