/* * 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 #include #include #include #include #include namespace apache { namespace thrift { class AsyncProcessorFactory; class ThriftServer; /** * ScopedServerInterfaceThread spawns a thrift cpp2 server in a new thread. * * The server is stopped automatically when the instance is destroyed. */ class ScopedServerInterfaceThread { public: using ServerConfigCb = folly::Function; using MakeChannelFunc = folly::Function; using FaultInjectionFunc = folly::Function; using StreamFaultInjectionFunc = folly::Function( folly::StringPiece methodName)>; ScopedServerInterfaceThread( std::shared_ptr apf, const folly::SocketAddress& addr, ServerConfigCb configCb = {}); explicit ScopedServerInterfaceThread( std::shared_ptr apf, const std::string& host = "::1", uint16_t port = 0, ServerConfigCb configCb = {}); explicit ScopedServerInterfaceThread( std::shared_ptr apf, ServerConfigCb configCb); explicit ScopedServerInterfaceThread(std::shared_ptr ts); ThriftServer& getThriftServer() const; const folly::SocketAddress& getAddress() const; uint16_t getPort() const; /** * Creates and returns a new AsyncClientT. Uses the given channelFunc to * create a channel for the client by passing it a connected, plaintext * folly::AsyncSocket. */ template std::unique_ptr newClient( folly::Executor* callbackExecutor = nullptr, MakeChannelFunc channelFunc = RocketClientChannel::newChannel) const; /** * Like newClient but invokes injectFault before each request and * short-circuits the request if it returns an exception. * Useful for testing handling of e.g. TTransportException. * * Additionally, streamInjectFault (optional) is a function that will be * called once when a new stream is created and the returned function will * be called every time a stream chunk is received. If that function returns * an exception, the stream will be terminated with that exception. */ template std::unique_ptr newClientWithFaultInjection( FaultInjectionFunc injectFault, folly::Executor* callbackExecutor = nullptr, MakeChannelFunc channelFunc = RocketClientChannel::newChannel, StreamFaultInjectionFunc streamInjectFault = nullptr) const; /** * Like newClient but sends all requests over a single internal channel */ template std::unique_ptr newStickyClient( folly::Executor* callbackExecutor = nullptr, MakeChannelFunc channelFunc = RocketClientChannel::newChannel) const; static std::shared_ptr makeTestClientChannel( std::shared_ptr apf, ScopedServerInterfaceThread::FaultInjectionFunc injectFault, ScopedServerInterfaceThread::StreamFaultInjectionFunc streamInjectFault = nullptr, protocol::PROTOCOL_TYPES prot = protocol::T_COMPACT_PROTOCOL); private: std::shared_ptr ts_; util::ScopedServerThread sst_; RequestChannel::Ptr newChannel( folly::Executor* callbackExecutor, MakeChannelFunc channelFunc, size_t numThreads = folly::hardware_concurrency(), protocol::PROTOCOL_TYPES prot = protocol::T_COMPACT_PROTOCOL) const; }; namespace detail { template T get_service_tag(ServiceHandler*); template using get_service_tag_t = decltype(get_service_tag(std::declval())); } // namespace detail /** * Creates a AsyncClientT for a given handler, backed by an internal * ScopedServerInterfaceThread, with optional fault injection * (if set, invokes injectFault before each request and * short-circuits the request if it returns an exception. * Useful for testing handling of e.g. TTransportException.) * * Additionally, streamInjectFault (optional) is a function that will be * called once when a new stream is created and the returned function will * be called every time a stream chunk is received. If that function returns * an exception, the stream will be terminated with that exception. * * This is more convenient but offers less control than managing * your own ScopedServerInterfaceThread. */ template < class ServiceHandler, class ServiceTag = apache::thrift::detail::get_service_tag_t> std::unique_ptr> makeTestClient( std::shared_ptr handler, ScopedServerInterfaceThread::FaultInjectionFunc injectFault = nullptr, ScopedServerInterfaceThread::StreamFaultInjectionFunc streamInjectFault = nullptr, protocol::PROTOCOL_TYPES prot = protocol::T_COMPACT_PROTOCOL); template std::unique_ptr makeTestClient( std::shared_ptr apf, ScopedServerInterfaceThread::FaultInjectionFunc injectFault = nullptr, ScopedServerInterfaceThread::StreamFaultInjectionFunc streamInjectFault = nullptr, protocol::PROTOCOL_TYPES prot = protocol::T_COMPACT_PROTOCOL); } // namespace thrift } // namespace apache #include