forked from openSUSE/libzypp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathByteArray.h
59 lines (50 loc) · 1.84 KB
/
ByteArray.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*---------------------------------------------------------------------\
| ____ _ __ __ ___ |
| |__ / \ / / . \ . \ |
| / / \ V /| _/ _/ |
| / /__ | | | | | | |
| /_____||_| |_| |_| |
| |
\---------------------------------------------------------------------*/
#ifndef ZYPP_BYTEARRAY_H
#define ZYPP_BYTEARRAY_H
#include <vector>
#include <cstring>
#include <string>
#include <string_view>
namespace zypp {
class ByteArray : public std::vector<char>
{
public:
using vector<char>::vector;
explicit ByteArray ( const std::string &data ) : ByteArray( data.c_str(), data.length() ) { }
explicit ByteArray ( const char *data, const int len = -1 ) : ByteArray( data, data + (len == -1 ? strlen(data) : len) ) { }
std::string asString () const {
if ( size() == 0 )
return std::string();
return std::string( data(), size() );
}
#ifdef __cpp_lib_string_view
std::string_view asStringView () const {
if ( size() == 0 )
return std::string_view();
return std::string_view( data(), size() );
}
#endif
static std::size_t maxSize () {
static const auto size = ByteArray().max_size();
return size;
}
};
class UByteArray : public std::vector<unsigned char>
{
public:
using vector<unsigned char>::vector;
explicit UByteArray ( const char *data, const int len = -1 ) : UByteArray( data, data + (len == -1 ? strlen(data) : len) ) { }
static std::size_t maxSize () {
static const auto size = UByteArray().max_size();
return size;
}
};
}
#endif