2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2016-09-02 21:12:59 -07:00
|
|
|
|
2018-05-13 17:09:56 -07:00
|
|
|
#ifndef WPIUTIL_WPI_RAW_SOCKET_OSTREAM_H_
|
|
|
|
|
#define WPIUTIL_WPI_RAW_SOCKET_OSTREAM_H_
|
2016-09-02 21:12:59 -07:00
|
|
|
|
2018-04-29 23:33:19 -07:00
|
|
|
#include "wpi/raw_ostream.h"
|
2016-09-02 21:12:59 -07:00
|
|
|
|
|
|
|
|
namespace wpi {
|
|
|
|
|
|
|
|
|
|
class NetworkStream;
|
|
|
|
|
|
2018-04-29 23:33:19 -07:00
|
|
|
class raw_socket_ostream : public raw_ostream {
|
2016-09-02 21:12:59 -07:00
|
|
|
public:
|
|
|
|
|
raw_socket_ostream(NetworkStream& stream, bool shouldClose)
|
|
|
|
|
: m_stream(stream), m_shouldClose(shouldClose) {}
|
2020-12-28 00:10:13 -08:00
|
|
|
~raw_socket_ostream() override;
|
2016-09-02 21:12:59 -07:00
|
|
|
|
|
|
|
|
void close();
|
|
|
|
|
|
|
|
|
|
bool has_error() const { return m_error; }
|
|
|
|
|
void clear_error() { m_error = false; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void error_detected() { m_error = true; }
|
|
|
|
|
|
|
|
|
|
private:
|
2017-10-21 20:31:20 -07:00
|
|
|
void write_impl(const char* data, size_t len) override;
|
2016-09-02 21:12:59 -07:00
|
|
|
uint64_t current_pos() const override;
|
|
|
|
|
|
|
|
|
|
NetworkStream& m_stream;
|
|
|
|
|
bool m_error = false;
|
|
|
|
|
bool m_shouldClose;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace wpi
|
|
|
|
|
|
2018-05-13 17:09:56 -07:00
|
|
|
#endif // WPIUTIL_WPI_RAW_SOCKET_OSTREAM_H_
|