blob: 0077ff05bff994acd9af33b04882e75eb3485e7f [file] [log] [blame]
Paul Stewart3ecfa2b2011-07-15 10:47:42 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_BYTE_STRING_
6#define SHILL_BYTE_STRING_
7
Paul Stewartdd7df792011-07-15 11:09:50 -07008#include <string>
Paul Stewart3ecfa2b2011-07-15 10:47:42 -07009#include <vector>
10
11#include <base/basictypes.h>
12
13namespace shill {
14
15// Provides a holder of a string of bytes
16class ByteString {
17 public:
Paul Stewart1d18e8c2011-07-15 11:00:31 -070018 ByteString() {}
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070019 ByteString(const ByteString &b) : data_(b.data_) {}
20 explicit ByteString(size_t length) : data_(length) {}
21 ByteString(const unsigned char *data, size_t length)
22 : data_(data, data + length) {}
Paul Stewartdd7df792011-07-15 11:09:50 -070023 ByteString(const std::string &data, bool copy_terminator)
24 : data_(reinterpret_cast<const unsigned char *>(data.c_str()),
25 reinterpret_cast<const unsigned char *>(data.c_str() +
26 data.length() +
27 (copy_terminator ?
28 1 : 0))) {}
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070029
30 ByteString &operator=(const ByteString &b) {
31 data_ = b.data_;
32 return *this;
33 }
34
35 // Inserts a uint32 into a ByteString in cpu-order
36 static ByteString CreateFromCPUUInt32(uint32 val);
37 // Inserts a uint32 into a ByteString in network-order
38 static ByteString CreateFromNetUInt32(uint32 val);
39
40 unsigned char *GetData() { return data_.data(); }
41 const unsigned char *GetConstData() const { return data_.data(); }
42 size_t GetLength() const { return data_.size(); }
43
44 // Converts to a uint32 from a host-order value stored in the ByteString
45 // Returns true on success
46 bool ConvertToCPUUInt32(uint32 *val) const;
47 // Converts to a uint32 from a network-order value stored in the ByteString
48 // Returns true on success
49 bool ConvertToNetUInt32(uint32 *val) const;
50
51 bool IsZero() const;
52 bool Equals(const ByteString &b) const;
Paul Stewartdd7df792011-07-15 11:09:50 -070053 void Append(const ByteString &b);
54 void Resize(int size) {
55 data_.resize(size, 0);
56 }
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070057
58 private:
59 std::vector<unsigned char> data_;
60 // NO DISALLOW_COPY_AND_ASSIGN -- we assign ByteStrings in STL hashes
61};
62
63} // namespace shill
64
65
66#endif // SHILL_BYTE_STRING_