neoGFX
Cross-platform C++ app/game engine
Loading...
Searching...
No Matches
binary_data_packet.hpp
Go to the documentation of this file.
1// binary_data_packet.hpp
2/*
3 * Copyright (c) 2007 Leigh Johnston.
4 *
5 * All rights reserved.
6 *
7 * Redistribution and use in source and data forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * * Redistributions in data form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * * Neither the name of Leigh Johnston nor the names of any
19 * other contributors to this software may be used to endorse or
20 * promote products derived from this software without specific prior
21 * written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
24 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
27 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34*/
35
36#pragma once
37
38#include <neolib/neolib.hpp>
39
41
42namespace neolib
43{
45 {
46 public:
47 static const bool NetworkByteOrder = true;
48 };
49
50 template <typename CharType, typename PacketTraits = DefaultPacketTraits>
52 {
54 // types
55 public:
64 // interface
65 public:
66 virtual void encode(uint64_t aValue, std::size_t aLength)
67 {
68 uint8_t buffer[8];
69 for (std::size_t i = 0; i < aLength; ++i)
70 {
71 buffer[PacketTraits::NetworkByteOrder ? aLength - 1 - i : i] = result & 0xFF;
72 result >>= 8;
73 }
74 write(&buffer[0], aLength);
75 }
76 virtual void encode(bool aValue)
77 {
78 encode(static_cast<uint8_t>(aValue));
79 }
80 virtual void encode(const string_type& aValue)
81 {
82 encode(static_cast<uint32_t>(aValue.size()));
83 write(&aValue[0], aValue.size());
84 }
85 virtual uint64_t decode_integer(std::size_t aLength) const
86 {
87 uint8_t buffer[8];
88 read(&buffer[0], aLength);
89 uint64_t result = 0;
90 for (std::size_t i = 0; i < aLength; ++i)
91 {
92 result <<= 8;
93 result += buffer[PacketTraits::NetworkByteOrder ? i : aLength - 1 - i];
94 }
95 return result;
96 }
97 virtual bool decode_bool() const
98 {
99 return static_cast<bool>(decode<uint8_t>());
100 }
102 {
103 uint32_t length = decode<uint32_t>();
104 string_type result(length);
105 read(&result[0], length);
106 }
107 // implementation
108 private:
109 virtual void write(const void* aData, std::size_t aLength) = 0;
110 virtual void read(void* aData, std::size_t aLength) const = 0;
111 };
112
114}
base_type::const_pointer const_pointer
base_type::const_iterator const_iterator
basic_binary_data_packet< CharType, PacketTraits > our_type
base_type::character_type character_type
virtual string_type decode_string() const
virtual uint64_t decode_integer(std::size_t aLength) const
virtual void encode(uint64_t aValue, std::size_t aLength)
virtual void encode(const string_type &aValue)
base_type::character_type character_type
base_type::size_type size_type
base_type::pointer pointer
base_type::iterator iterator
std::basic_string< CharType > string_type
base_type::const_pointer const_pointer
base_type::const_iterator const_iterator
virtual size_type length() const =0
basic_binary_data_packet< char > binary_data_packet