#ifndef REMOTING_BASE_PROTOBUF_HTTP_STREAM_PARSER_H_
#define REMOTING_BASE_PROTOBUF_HTTP_STREAM_PARSER_H_
#include <string_view>
#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "third_party/protobuf/src/google/protobuf/wire_format_lite.h"
namespace google {
namespace protobuf {
namespace io {
class CodedInputStream;
}
}
}
namespace net {
class GrowableIOBuffer;
}
namespace remoting {
class HttpStatus;
class ProtobufHttpStreamParser final {
public:
using MessageCallback = base::RepeatingCallback<void(const std::string&)>;
using StreamClosedCallback = base::OnceCallback<void(const HttpStatus&)>;
ProtobufHttpStreamParser(const MessageCallback& message_callback,
StreamClosedCallback stream_closed_callback);
~ProtobufHttpStreamParser();
ProtobufHttpStreamParser(const ProtobufHttpStreamParser&) = delete;
ProtobufHttpStreamParser& operator=(const ProtobufHttpStreamParser&) = delete;
void Append(std::string_view data);
bool HasPendingData() const;
private:
void ParseStreamIfAvailable();
bool ParseOneField(google::protobuf::io::CodedInputStream* input_stream);
bool ValidateWireType(
int field_number,
google::protobuf::internal::WireFormatLite::WireType wire_type);
MessageCallback message_callback_;
StreamClosedCallback stream_closed_callback_;
scoped_refptr<net::GrowableIOBuffer> read_buffer_;
base::WeakPtrFactory<ProtobufHttpStreamParser> weak_factory_{this};
};
}
#endif