So I have a nice persistent allocator class persistent_alloc<T> that allows me to allocate C++ container objects and strings in persistent memory which is backed by an mmaped file that can persist from one run of my program to the next.
My problem comes when I want to do anything that mixes persistent and non persistent objects. For example, I have
typedef std::basic_string<char, std::char_traits<char>, persistent_alloc<char>> pstring;
pstring a, b, c;
std::string x, y, z;
I want to be able to do things like:
if (a == x)
a = y;
c = z + b;
and so forth, but by default it does not work, as pstring and std::string are unrelated types. Now as far as the comparison is concerned, I can define:
template<typename Alloc1, typename Alloc2> inline bool
operator==(const std::basic_string<char, std::char_traits<char>, Alloc1> &a,
const std::basic_string<char, std::char_traits<char>, Alloc2> &b)
{
return strcmp(a.c_str(), b.c_str()) == 0;
}
...and now I can compare strings for equality. But adding these for every operation seems like a pain -- it seems like they SHOULD be provided by the standard library. Worse, assignment operators and copy constructors must be members and can't be defined as global inline functions like this.
Is there a reasonable way of doing this? Or do I have to effectively rewrite the entire standard library to support allocators usefully?
std::is_trivially_copyable<T>::value == true, unless you restore the persistent memory at the exact same absolute location or something like that. – Kerrek SB May 10 '12 at 19:45