-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathstring_type.h
86 lines (68 loc) · 2.59 KB
/
string_type.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
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
/* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
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; version 2 of the License.
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, write to the Free Software Foundation,
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */
#ifndef DD__STRING_TYPE
#define DD__STRING_TYPE
#include <sstream>
#include <string>
#include "stateless_allocator.h" // Stateless_allocator
namespace dd {
/**
Functor class which allocates memory for String_type. Implementation
uses my_malloc with key_memory_DD_String_type.
*/
struct String_type_alloc
{
void *operator()(size_t s) const;
};
typedef Stateless_allocator<char, String_type_alloc> String_type_allocator;
/**
Template alias for char-based std::basic_string.
*/
template <class A>
using Char_string_template= std::basic_string<char, std::char_traits<char>, A>;
typedef Char_string_template<String_type_allocator> String_type;
/**
Template alias for char-based std::basic_stringstream.
*/
template <class A>
using Char_stringstream_template=
std::basic_stringstream<char, std::char_traits<char>, A>;
/**
Instantiation of std::basic_stringstream with the same allocator as
String_type. This is needed since a std::basic_stringstream::str()
returns a basic_string allocated with its own allocator. Note that
this also means that it is diffcult to use a different PSI key for
the stream memory as that would mean the return type of
Stringstream_type::str() would be different and incompatible with
String_type.
To work around this would require the creation of a temporary
String_type from the string returned from stringstream::str().
*/
typedef Char_stringstream_template<String_type_allocator>
Stringstream_type;
}
namespace std {
/**
Specialize std::hash for dd::String_type so that it can be
used with unordered_ containers. Uses our standard murmur3_32
implementation, and the same suitability restrictions apply.
@see murmur3_32
*/
template <>
struct hash<dd::String_type>
{
typedef dd::String_type argument_type;
typedef size_t result_type;
size_t operator()(const dd::String_type &s) const;
};
}
#endif /* DD__STRING_TYPE */