/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace apache { namespace thrift { class Cpp2Worker; namespace rocket { class RocketServerConnection; } namespace detail { #define THRIFT_DETAIL_DECLARE_SERVER_EXTENSION(FUNC) \ THRIFT_PLUGGABLE_FUNC_DECLARE( \ std::unique_ptr, \ FUNC, \ apache::thrift::ThriftServer&); THRIFT_DETAIL_DECLARE_SERVER_EXTENSION(createRocketDebugSetupFrameHandler) THRIFT_DETAIL_DECLARE_SERVER_EXTENSION(createRocketMonitoringSetupFrameHandler) THRIFT_DETAIL_DECLARE_SERVER_EXTENSION(createRocketProfilingSetupFrameHandler) #undef THRIFT_DETAIL_DECLARE_EXTENSION_DEFAULT } // namespace detail class RocketRoutingHandler : public TransportRoutingHandler { public: explicit RocketRoutingHandler(ThriftServer&); ~RocketRoutingHandler() override; RocketRoutingHandler(const RocketRoutingHandler&) = delete; RocketRoutingHandler& operator=(const RocketRoutingHandler&) = delete; void stopListening() override; bool canAcceptConnection( const std::vector& bytes, const wangle::TransportInfo& tinfo) override; bool canAcceptEncryptedConnection(const std::string& protocolName) override; void handleConnection( wangle::ConnectionManager* connectionManager, folly::AsyncTransport::UniquePtr sock, const folly::SocketAddress* peerAddress, const wangle::TransportInfo& tinfo, std::shared_ptr worker) override; protected: virtual void onConnection(rocket::RocketServerConnection&) {} private: std::atomic listening_{true}; std::vector> setupFrameHandlers_; }; } // namespace thrift } // namespace apache