| /** @file |
| * |
| * A brief file description |
| * |
| * @section license License |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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 <map> |
| |
| #include "proxy/IPAllow.h" |
| |
| #include "iocore/net/quic/QUICApplication.h" |
| #include "iocore/net/quic/QUICStreamVCAdapter.h" |
| |
| #include "proxy/http/HttpSessionAccept.h" |
| |
| #include "proxy/http3/Http3Types.h" |
| #include "proxy/http3/Http3FrameDispatcher.h" |
| #include "proxy/http3/Http3FrameCollector.h" |
| #include "proxy/http3/Http3FrameHandler.h" |
| #include "proxy/http3/QPACK.h" |
| |
| class Http3Session; |
| |
| /** |
| * @brief A HTTP/3 application |
| * @detail |
| */ |
| class Http3App : public QUICApplication |
| { |
| public: |
| Http3App(NetVConnection *client_vc, QUICConnection *qc, IpAllow::ACL &&session_acl, const HttpSessionAccept::Options &options); |
| virtual ~Http3App(); |
| |
| void on_stream_open(QUICStream &stream) override; |
| void on_stream_close(QUICStream &stream) override; |
| |
| virtual void start(); |
| virtual int main_event_handler(int event, Event *data); |
| |
| // TODO: Return StreamIO. It looks bother that caller have to look up StreamIO by stream id. |
| // Why not create_bidi_stream ? |
| QUICConnectionErrorUPtr create_uni_stream(QUICStreamId &new_stream_id, Http3StreamType type); |
| |
| protected: |
| Http3Session *_ssn = nullptr; |
| |
| std::unordered_map<QUICStreamId, QUICStreamVCAdapter::IOInfo> _streams; |
| |
| QUICStreamId _control_stream_id = 0; |
| |
| private: |
| void _handle_uni_stream_on_read_ready(int event, VIO *vio); |
| void _handle_uni_stream_on_read_complete(int event, VIO *vio); |
| void _handle_uni_stream_on_write_ready(int event, VIO *vio); |
| void _handle_uni_stream_on_write_complete(int event, VIO *vio); |
| void _handle_uni_stream_on_eos(int event, VIO *vio); |
| void _handle_bidi_stream_on_read_ready(int event, VIO *vio); |
| void _handle_bidi_stream_on_read_complete(int event, VIO *vio); |
| void _handle_bidi_stream_on_write_ready(int event, VIO *vio); |
| void _handle_bidi_stream_on_write_complete(int event, VIO *vio); |
| void _handle_bidi_stream_on_eos(int event, VIO *vio); |
| |
| void _set_qpack_stream(Http3StreamType type, QUICStreamVCAdapter *adapter); |
| |
| QUICStreamVCAdapter::IOInfo &_get_stream_info(QUICStreamId stream_id); |
| void _update_vio_cont_to_QPACK(QPACK *qpack, QUICStreamVCAdapter *adapter); |
| |
| Http3FrameHandler *_protocol_enforcer = nullptr; |
| Http3FrameHandler *_settings_handler = nullptr; |
| Http3FrameGenerator *_settings_framer = nullptr; |
| |
| Http3FrameDispatcher _control_stream_dispatcher; |
| Http3FrameCollector _control_stream_collector; |
| |
| std::map<QUICStreamId, Http3StreamType> _remote_uni_stream_map; |
| std::map<QUICStreamId, Http3StreamType> _local_uni_stream_map; |
| |
| bool _is_control_stream_initialized = false; |
| }; |