aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/gfsmMem.hi
blob: 26aff79208cceee6ac7d2d1a681900458c9597fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135

/*=============================================================================*\
 * File: gfsmMem.def
 * Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
 * Description: finite state machine library: memory utilities: inline definitions
 *
 * Copyright (c) 2004-2008 Bryan Jurish.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *=============================================================================*/

#include <string.h>

/*----------------------------------------------------------------------
 * init_allocators()
 */
GFSM_INLINE
void gfsm_allocators_init(void)
{
  if (!gfsm_node_allocator) gfsm_node_allocator = g_allocator_new("gfsm_node_allocator",128);
  if (!gfsm_slist_allocator) gfsm_slist_allocator = g_allocator_new("gfsm_slist_allocator",128);
  if (!gfsm_list_allocator) gfsm_list_allocator  = g_allocator_new("gfsm_list_allocator",128);
}

/*----------------------------------------------------------------------
 * allocators_enable()
 */
GFSM_INLINE
void gfsm_allocators_enable(void)
{
  if (!gfsm_allocators_enabled) {
    gfsm_allocators_init();
    g_node_push_allocator(gfsm_node_allocator);
    g_slist_push_allocator(gfsm_slist_allocator);
    g_list_push_allocator(gfsm_list_allocator);
    gfsm_allocators_enabled = TRUE;
  }
}

/*----------------------------------------------------------------------
 * allocators_disable()
 */
GFSM_INLINE
void gfsm_allocators_disable(void)
{
  if (gfsm_allocators_enabled) {
    g_node_pop_allocator();
    g_slist_pop_allocator();
    g_list_pop_allocator();
    gfsm_allocators_enabled = FALSE;
  }
}


/*----------------------------------------------------------------------
 * allocators_free()
 */
GFSM_INLINE
void gfsm_allocators_free(void)
{
  gfsm_allocators_disable();

  if (gfsm_node_allocator) g_allocator_free(gfsm_node_allocator);
  if (gfsm_slist_allocator) g_allocator_free(gfsm_slist_allocator);
  if (gfsm_list_allocator) g_allocator_free(gfsm_list_allocator);

  gfsm_node_allocator=NULL;
  gfsm_slist_allocator=NULL;
  gfsm_list_allocator=NULL;
}


/*----------------------------------------------------------------------
 * string_dup_n()
 */
GFSM_INLINE
gpointer gfsm_string_dup_n(gconstpointer src, gsize size)
{
#ifndef __cplusplus
  return g_strndup(src,size);
#else
  return g_strndup(static_cast<const gchar *>(src), size);
#endif
}

/*----------------------------------------------------------------------
 * mem_dup_n()
 */
GFSM_INLINE
gpointer gfsm_mem_dup_n(gconstpointer src, gsize size)
{ return g_memdup(src,size); };

/*----------------------------------------------------------------------
 * gstring_dup()
 */
GFSM_INLINE
GString *gfsm_gstring_dup (GString *gstr)
{
  GString *dst = g_string_sized_new(gstr->len);
  g_string_append_len(dst, gstr->str, gstr->len);
  return dst;
}

/*----------------------------------------------------------------------
 * gstring_asign_bytes()
 */
GFSM_INLINE
void gfsm_gstring_assign_bytes (GString *gstr, const gchar *src, gsize len)
{
  g_string_truncate(gstr, 0);
  g_string_append_len(gstr, src, len);
}

/*----------------------------------------------------------------------
 * gstring_new_bytes()
 */
GFSM_INLINE
GString *gfsm_gstring_new_bytes (const gchar *src, gsize len)
{
  GString *dst = g_string_sized_new(src[len]=='\0' ? len : (len+1));
  g_string_append_len(dst,src,len);
  return dst;
}