2011-12-12 10:05:35 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
2011-12-19 02:00:40 +00:00
|
|
|
|
#include <malloc.h>
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
2011-12-19 02:00:40 +00:00
|
|
|
|
#include <map> /// pair
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
|
|
|
|
|
|
#include <Yandex/optimization.h>
|
|
|
|
|
|
2011-12-19 04:26:27 +00:00
|
|
|
|
#include <DB/Core/Types.h>
|
|
|
|
|
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Очень простая хэш-таблица. Предназначена для быстрой агрегации. Есть только необходимый минимум возможностей.
|
2011-12-19 02:00:40 +00:00
|
|
|
|
* Требования:
|
|
|
|
|
* - Key и Mapped - position independent типы (для перемещения значений которых достаточно сделать memcpy).
|
|
|
|
|
*
|
|
|
|
|
* Желательно, чтобы Key был числом, или маленьким агрегатом (типа UInt128).
|
|
|
|
|
*
|
2011-12-12 10:05:35 +00:00
|
|
|
|
* Сценарий работы:
|
|
|
|
|
* - вставлять в хэш-таблицу значения;
|
|
|
|
|
* - проитерироваться по имеющимся в ней значениям.
|
|
|
|
|
*
|
|
|
|
|
* Open addressing.
|
2011-12-19 07:00:15 +00:00
|
|
|
|
* Linear probing (подходит, если хэш функция хорошая!).
|
2011-12-12 10:05:35 +00:00
|
|
|
|
* Значение с нулевым ключём хранится отдельно.
|
|
|
|
|
* Удаления элементов нет.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2011-12-19 07:00:15 +00:00
|
|
|
|
/** Хэш функции, которые лучше чем тривиальная функция std::tr1::hash.
|
2011-12-19 07:14:00 +00:00
|
|
|
|
* (при агрегации по идентификатору посетителя, прирост производительности более чем в 5 раз)
|
2011-12-19 07:00:15 +00:00
|
|
|
|
*/
|
|
|
|
|
template <typename T> struct default_hash;
|
|
|
|
|
|
|
|
|
|
template <> struct default_hash<UInt64>
|
|
|
|
|
{
|
|
|
|
|
size_t operator() (UInt64 key) const
|
|
|
|
|
{
|
|
|
|
|
key = (~key) + (key << 18);
|
|
|
|
|
key = key ^ ((key >> 31) | (key << 33));
|
|
|
|
|
key = key * 21;
|
|
|
|
|
key = key ^ ((key >> 11) | (key << 53));
|
|
|
|
|
key = key + (key << 6);
|
|
|
|
|
key = key ^ ((key >> 22) | (key << 42));
|
|
|
|
|
return key;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-12-19 02:00:40 +00:00
|
|
|
|
/** Способ проверить, что ключ нулевой,
|
|
|
|
|
* а также способ установить значение ключа в ноль.
|
|
|
|
|
*/
|
|
|
|
|
template <typename T> struct default_zero_traits
|
2011-12-12 10:05:35 +00:00
|
|
|
|
{
|
|
|
|
|
static inline bool check(T x) { return 0 == x; }
|
|
|
|
|
static inline void set(T & x) { x = 0; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template
|
|
|
|
|
<
|
|
|
|
|
typename Key,
|
|
|
|
|
typename Mapped,
|
2011-12-19 07:00:15 +00:00
|
|
|
|
typename Hash = default_hash<Key>,
|
2011-12-19 02:00:40 +00:00
|
|
|
|
typename ZeroTraits = default_zero_traits<Key>,
|
|
|
|
|
int INITIAL_SIZE_DEGREE = 16, /** Изначально выделить кусок памяти для 64K элементов.
|
|
|
|
|
* Уменьшите значение для лучшей кэш-локальности в случае маленького количества уникальных ключей.
|
|
|
|
|
*/
|
|
|
|
|
int GROWTH_DEGREE = 2 /// Рост буфера в 4 раза.
|
2011-12-12 10:05:35 +00:00
|
|
|
|
>
|
|
|
|
|
class HashMap : private boost::noncopyable
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
friend class const_iterator;
|
|
|
|
|
friend class iterator;
|
|
|
|
|
|
2011-12-19 02:00:40 +00:00
|
|
|
|
typedef std::pair<Key, Mapped> Value; /// Без const Key для простоты.
|
2011-12-12 10:05:35 +00:00
|
|
|
|
typedef size_t HashValue;
|
|
|
|
|
typedef HashMap<Key, Mapped, Hash, ZeroTraits, INITIAL_SIZE_DEGREE, GROWTH_DEGREE> Self;
|
|
|
|
|
|
|
|
|
|
size_t m_size; /// Количество элементов
|
|
|
|
|
UInt8 size_degree; /// Размер таблицы в виде степени двух
|
|
|
|
|
bool has_zero; /// Хэш-таблица содержит элемент со значением ключа = 0.
|
2011-12-19 04:26:27 +00:00
|
|
|
|
Value * buf; /// Кусок памяти для всех элементов кроме элемента с ключём 0.
|
|
|
|
|
char zero_value_storage[sizeof(Value)]; /// Кусок памяти для элемента с ключём 0.
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
Hash hash;
|
|
|
|
|
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
mutable size_t collisions;
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
inline size_t buf_size() const { return 1 << size_degree; }
|
|
|
|
|
inline size_t max_fill() const { return 1 << (size_degree - 1); }
|
|
|
|
|
inline size_t mask() const { return buf_size() - 1; }
|
|
|
|
|
inline size_t place(HashValue x) const { return x & mask(); }
|
|
|
|
|
|
2011-12-19 04:26:27 +00:00
|
|
|
|
inline Value * zero_value() { return reinterpret_cast<Value*>(zero_value_storage); }
|
|
|
|
|
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
/// Увеличить размер буфера в 2 ^ GROWTH_DEGREE раз
|
|
|
|
|
void resize()
|
|
|
|
|
{
|
|
|
|
|
size_t old_size = buf_size();
|
|
|
|
|
|
|
|
|
|
size_degree += GROWTH_DEGREE;
|
2011-12-19 02:00:40 +00:00
|
|
|
|
Value * new_buf = reinterpret_cast<Value*>(calloc(buf_size(), sizeof(Value)));
|
2011-12-12 10:05:35 +00:00
|
|
|
|
Value * old_buf = buf;
|
|
|
|
|
buf = new_buf;
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < old_size; ++i)
|
|
|
|
|
if (!ZeroTraits::check(old_buf[i].first))
|
|
|
|
|
reinsert(old_buf[i]);
|
|
|
|
|
|
2011-12-19 02:00:40 +00:00
|
|
|
|
free(reinterpret_cast<void*>(old_buf));
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Вставить в новый буфер значение, которое было в старом буфере.
|
|
|
|
|
* Используется при увеличении размера буфера.
|
|
|
|
|
*/
|
|
|
|
|
void reinsert(const Value & x)
|
|
|
|
|
{
|
|
|
|
|
size_t place_value = place(hash(x.first));
|
|
|
|
|
while (!ZeroTraits::check(buf[place_value].first))
|
|
|
|
|
{
|
2011-12-19 07:00:15 +00:00
|
|
|
|
++place_value;
|
2011-12-12 10:05:35 +00:00
|
|
|
|
place_value &= mask();
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
++collisions;
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
2011-12-19 02:00:40 +00:00
|
|
|
|
memcpy(&buf[place_value], &x, sizeof(x));
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
2011-12-19 02:00:40 +00:00
|
|
|
|
typedef Key key_type;
|
|
|
|
|
typedef Mapped mapped_type;
|
|
|
|
|
typedef Value value_type;
|
|
|
|
|
|
|
|
|
|
|
2011-12-12 10:05:35 +00:00
|
|
|
|
HashMap() :
|
|
|
|
|
m_size(0),
|
|
|
|
|
size_degree(INITIAL_SIZE_DEGREE),
|
|
|
|
|
has_zero(false)
|
|
|
|
|
{
|
2011-12-19 04:26:27 +00:00
|
|
|
|
ZeroTraits::set(zero_value()->first);
|
2011-12-19 02:00:40 +00:00
|
|
|
|
buf = reinterpret_cast<Value*>(calloc(buf_size(), sizeof(Value)));
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
collisions = 0;
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~HashMap()
|
|
|
|
|
{
|
2011-12-19 02:00:40 +00:00
|
|
|
|
for (iterator it = begin(); it != end(); ++it)
|
|
|
|
|
it->~Value();
|
|
|
|
|
free(reinterpret_cast<void*>(buf));
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class iterator
|
|
|
|
|
{
|
|
|
|
|
Self * container;
|
|
|
|
|
Value * ptr;
|
|
|
|
|
|
|
|
|
|
friend class HashMap;
|
|
|
|
|
|
|
|
|
|
iterator(Self * container_, Value * ptr_) : container(container_), ptr(ptr_) {}
|
|
|
|
|
|
|
|
|
|
public:
|
2011-12-19 02:00:40 +00:00
|
|
|
|
iterator() {}
|
|
|
|
|
|
2011-12-12 10:05:35 +00:00
|
|
|
|
bool operator== (const iterator & rhs) const { return ptr == rhs.ptr; }
|
|
|
|
|
bool operator!= (const iterator & rhs) const { return ptr != rhs.ptr; }
|
|
|
|
|
|
|
|
|
|
iterator & operator++()
|
|
|
|
|
{
|
2011-12-19 02:00:40 +00:00
|
|
|
|
if (unlikely(ZeroTraits::check(ptr->first)))
|
2011-12-12 10:05:35 +00:00
|
|
|
|
ptr = container->buf;
|
|
|
|
|
else
|
|
|
|
|
++ptr;
|
|
|
|
|
|
2012-03-05 06:04:18 +00:00
|
|
|
|
while (ptr < container->buf + container->buf_size() && ZeroTraits::check(ptr->first))
|
2011-12-12 10:05:35 +00:00
|
|
|
|
++ptr;
|
|
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Value & operator* () const { return *ptr; }
|
|
|
|
|
Value * operator->() const { return ptr; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class const_iterator
|
|
|
|
|
{
|
|
|
|
|
const Self * container;
|
|
|
|
|
const Value * ptr;
|
|
|
|
|
|
|
|
|
|
friend class HashMap;
|
|
|
|
|
|
2012-08-23 22:27:10 +00:00
|
|
|
|
const_iterator(const Self * container_, const Value * ptr_) : container(container_), ptr(ptr_) {}
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
public:
|
2011-12-19 02:00:40 +00:00
|
|
|
|
const_iterator() {}
|
2011-12-12 10:05:35 +00:00
|
|
|
|
const_iterator(const iterator & rhs) : container(rhs.container), ptr(rhs.ptr) {}
|
|
|
|
|
|
|
|
|
|
bool operator== (const const_iterator & rhs) const { return ptr == rhs.ptr; }
|
|
|
|
|
bool operator!= (const const_iterator & rhs) const { return ptr != rhs.ptr; }
|
|
|
|
|
|
|
|
|
|
const_iterator & operator++()
|
|
|
|
|
{
|
|
|
|
|
if (unlikely(ZeroTraits::check(ptr->first)))
|
|
|
|
|
ptr = container->buf;
|
|
|
|
|
else
|
|
|
|
|
++ptr;
|
|
|
|
|
|
2012-03-05 06:04:18 +00:00
|
|
|
|
while (ptr < container->buf + container->buf_size() && ZeroTraits::check(ptr->first))
|
2011-12-12 10:05:35 +00:00
|
|
|
|
++ptr;
|
|
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Value & operator* () const { return *ptr; }
|
|
|
|
|
const Value * operator->() const { return ptr; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const_iterator begin() const
|
|
|
|
|
{
|
|
|
|
|
if (has_zero)
|
2011-12-19 04:26:27 +00:00
|
|
|
|
return const_iterator(this, zero_value());
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
const Value * ptr = buf;
|
2012-03-05 06:04:18 +00:00
|
|
|
|
while (ptr < buf + buf_size() && ZeroTraits::check(ptr->first))
|
2011-12-12 10:05:35 +00:00
|
|
|
|
++ptr;
|
|
|
|
|
|
|
|
|
|
return const_iterator(this, ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iterator begin()
|
|
|
|
|
{
|
|
|
|
|
if (has_zero)
|
2011-12-19 04:26:27 +00:00
|
|
|
|
return iterator(this, zero_value());
|
2011-12-12 10:05:35 +00:00
|
|
|
|
|
|
|
|
|
Value * ptr = buf;
|
2012-03-05 06:04:18 +00:00
|
|
|
|
while (ptr < buf + buf_size() && ZeroTraits::check(ptr->first))
|
2011-12-12 10:05:35 +00:00
|
|
|
|
++ptr;
|
|
|
|
|
|
|
|
|
|
return iterator(this, ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const_iterator end() const { return const_iterator(this, buf + buf_size()); }
|
|
|
|
|
iterator end() { return iterator(this, buf + buf_size()); }
|
|
|
|
|
|
|
|
|
|
|
2011-12-19 02:00:40 +00:00
|
|
|
|
/// Вставить значение. В случае хоть сколько-нибудь сложных значений, лучше используйте функцию emplace.
|
2011-12-12 10:05:35 +00:00
|
|
|
|
std::pair<iterator, bool> insert(const Value & x)
|
|
|
|
|
{
|
|
|
|
|
if (ZeroTraits::check(x.first))
|
|
|
|
|
{
|
|
|
|
|
if (!has_zero)
|
|
|
|
|
{
|
|
|
|
|
++m_size;
|
|
|
|
|
has_zero = true;
|
2011-12-19 04:26:27 +00:00
|
|
|
|
zero_value()->second = x.second;
|
2011-12-12 10:05:35 +00:00
|
|
|
|
return std::make_pair(begin(), true);
|
|
|
|
|
}
|
|
|
|
|
return std::make_pair(begin(), false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t place_value = place(hash(x.first));
|
|
|
|
|
while (!ZeroTraits::check(buf[place_value].first) && buf[place_value].first != x.first)
|
|
|
|
|
{
|
2011-12-19 07:00:15 +00:00
|
|
|
|
++place_value;
|
2011-12-12 10:05:35 +00:00
|
|
|
|
place_value &= mask();
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
++collisions;
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iterator res(this, &buf[place_value]);
|
|
|
|
|
|
2011-12-19 04:26:27 +00:00
|
|
|
|
if (!ZeroTraits::check(buf[place_value].first) && buf[place_value].first == x.first)
|
2011-12-12 10:05:35 +00:00
|
|
|
|
return std::make_pair(res, false);
|
|
|
|
|
|
|
|
|
|
buf[place_value] = x;
|
|
|
|
|
++m_size;
|
|
|
|
|
|
|
|
|
|
if (unlikely(m_size > max_fill()))
|
|
|
|
|
{
|
|
|
|
|
resize();
|
|
|
|
|
return std::make_pair(find(x.first), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return std::make_pair(res, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-12-19 02:00:40 +00:00
|
|
|
|
/** Вставить ключ,
|
|
|
|
|
* вернуть итератор на позицию, которую можно использовать для placement new значения,
|
|
|
|
|
* а также флаг - был ли вставлен новый ключ.
|
|
|
|
|
*
|
2011-12-19 04:26:27 +00:00
|
|
|
|
* Вы обязаны сделать placement new значения, если был вставлен новый ключ,
|
|
|
|
|
* так как при уничтожении хэш-таблицы для него будет вызываться деструктор!
|
|
|
|
|
*
|
2011-12-19 02:00:40 +00:00
|
|
|
|
* Пример использования:
|
|
|
|
|
*
|
|
|
|
|
* Map::iterator it;
|
|
|
|
|
* bool inserted;
|
|
|
|
|
* map.emplace(key, it, inserted);
|
|
|
|
|
* if (inserted)
|
|
|
|
|
* new(&it->second) Value(value);
|
|
|
|
|
*/
|
|
|
|
|
void emplace(Key x, iterator & it, bool & inserted)
|
|
|
|
|
{
|
|
|
|
|
if (ZeroTraits::check(x))
|
|
|
|
|
{
|
|
|
|
|
if (!has_zero)
|
|
|
|
|
{
|
|
|
|
|
++m_size;
|
|
|
|
|
has_zero = true;
|
|
|
|
|
inserted = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
inserted = false;
|
2011-12-19 04:26:27 +00:00
|
|
|
|
|
|
|
|
|
it = begin();
|
2011-12-19 02:00:40 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t place_value = place(hash(x));
|
|
|
|
|
while (!ZeroTraits::check(buf[place_value].first) && buf[place_value].first != x)
|
|
|
|
|
{
|
2011-12-19 07:00:15 +00:00
|
|
|
|
++place_value;
|
2011-12-19 02:00:40 +00:00
|
|
|
|
place_value &= mask();
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
++collisions;
|
|
|
|
|
#endif
|
2011-12-19 02:00:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it = iterator(this, &buf[place_value]);
|
|
|
|
|
|
2011-12-19 04:26:27 +00:00
|
|
|
|
if (!ZeroTraits::check(buf[place_value].first) && buf[place_value].first == x)
|
2011-12-19 02:00:40 +00:00
|
|
|
|
{
|
|
|
|
|
inserted = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-19 04:26:27 +00:00
|
|
|
|
new(&buf[place_value].first) Key(x);
|
2011-12-19 02:00:40 +00:00
|
|
|
|
inserted = true;
|
|
|
|
|
++m_size;
|
|
|
|
|
|
|
|
|
|
if (unlikely(m_size > max_fill()))
|
|
|
|
|
{
|
|
|
|
|
resize();
|
|
|
|
|
it = find(x);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-12-12 10:05:35 +00:00
|
|
|
|
iterator find(Key x)
|
|
|
|
|
{
|
|
|
|
|
if (ZeroTraits::check(x))
|
|
|
|
|
return has_zero ? begin() : end();
|
|
|
|
|
|
|
|
|
|
size_t place_value = place(hash(x));
|
|
|
|
|
while (!ZeroTraits::check(buf[place_value].first) && buf[place_value].first != x)
|
|
|
|
|
{
|
2011-12-19 07:00:15 +00:00
|
|
|
|
++place_value;
|
2011-12-12 10:05:35 +00:00
|
|
|
|
place_value &= mask();
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
++collisions;
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return !ZeroTraits::check(buf[place_value].first) ? iterator(this, &buf[place_value]) : end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const_iterator find(Key x) const
|
|
|
|
|
{
|
|
|
|
|
if (ZeroTraits::check(x))
|
|
|
|
|
return has_zero ? begin() : end();
|
|
|
|
|
|
|
|
|
|
size_t place_value = place(hash(x.first));
|
|
|
|
|
while (!ZeroTraits::check(buf[place_value].first) && buf[place_value].first != x)
|
|
|
|
|
{
|
2011-12-19 07:00:15 +00:00
|
|
|
|
++place_value;
|
2011-12-12 10:05:35 +00:00
|
|
|
|
place_value &= mask();
|
2011-12-19 07:00:15 +00:00
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
++collisions;
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return !ZeroTraits::check(buf[place_value].first) ? const_iterator(this, &buf[place_value]) : end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
size_t size() const
|
|
|
|
|
{
|
|
|
|
|
return m_size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool empty() const
|
|
|
|
|
{
|
|
|
|
|
return 0 == m_size;
|
|
|
|
|
}
|
2011-12-19 07:00:15 +00:00
|
|
|
|
|
|
|
|
|
#ifdef DBMS_HASH_MAP_COUNT_COLLISIONS
|
|
|
|
|
size_t getCollisions() const
|
|
|
|
|
{
|
|
|
|
|
return collisions;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2011-12-12 10:05:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|