mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
This makes code easier to read and more consistent between C++ and Java. Also update clang-format settings to always add a line break (even if no braces are used).
164 lines
4.2 KiB
C++
164 lines
4.2 KiB
C++
// 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.
|
|
|
|
#ifndef NTCORE_WIREDECODER_H_
|
|
#define NTCORE_WIREDECODER_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <cstddef>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include <wpi/leb128.h>
|
|
#include <wpi/raw_istream.h>
|
|
|
|
#include "Log.h"
|
|
#include "networktables/NetworkTableValue.h"
|
|
|
|
namespace nt {
|
|
|
|
/* Decodes network data into native representation.
|
|
* This class is designed to read from a raw_istream, which provides a blocking
|
|
* read interface. There are no provisions in this class for resuming a read
|
|
* that was interrupted partway. Read functions return false if
|
|
* raw_istream.read() returned false (indicating the end of the input data
|
|
* stream).
|
|
*/
|
|
class WireDecoder {
|
|
public:
|
|
WireDecoder(wpi::raw_istream& is, unsigned int proto_rev,
|
|
wpi::Logger& logger);
|
|
~WireDecoder();
|
|
|
|
void set_proto_rev(unsigned int proto_rev) { m_proto_rev = proto_rev; }
|
|
|
|
/* Get the active protocol revision. */
|
|
unsigned int proto_rev() const { return m_proto_rev; }
|
|
|
|
/* Get the logger. */
|
|
wpi::Logger& logger() const { return m_logger; }
|
|
|
|
/* Clears error indicator. */
|
|
void Reset() { m_error = nullptr; }
|
|
|
|
/* Returns error indicator (a string describing the error). Returns nullptr
|
|
* if no error has occurred.
|
|
*/
|
|
const char* error() const { return m_error; }
|
|
|
|
void set_error(const char* error) { m_error = error; }
|
|
|
|
/* Reads the specified number of bytes.
|
|
* @param buf pointer to read data (output parameter)
|
|
* @param len number of bytes to read
|
|
* Caution: the buffer is only temporarily valid.
|
|
*/
|
|
bool Read(const char** buf, size_t len) {
|
|
if (len > m_allocated) {
|
|
Realloc(len);
|
|
}
|
|
*buf = m_buf;
|
|
m_is.read(m_buf, len);
|
|
#if 0
|
|
if (m_logger.min_level() <= NT_LOG_DEBUG4 && m_logger.HasLogger()) {
|
|
std::ostringstream oss;
|
|
oss << "read " << len << " bytes:" << std::hex;
|
|
if (!rv) {
|
|
oss << "error";
|
|
} else {
|
|
for (size_t i = 0; i < len; ++i)
|
|
oss << ' ' << static_cast<unsigned int>((*buf)[i]);
|
|
}
|
|
m_logger.Log(NT_LOG_DEBUG4, __FILE__, __LINE__, oss.str().c_str());
|
|
}
|
|
#endif
|
|
return !m_is.has_error();
|
|
}
|
|
|
|
/* Reads a single byte. */
|
|
bool Read8(unsigned int* val) {
|
|
const char* buf;
|
|
if (!Read(&buf, 1)) {
|
|
return false;
|
|
}
|
|
*val = (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
return true;
|
|
}
|
|
|
|
/* Reads a 16-bit word. */
|
|
bool Read16(unsigned int* val) {
|
|
const char* buf;
|
|
if (!Read(&buf, 2)) {
|
|
return false;
|
|
}
|
|
unsigned int v = (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
++buf;
|
|
v <<= 8;
|
|
v |= (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
*val = v;
|
|
return true;
|
|
}
|
|
|
|
/* Reads a 32-bit word. */
|
|
bool Read32(uint32_t* val) {
|
|
const char* buf;
|
|
if (!Read(&buf, 4)) {
|
|
return false;
|
|
}
|
|
unsigned int v = (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
++buf;
|
|
v <<= 8;
|
|
v |= (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
++buf;
|
|
v <<= 8;
|
|
v |= (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
++buf;
|
|
v <<= 8;
|
|
v |= (*reinterpret_cast<const unsigned char*>(buf)) & 0xff;
|
|
*val = v;
|
|
return true;
|
|
}
|
|
|
|
/* Reads a double. */
|
|
bool ReadDouble(double* val);
|
|
|
|
/* Reads an ULEB128-encoded unsigned integer. */
|
|
bool ReadUleb128(uint64_t* val) { return wpi::ReadUleb128(m_is, val); }
|
|
|
|
bool ReadType(NT_Type* type);
|
|
bool ReadString(std::string* str);
|
|
std::shared_ptr<Value> ReadValue(NT_Type type);
|
|
|
|
WireDecoder(const WireDecoder&) = delete;
|
|
WireDecoder& operator=(const WireDecoder&) = delete;
|
|
|
|
protected:
|
|
/* The protocol revision. E.g. 0x0200 for version 2.0. */
|
|
unsigned int m_proto_rev;
|
|
|
|
/* Error indicator. */
|
|
const char* m_error;
|
|
|
|
private:
|
|
/* Reallocate temporary buffer to specified length. */
|
|
void Realloc(size_t len);
|
|
|
|
/* input stream */
|
|
wpi::raw_istream& m_is;
|
|
|
|
/* logger */
|
|
wpi::Logger& m_logger;
|
|
|
|
/* temporary buffer */
|
|
char* m_buf;
|
|
|
|
/* allocated size of temporary buffer */
|
|
size_t m_allocated;
|
|
};
|
|
|
|
} // namespace nt
|
|
|
|
#endif // NTCORE_WIREDECODER_H_
|