blob: a4996f6d581cb730294b7e1d0e7bb5af73f65fc5 [file]
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef QUICHE_QUIC_MOQT_TOOLS_MOQT_SERVER_H_
#define QUICHE_QUIC_MOQT_TOOLS_MOQT_SERVER_H_
#include <memory>
#include "absl/status/statusor.h"
#include "absl/strings/string_view.h"
#include "quiche/quic/core/crypto/proof_source.h"
#include "quiche/quic/core/io/quic_event_loop.h"
#include "quiche/quic/moqt/moqt_session.h"
#include "quiche/quic/platform/api/quic_socket_address.h"
#include "quiche/quic/tools/quic_server.h"
#include "quiche/quic/tools/web_transport_only_backend.h"
#include "quiche/common/platform/api/quiche_export.h"
#include "quiche/common/quiche_callbacks.h"
namespace moqt {
namespace test {
class MoqtServerPeer;
} // namespace test
// A callback to configure an already created MoQT session.
using MoqtConfigureSessionCallback =
quiche::SingleUseCallback<void(MoqtSession* session)>;
// A callback to provide MoQT handler based on the path in the request.
using MoqtIncomingSessionCallback =
quiche::MultiUseCallback<absl::StatusOr<MoqtConfigureSessionCallback>(
absl::string_view path)>;
// A simple MoQT server.
class QUICHE_EXPORT MoqtServer {
public:
explicit MoqtServer(std::unique_ptr<quic::ProofSource> proof_source,
MoqtIncomingSessionCallback callback);
bool CreateUDPSocketAndListen(const quic::QuicSocketAddress& address) {
return server_.CreateUDPSocketAndListen(address);
}
void WaitForEvents() { server_.WaitForEvents(); }
void HandleEventsForever() { server_.HandleEventsForever(); }
quic::QuicEventLoop* event_loop() { return server_.event_loop(); }
int port() { return server_.port(); }
private:
friend class test::MoqtServerPeer;
quic::WebTransportOnlyBackend backend_;
quic::QuicServer server_;
};
} // namespace moqt
#endif // QUICHE_QUIC_MOQT_TOOLS_MOQT_SERVER_H_