blob: a1b76d484cb19d682ddc59c1971a0ae7e54148ed [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
Darin Petkove3e1cfa2011-08-11 13:41:17 -070051 bool IsEmpty() const { return GetLength() == 0; }
Paul Stewartf7bf9bf2012-04-17 17:30:14 -070052
53 // Returns true if every element of |this| is zero, false otherwise.
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070054 bool IsZero() const;
Paul Stewartf7bf9bf2012-04-17 17:30:14 -070055
56 // Perform an AND operation between each element of |this| with the
57 // corresponding byte of |b|. Returns true if both |this| and |b|
58 // are the same length, and as such the operation succeeds; false
Paul Stewartfe1c0e12012-04-30 19:57:04 -070059 // if they are not. The result of the operation is stored in |this|.
60 bool BitwiseAnd(const ByteString &b);
61
62 // Perform an OR operation between each element of |this| with the
63 // corresponding byte of |b|. Returns true if both |this| and |b|
64 // are the same length, and as such the operation succeeds; false
65 // if they are not. The result of the operation is stored in |this|.
66 bool BitwiseOr(const ByteString &b);
67
68 // Perform an inversion operation on each of the bits this string.
69 void BitwiseInvert();
Paul Stewartf7bf9bf2012-04-17 17:30:14 -070070
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070071 bool Equals(const ByteString &b) const;
Paul Stewartdd7df792011-07-15 11:09:50 -070072 void Append(const ByteString &b);
Paul Stewartf65320c2011-10-13 14:34:52 -070073 void Clear() { data_.clear(); }
Paul Stewartdd7df792011-07-15 11:09:50 -070074 void Resize(int size) {
75 data_.resize(size, 0);
76 }
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070077
Darin Petkove3e1cfa2011-08-11 13:41:17 -070078 std::string HexEncode() const;
79
Paul Stewart3ecfa2b2011-07-15 10:47:42 -070080 private:
81 std::vector<unsigned char> data_;
82 // NO DISALLOW_COPY_AND_ASSIGN -- we assign ByteStrings in STL hashes
83};
84
85} // namespace shill
86
87
88#endif // SHILL_BYTE_STRING_