aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2018-07-09 14:42:01 -0400
committerDeterminant <ted.sybil@gmail.com>2018-07-09 14:42:01 -0400
commit97956c08e679299e9900e7ea1f3b42607f2f51c6 (patch)
treee2e8997bd162a0d96d29a104947115730cc31193
parent4d2e7a23ebff97c9208f538ecf7d2218aa046130 (diff)
...
-rw-r--r--include/salticidae/stream.h46
1 files changed, 42 insertions, 4 deletions
diff --git a/include/salticidae/stream.h b/include/salticidae/stream.h
index fdbf967..ffffbe2 100644
--- a/include/salticidae/stream.h
+++ b/include/salticidae/stream.h
@@ -148,8 +148,8 @@ class DataStream {
return std::string(s.buffer.begin(), s.buffer.end());
}
- void load_hex(const std::string &hexstr) {
- size_t len = hexstr.size();
+ void load_hex(const std::string &hex_str) {
+ size_t len = hex_str.size();
const char *p;
uint8_t *bp;
unsigned int tmp;
@@ -157,8 +157,8 @@ class DataStream {
throw std::invalid_argument("not a valid hex string");
buffer.resize(len >> 1);
offset = 0;
- for (p = hexstr.data(), bp = &*buffer.begin();
- p < hexstr.data() + len; p += 2, bp++)
+ for (p = hex_str.data(), bp = &*buffer.begin();
+ p < hex_str.data() + len; p += 2, bp++)
{
if (sscanf(p, "%02x", &tmp) != 1)
throw std::invalid_argument("not a valid hex string");
@@ -278,6 +278,44 @@ template<typename T> inline std::string get_hex(const T &x) {
return s.get_hex();
}
+inline bytearray_t from_hex(const std::string &hex_str) {
+ DataStream s;
+ s.load_hex(hex_str);
+ return std::move(s);
+}
+
+class Serializable {
+ public:
+ virtual ~Serializable() = default;
+ virtual void serialize(DataStream &s) const = 0;
+ virtual void unserialize(DataStream &s) = 0;
+
+ virtual void from_bytes(const bytearray_t &raw_bytes) {
+ DataStream s(raw_bytes);
+ s >> *this;
+ }
+
+ virtual void from_bytes(bytearray_t &&raw_bytes) {
+ DataStream s(std::move(raw_bytes));
+ s >> *this;
+ }
+
+
+ virtual void from_hex(const std::string &hex_str) {
+ DataStream s;
+ s.load_hex(hex_str);
+ s >> *this;
+ }
+
+ bytearray_t to_bytes() const {
+ DataStream s;
+ s << *this;
+ return std::move(s);
+ }
+
+ std::string to_hex() const { return get_hex(*this); }
+};
+
}
namespace std {