aboutsummaryrefslogtreecommitdiff
path: root/gconf/gconf-text.c
blob: 0545293d0ecfeb102db5a2140d515acf471527d1 (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
/* gconf - General purpose configuration parser.
   Copyright (C) 2007, 2008, 2009 Sergey Poznyakoff

   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 3 of the License, or (at your
   option) any later version.

   This program 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 General Public License for more details.

   You should have received a copy of the GNU General Public License along
   with this program. If not, see <http://www.gnu.org/licenses/>. */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gconf.h>
#include <string.h>
#include <hash.h>
#include <xalloc.h>

static Hash_table *text_table;

/* Calculate the hash of a string.  */
static size_t
text_hasher (void const *data, unsigned n_buckets)
{
  return hash_string (data, n_buckets);
}

/* Compare two strings for equality.  */
static bool
text_compare (void const *data1, void const *data2)
{
  return strcmp (data1, data2) == 0;
}

static void
text_free (void *data)
{
  free (data);
}

/* Lookup a text. If it does not exist, create it. */
char *
gconf_install_text (const char *str)
{
  char *text, *s;

  s = xstrdup (str);

  if (!((text_table
	 || (text_table = hash_initialize (0, 0,
					   text_hasher,
					   text_compare,
					   text_free)))
	&& (text = hash_insert (text_table, s))))
    xalloc_die ();

  if (s != text)
    free (s);
  return text;
}

void
gconf_destroy_text ()
{
  if (text_table)
    hash_free (text_table);
}

Return to:

Send suggestions and report system problems to the System administrator.