Added GPLv2+ as license for libgrammatic
[cascardo/grammar.git] / scanner.c
1 /*
2  *  Copyright (C) 2005  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <scanner.h>
24
25 static void string_free (gpointer data)
26 {
27   g_string_free ((GString*) data, TRUE);
28 }
29
30 scanner_t* scanner_new (readcb cb, gpointer data)
31 {
32
33   scanner_t* scanner;
34
35   scanner = g_malloc (sizeof (scanner_t));
36   scanner->cb = cb;
37   scanner->data = data;
38   scanner->buffer = g_string_sized_new (256);
39   scanner->reserved = g_hash_table_new_full (g_string_hash, g_string_equal,
40                                              string_free, NULL);
41
42   return scanner;
43
44 }
45
46 void scanner_delete (scanner_t* scanner)
47 {
48   g_hash_table_destroy (scanner->reserved);
49   g_string_free (scanner->buffer, TRUE);
50   g_free (scanner);
51 }