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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* Drizzle
* Copyright (C) 2011 Olaf van der Spek
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <cstddef>
#include <cstring>
#include <ostream>
#include <string>
template <class T>
class data_ref_basic
{
public:
data_ref_basic()
{
clear();
}
template <class U>
data_ref_basic(const U& c)
{
if (c.begin() == c.end())
clear();
else
assign(&*c.begin(), &*c.end());
}
data_ref_basic(const void* b, const void* e)
{
assign(b, e);
}
data_ref_basic(const void* b, size_t sz)
{
assign(b, sz);
}
explicit data_ref_basic(const char* b)
{
assign(b, strlen(b));
}
void clear()
{
begin_ = NULL;
end_ = NULL;
}
void assign(const void* b, const void* e)
{
begin_ = reinterpret_cast<T>(b);
end_ = reinterpret_cast<T>(e);
}
void assign(const void* b, size_t sz)
{
begin_ = reinterpret_cast<T>(b);
end_ = begin_ + sz;
}
T begin() const
{
return begin_;
}
T end() const
{
return end_;
}
T data() const
{
return begin();
}
size_t size() const
{
return end() - begin();
}
bool empty() const
{
return begin() == end();
}
private:
T begin_;
T end_;
};
typedef data_ref_basic<const unsigned char*> data_ref;
typedef data_ref_basic<const char*> str_ref;
inline std::ostream& operator<<(std::ostream& os, str_ref v)
{
return os.write(v.data(), v.size());
}
inline std::string to_string(str_ref v)
{
return std::string(v.data(), v.size());
}
|