2005-09-20 13:26:39 +00:00
|
|
|
/** \file intern.c
|
|
|
|
|
|
|
|
Library for pooling common strings
|
|
|
|
|
|
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
|
2006-02-28 13:17:16 +00:00
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <wchar.h>
|
2005-09-28 21:02:24 +00:00
|
|
|
#include <unistd.h>
|
2012-01-24 04:02:15 +00:00
|
|
|
#include <set>
|
2012-03-03 23:20:30 +00:00
|
|
|
#include <algorithm>
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-02-28 13:17:16 +00:00
|
|
|
#include "fallback.h"
|
2005-09-20 13:26:39 +00:00
|
|
|
#include "util.h"
|
2006-02-28 13:17:16 +00:00
|
|
|
|
2006-01-20 14:27:21 +00:00
|
|
|
#include "wutil.h"
|
2005-09-20 13:26:39 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "intern.h"
|
|
|
|
|
2012-01-24 04:02:15 +00:00
|
|
|
/** Comparison function for intern'd strings */
|
2012-11-19 00:30:30 +00:00
|
|
|
class string_table_compare_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool operator()(const wchar_t *a, const wchar_t *b) const
|
|
|
|
{
|
2012-03-03 23:20:30 +00:00
|
|
|
return wcscmp(a, b) < 0;
|
|
|
|
}
|
|
|
|
};
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-07-17 19:47:01 +00:00
|
|
|
/* A sorted vector ends up being a little more memory efficient than a std::set for the intern'd string table */
|
2012-03-03 23:20:30 +00:00
|
|
|
#define USE_SET 0
|
|
|
|
#if USE_SET
|
2012-01-24 04:02:15 +00:00
|
|
|
/** The table of intern'd strings */
|
2012-03-03 23:20:30 +00:00
|
|
|
typedef std::set<const wchar_t *, string_table_compare_t> string_table_t;
|
|
|
|
#else
|
|
|
|
/** The table of intern'd strings */
|
2012-07-17 19:47:01 +00:00
|
|
|
typedef std::vector<const wchar_t *> string_table_t;
|
2012-03-03 23:20:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static string_table_t string_table;
|
2006-11-11 10:54:52 +00:00
|
|
|
|
2012-01-24 04:02:15 +00:00
|
|
|
/** The lock to provide thread safety for intern'd strings */
|
|
|
|
static pthread_mutex_t intern_lock = PTHREAD_MUTEX_INITIALIZER;
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
static const wchar_t *intern_with_dup(const wchar_t *in, bool dup)
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
2012-11-19 00:30:30 +00:00
|
|
|
if (!in)
|
|
|
|
return NULL;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
|
|
|
// debug( 0, L"intern %ls", in );
|
2012-01-24 04:02:15 +00:00
|
|
|
scoped_lock lock(intern_lock);
|
|
|
|
const wchar_t *result;
|
2012-11-18 10:23:22 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
#if USE_SET
|
2012-01-24 04:02:15 +00:00
|
|
|
string_table_t::const_iterator iter = string_table.find(in);
|
2012-11-19 00:30:30 +00:00
|
|
|
if (iter != string_table.end())
|
|
|
|
{
|
2012-11-18 10:23:22 +00:00
|
|
|
result = *iter;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-24 04:02:15 +00:00
|
|
|
result = dup ? wcsdup(in) : in;
|
|
|
|
string_table.insert(result);
|
|
|
|
}
|
2012-03-03 23:20:30 +00:00
|
|
|
#else
|
|
|
|
string_table_t::iterator iter = std::lower_bound(string_table.begin(), string_table.end(), in, string_table_compare_t());
|
2012-11-19 00:30:30 +00:00
|
|
|
if (iter != string_table.end() && wcscmp(*iter, in) == 0)
|
|
|
|
{
|
2012-03-03 23:20:30 +00:00
|
|
|
result = *iter;
|
2012-11-19 00:30:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-03-03 23:20:30 +00:00
|
|
|
result = dup ? wcsdup(in) : in;
|
|
|
|
string_table.insert(iter, result);
|
|
|
|
}
|
|
|
|
#endif
|
2012-01-24 04:02:15 +00:00
|
|
|
return result;
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
const wchar_t *intern(const wchar_t *in)
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
2012-11-19 00:30:30 +00:00
|
|
|
return intern_with_dup(in, true);
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-19 00:30:30 +00:00
|
|
|
const wchar_t *intern_static(const wchar_t *in)
|
2012-01-24 04:02:15 +00:00
|
|
|
{
|
2012-11-19 00:30:30 +00:00
|
|
|
return intern_with_dup(in, false);
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|