NuriaProject Framework  0.1
The NuriaProject Framework
essentials.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_ESSENTIALS_HPP
18 #define NURIA_ESSENTIALS_HPP
19 
20 #include "core_global.hpp"
21 #include <cstdint>
22 
23 namespace Nuria {
24 
26 constexpr uint32_t jenkinsOne (uint32_t hash, const char *key, int len) {
27  return (len < 1)
28  ? hash
29  : jenkinsOne ((hash + *key + ((hash + *key) << 10)) ^
30  ((hash + *key + ((hash + *key) << 10)) >> 6),
31  key + 1, len - 1);
32 }
33 
44 constexpr uint32_t jenkinsHash (const char *key, size_t len) {
45  return ((jenkinsOne (0, key, len) + (jenkinsOne (0, key, len) << 3)) ^
46  ((jenkinsOne (0, key, len) + (jenkinsOne (0, key, len) << 3)) >> 11)) +
47  (((jenkinsOne (0, key, len) + (jenkinsOne (0, key, len) << 3)) ^
48  ((jenkinsOne (0, key, len) + (jenkinsOne (0, key, len) << 3)) >> 11)) << 15);
49 }
50 
51 }
52 
62 #define NURIA_DECLARE_METATYPE(...) \
63  QT_BEGIN_NAMESPACE \
64  template <> \
65  struct QMetaTypeId< __VA_ARGS__ > \
66  { \
67  enum { Defined = 1 }; \
68  static int qt_metatype_id() \
69  { \
70  static QBasicAtomicInt metatype_id = Q_BASIC_ATOMIC_INITIALIZER(0); \
71  if (const int id = metatype_id.loadAcquire()) \
72  return id; \
73  const int newId = qRegisterMetaType< __VA_ARGS__ >(#__VA_ARGS__, \
74  reinterpret_cast< __VA_ARGS__ *>(quintptr(-1))); \
75  metatype_id.storeRelease(newId); \
76  return newId; \
77  } \
78  }; \
79  QT_END_NAMESPACE
80 
81 #endif // NURIA_ESSENTIALS_HPP
Definition: abstractsessionmanager.hpp:24