/* * 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 namespace apache { namespace thrift { namespace compiler { class t_stream : public t_type { public: explicit t_stream(t_type_ref elem_type) : elem_type_(std::move(elem_type)) {} const t_type_ref& elem_type() const { return elem_type_; } t_type_ref& elem_type() { return elem_type_; } // Returns the exceptions declared in the throws clause or or null if there // is no throws clause. t_throws* exceptions() { return exceptions_.get(); } const t_throws* exceptions() const { return exceptions_.get(); } void set_exceptions(std::unique_ptr exceptions) { exceptions_ = std::move(exceptions); } private: t_type_ref elem_type_; std::unique_ptr exceptions_; // TODO(afuller): Remove everything below here. It is provided only for // backwards compatibility. public: explicit t_stream( const t_type* elem_type, std::unique_ptr throws = nullptr) : t_stream(t_type_ref::from_req_ptr(elem_type)) { set_exceptions(std::move(throws)); } const t_type* get_elem_type() const { return elem_type().get_type(); } bool is_streamresponse() const override { return true; } type get_type_value() const override { return type::t_stream; } std::string get_full_name() const override { return "stream<" + elem_type_->get_full_name() + ">"; } }; } // namespace compiler } // namespace thrift } // namespace apache