GnuCash  5.6-150-g038405b370+
Files | Data Structures | Macros | Functions

Globally Unique IDs provide a way to uniquely identify something. More...

Files

file  guid.h
 globally unique ID User API
 

Data Structures

struct  GncGUID
 The type used to store guids in C. More...
 

Macros

#define GUID_DATA_SIZE   16
 
#define GNC_TYPE_GUID   (gnc_guid_get_type())
 
#define GNC_VALUE_HOLDS_GUID(value)   G_VALUE_HOLDS(value, GNC_TYPE_GUID)
 
#define GUID_ENCODING_LENGTH   32
 Number of characters needed to encode a guid as a string not including the null terminator. More...
 

Functions

GType gnc_guid_get_type (void)
 
const GncGUIDgnc_value_get_guid (const GValue *value)
 gnc_value_get_guid More...
 
void guid_replace (GncGUID *guid)
 Generate a new guid. More...
 
GncGUID guid_new_return (void)
 Generate a new id. More...
 
const GncGUIDguid_null (void)
 Returns a GncGUID which is guaranteed to never reference any entity. More...
 
GncGUIDguid_malloc (void)
 Allocate memory for a GUID. More...
 
GncGUIDguid_new (void)
 Allocate and construct a new GUID. More...
 
void guid_free (GncGUID *guid)
 
GncGUIDguid_copy (const GncGUID *guid)
 Returns a newly allocated GncGUID that matches the passed-in GUID. More...
 
gchar * guid_to_string (const GncGUID *guid)
 The guid_to_string() routine returns a null-terminated string encoding of the id. More...
 
gchar * guid_to_string_buff (const GncGUID *guid, gchar *buff)
 The guid_to_string_buff() routine puts a null-terminated string encoding of the id into the memory pointed at by buff. More...
 
gboolean string_to_guid (const gchar *string, GncGUID *guid)
 Given a string, replace the given guid with the parsed one unless the given value is null. More...
 
gboolean guid_equal (const GncGUID *guid_1, const GncGUID *guid_2)
 Given two GUIDs, return TRUE if they are non-NULL and equal. More...
 
gint guid_compare (const GncGUID *g1, const GncGUID *g2)
 
guint guid_hash_to_guint (gconstpointer ptr)
 Hash function for a GUID. More...
 
gint guid_g_hash_table_equal (gconstpointer guid_a, gconstpointer guid_b)
 Equality function for two GUIDs in a GHashTable. More...
 
GHashTable * guid_hash_table_new (void)
 Returns a GHashTable with <GUID*> as key and a <gpointer> as value and no destructor functions for key or value set. More...
 

Detailed Description

Globally Unique IDs provide a way to uniquely identify something.

A GncGUID is a unique, cryptographically random 128-bit value. The identifier is so random that it is safe to assume that there is no other such item on the planet Earth, and indeed, not even in the Galaxy or beyond.

QOF GncGUIDs can be used independently of any other subsystem in QOF. In particular, they do not require the use of other parts of the object subsystem. New GncGUIDs are usually created by initializing a new entity using qof_instance_init, rather than calling GncGUID functions directly.

Macro Definition Documentation

◆ GUID_ENCODING_LENGTH

#define GUID_ENCODING_LENGTH   32

Number of characters needed to encode a guid as a string not including the null terminator.

Definition at line 84 of file guid.h.

Function Documentation

◆ gnc_value_get_guid()

const GncGUID* gnc_value_get_guid ( const GValue *  value)

gnc_value_get_guid

Parameters
valuea GValue whose value we want to get.
Returns
the value stored in value

Definition at line 72 of file guid.cpp.

73 {
74  if (!value) return nullptr;
75  GncGUID *val;
76 
77  g_return_val_if_fail (value && G_IS_VALUE (value), nullptr);
78  g_return_val_if_fail (GNC_VALUE_HOLDS_GUID (value), nullptr);
79 
80  val = (GncGUID*) g_value_get_boxed (value);
81 
82  return val;
83 }
The type used to store guids in C.
Definition: guid.h:75

◆ guid_copy()

GncGUID* guid_copy ( const GncGUID guid)

Returns a newly allocated GncGUID that matches the passed-in GUID.

The returned pointer must be freed using guid_free.

Definition at line 155 of file guid.cpp.

156 {
157  if (!guid) return nullptr;
158  auto ret = guid_malloc ();
159  *ret = *guid;
160  return ret;
161 }
GncGUID * guid_malloc(void)
Allocate memory for a GUID.
Definition: guid.cpp:139

◆ guid_equal()

gboolean guid_equal ( const GncGUID guid_1,
const GncGUID guid_2 
)

Given two GUIDs, return TRUE if they are non-NULL and equal.

Return FALSE, otherwise.

Definition at line 237 of file guid.cpp.

238 {
239  if (guid_1 == guid_2) return true;
240  if (!guid_1 || !guid_2) return false;
241  gnc::GUID temp1 {*guid_1};
242  gnc::GUID temp2 {*guid_2};
243  return temp1 == temp2;
244 }

◆ guid_g_hash_table_equal()

gint guid_g_hash_table_equal ( gconstpointer  guid_a,
gconstpointer  guid_b 
)

Equality function for two GUIDs in a GHashTable.

Definition at line 281 of file guid.cpp.

282 {
283  return guid_equal (reinterpret_cast<const GncGUID*> (guid_a),
284  reinterpret_cast<const GncGUID*> (guid_b));
285 }
gboolean guid_equal(const GncGUID *guid_1, const GncGUID *guid_2)
Given two GUIDs, return TRUE if they are non-NULL and equal.
Definition: guid.cpp:237

◆ guid_hash_table_new()

GHashTable* guid_hash_table_new ( void  )

Returns a GHashTable with <GUID*> as key and a <gpointer> as value and no destructor functions for key or value set.

Definition at line 288 of file guid.cpp.

289 {
290  return g_hash_table_new (guid_hash_to_guint, guid_g_hash_table_equal);
291 }
guint guid_hash_to_guint(gconstpointer ptr)
Hash function for a GUID.
Definition: guid.cpp:262
gint guid_g_hash_table_equal(gconstpointer guid_a, gconstpointer guid_b)
Equality function for two GUIDs in a GHashTable.
Definition: guid.cpp:281

◆ guid_hash_to_guint()

guint guid_hash_to_guint ( gconstpointer  ptr)

Hash function for a GUID.

Given a GncGUID *, hash it to a guint

Definition at line 262 of file guid.cpp.

263 {
264  if (!ptr)
265  {
266  PERR ("received nullptr guid pointer.");
267  return 0;
268  }
269  GncGUID const & guid = * reinterpret_cast <GncGUID const *> (ptr);
270  gnc::GUID const & temp {guid};
271 
272  guint hash {0};
273  std::for_each (temp.begin (), temp.end (), [&hash] (unsigned char a) {
274  hash <<=4;
275  hash |= a;
276  });
277  return hash;
278 }
#define PERR(format, args...)
Log a serious error.
Definition: qoflog.h:244
The type used to store guids in C.
Definition: guid.h:75

◆ guid_malloc()

GncGUID* guid_malloc ( void  )

Allocate memory for a GUID.

This does not construct a GUID. In other words, the returned pointer has not necessarily been initialized. The returned pointer must be freed with * guid_free.

Definition at line 139 of file guid.cpp.

140 {
141  return new GncGUID;
142 }
The type used to store guids in C.
Definition: guid.h:75

◆ guid_new()

GncGUID* guid_new ( void  )

Allocate and construct a new GUID.

The returned pointer must be released with guid_free.

Definition at line 186 of file guid.cpp.

187 {
188  auto ret = guid_new_return ();
189  return guid_copy (&ret);
190 }
GncGUID guid_new_return(void)
Generate a new id.
Definition: guid.cpp:193
GncGUID * guid_copy(const GncGUID *guid)
Returns a newly allocated GncGUID that matches the passed-in GUID.
Definition: guid.cpp:155

◆ guid_new_return()

GncGUID guid_new_return ( void  )

Generate a new id.

Returns
guid A data structure containing a copy of a newly constructed GncGUID.

Definition at line 193 of file guid.cpp.

194 {
195  return gnc::GUID::create_random ();
196 }

◆ guid_null()

const GncGUID* guid_null ( void  )

Returns a GncGUID which is guaranteed to never reference any entity.

Do not free this value! The same pointer is returned on each call.

Definition at line 165 of file guid.cpp.

166 {
167  return s_null_gncguid;
168 }

◆ guid_replace()

void guid_replace ( GncGUID guid)

Generate a new guid.

Parameters
guidA pointer to an allocated guid data structure. The existing value will be replaced with a new value.

Definition at line 178 of file guid.cpp.

179 {
180  if (!guid) return;
181  gnc::GUID temp_random {gnc::GUID::create_random ()};
182  guid_assign (*guid, temp_random);
183 }

◆ guid_to_string()

gchar* guid_to_string ( const GncGUID guid)

The guid_to_string() routine returns a null-terminated string encoding of the id.

String encodings of identifiers are hex numbers printed only with the characters '0' through '9' and 'a' through 'f'. The encoding will always be GUID_ENCODING_LENGTH characters long (not including the null terminator).

Parameters
guidThe guid to print.
Returns
A pointer to the starting character of the string. The returned memory is owned by the calling routine and must be freed using g_free.

Definition at line 199 of file guid.cpp.

200 {
201  if (!guid) return nullptr;
202  char* buffer = g_new (char, GUID_ENCODING_LENGTH + 1);
203  guid_to_string_buff (guid, buffer);
204  return buffer;
205 }
gchar * guid_to_string_buff(const GncGUID *guid, gchar *str)
The guid_to_string_buff() routine puts a null-terminated string encoding of the id into the memory po...
Definition: guid.cpp:208
#define GUID_ENCODING_LENGTH
Number of characters needed to encode a guid as a string not including the null terminator.
Definition: guid.h:84

◆ guid_to_string_buff()

gchar* guid_to_string_buff ( const GncGUID guid,
gchar *  buff 
)

The guid_to_string_buff() routine puts a null-terminated string encoding of the id into the memory pointed at by buff.

The buffer must be at least GUID_ENCODING_LENGTH+1 characters long. This routine is handy for avoiding a malloc/free cycle. It returns a pointer to the >>end<< of what was written. (i.e. it can be used like 'stpcpy' during string concatenation)

Parameters
guidThe guid to print.
buffThe buffer to print it into.
Returns
A pointer to the terminating null character of the string, or, if no copy took place, NULL.

Definition at line 208 of file guid.cpp.

209 {
210  if (!str || !guid) return nullptr;
211  fast_guid_to_string (guid->reserved, str);
212  str[GUID_ENCODING_LENGTH] = '\0';
213  return str;
214 }
#define GUID_ENCODING_LENGTH
Number of characters needed to encode a guid as a string not including the null terminator.
Definition: guid.h:84

◆ string_to_guid()

gboolean string_to_guid ( const gchar *  string,
GncGUID guid 
)

Given a string, replace the given guid with the parsed one unless the given value is null.

If null is passed as guid or string, false is returned and nothing is done, otherwise, the function returns true. This function accepts both uppor and lower case hex digits. If letters outside the range of [a-fA-F] are passed, they are silently replaced. If non-alphanumeric digits are given, this function will either return false or replace those values with others.