File: error.c

package info (click to toggle)
gdis 0.90-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid
  • size: 10,392 kB
  • sloc: ansic: 71,117; perl: 298; sh: 115; python: 115; makefile: 33; xml: 26
file content (109 lines) | stat: -rw-r--r-- 2,822 bytes parent folder | download | duplicates (6)
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
/*
Copyright (C) 2000 by Sean David Fleming

sean@ivec.org

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 2
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

The GNU GPL can also be found at http://www.gnu.org
*/

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include "gdis.h"
#include "interface.h"

/* top level data structure */
extern struct sysenv_pak sysenv;

gint error_table_display = TRUE;
GHashTable *error_table=NULL;

#define MAX_ERROR_COUNT 1000

/********************************/
/* error table printing display */
/********************************/
void error_table_disable(void)
{
error_table_display = FALSE;
}

/********************************/
/* error table printing display */
/********************************/
void error_table_enable(void)
{
error_table_display = TRUE;
}

/****************************************/
/* remove all entries in the hash table */
/****************************************/
void error_table_clear(void)
{
if (error_table)
  g_hash_table_destroy(error_table);
error_table=g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
}

/************************/
/* print a single entry */
/************************/
void error_table_print(gpointer key, gpointer value, gpointer data)
{
gchar *msg, *text = key;
gint *count = value;

/* TODO - strstr - if error -> gui_show_text ERROR/WARNING/etc */

if (*count > MAX_ERROR_COUNT)
  msg = g_strdup_printf("[count >%d] %s", MAX_ERROR_COUNT, text);
else
  msg = g_strdup_printf("[count %d] %s", *count, text);

gui_text_show(ERROR,msg);

g_free(msg);
}

/******************************************/
/* display all entries in the error table */
/******************************************/
void error_table_print_all(void)
{
/* allow display to be disabled (eg animations) */
if (error_table_display)
  g_hash_table_foreach(error_table, error_table_print, NULL);
}

/**************************************/
/* add a new entry to the error table */
/**************************************/
void error_table_entry(const gchar *text)
{
gint *count;

count = g_hash_table_lookup(error_table, text);
if (!count)
  {
  count = g_malloc0(sizeof(gint));
  g_hash_table_insert(error_table, g_strdup(text), count);
  }
(*count)++;
}