annotate th_util.c @ 45:e031a062b731

Separate program "banner" printing from th_args_help() to th_print_banner().
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 03 Oct 2011 15:37:53 +0300
parents 5b1e38a41bac
children 55e36ec05881
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 * Generic utility-functions, macros and defaults
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 * Programmed and designed by Matti 'ccr' Hamalainen
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
4 * (C) Copyright 2002-2010 Tecnic Software productions (TNSP)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 *
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 * Please read file 'COPYING' for information on license and distribution.
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 */
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 #ifdef HAVE_CONFIG_H
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 #include "config.h"
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 #include "th_util.h"
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 #include <stdio.h>
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
4
67f4a4233372 Move defaults to header file.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
14 /* Default settings
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 */
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
16 static BOOL th_initialized = FALSE;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
17 int th_verbosityLevel = 2;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
18 char *th_prog_name = NULL,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
19 *th_prog_fullname = NULL,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
20 *th_prog_version = NULL,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
21 *th_prog_author = NULL,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
22 *th_prog_license = NULL;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 /* Initialize th_util-library and global variables
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26 */
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27 void th_init(char *progName, char *progFullName, char *progVersion,
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
28 char *progAuthor, char *progLicense)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
29 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
30 th_prog_name = progName;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
31 th_prog_fullname = progFullName;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
32 th_prog_version = progVersion;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
34 if (progAuthor)
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
35 th_prog_author = progAuthor;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
36 else
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
37 th_prog_author = TH_PROG_AUTHOR;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
39 if (progLicense)
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
40 th_prog_license = progLicense;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
41 else
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
42 th_prog_license = TH_PROG_LICENSE;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
44 th_initialized = TRUE;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
47
45
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
48 void th_print_banner(FILE *outFile, const char *binName, const char *progUsage)
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
49 {
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
50 fprintf(outFile,
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
51 "\n%s v%s (%s)\n"
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
52 "%s\n"
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
53 "%s\n"
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
54 "Usage: %s %s\n",
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
55 th_prog_name, th_prog_version, th_prog_fullname,
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
56 th_prog_author, th_prog_license, binName, progUsage);
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
57 }
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
58
e031a062b731 Separate program "banner" printing from th_args_help() to th_print_banner().
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
59
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
60 /* Print formatted error, warning and information messages
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
61 * TODO: Implement th_vfprintf() and friends?
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
62 */
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
63 void THERR_V(const char *fmt, va_list ap)
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
64 {
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
65 assert(th_initialized == TRUE);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
66
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
67 fprintf(stderr, "%s: ", th_prog_name);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
68 vfprintf(stderr, fmt, ap);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
69 }
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
70
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
71
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
72 void THMSG_V(int level, const char *fmt, va_list ap)
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
73 {
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
74 assert(th_initialized == TRUE);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
75
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
76 if (th_verbosityLevel >= level) {
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
77 fprintf(stderr, "%s: ", th_prog_name);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
78 vfprintf(stderr, fmt, ap);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
79 }
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
80 }
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
81
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
82
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
83 void THPRINT_V(int level, const char *fmt, va_list ap)
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
84 {
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
85 assert(th_initialized == TRUE);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
86
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
87 if (th_verbosityLevel >= level) {
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
88 vfprintf(stderr, fmt, ap);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
89 }
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
90 }
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
91
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
92
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
93 void THERR(const char *fmt, ...)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
94 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
95 va_list ap;
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
96 assert(th_initialized == TRUE);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
97
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
98 va_start(ap, fmt);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
99 THERR_V(fmt, ap);
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
100 va_end(ap);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
101 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
102
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
103
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
104 void THMSG(int level, const char *fmt, ...)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
105 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
106 va_list ap;
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
107 assert(th_initialized == TRUE);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
108
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
109 va_start(ap, fmt);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
110 THMSG_V(level, fmt, ap);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
111 va_end(ap);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
112 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
113
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
114
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
115 void THPRINT(int level, const char *fmt, ...)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
116 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
117 va_list ap;
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
118 assert(th_initialized == TRUE);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
120 va_start(ap, fmt);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
121 THPRINT_V(level, fmt, ap);
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
122 va_end(ap);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
125
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
126 /* Memory handling routines
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 */
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 void *th_malloc(size_t l)
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
129 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
130 return malloc(l);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
134 void *th_calloc(size_t n, size_t l)
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
135 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
136 return calloc(n, l);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
137 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
138
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
139
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 void *th_realloc(void *p, size_t l)
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
142 return realloc(p, l);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
143 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
144
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146 void th_free(void *p)
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
147 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
148 /* Check for NULL pointers for portability due to some libc
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
149 * implementations not handling free(NULL) too well.
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
150 */
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
151 if (p) free(p);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
152 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
153
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155 #ifndef HAVE_MEMSET
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 void *th_memset(void *p, int c, size_t n)
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157 {
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
158 unsigned char *dp = (unsigned char *) p;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
159
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
160 while (n--)
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
161 *(dp++) = c;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
163 return p;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
164 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
165 #endif
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
166
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
167 /* Doubly linked list handling
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
168 *
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
169 * In this implementation first node's prev points to last node of the list,
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
170 * and last node's next is NULL. This way we can semi-efficiently traverse to
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
171 * beginning and end of the list, assuming user does not do weird things.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
172 */
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
173 qlist_t * th_llist_new(void *data)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
174 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
175 qlist_t *res = th_calloc(sizeof(qlist_t), 1);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
176 res->data = data;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
177 return res;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
178 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
179
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
180 void th_llist_free_func(qlist_t *list, void (*freefunc)(void *data))
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
181 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
182 qlist_t *curr = list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
183
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
184 while (curr != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
185 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
186 qlist_t *next = curr->next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
187 if (freefunc != NULL && curr->data != NULL)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
188 freefunc(curr->data);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
189 th_free(curr);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
190 curr = next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
191 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
192 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
193
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
194
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
195 void th_llist_free(qlist_t *list)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
196 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
197 th_llist_free_func(list, NULL);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
198 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
199
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
200 void th_llist_append_node(qlist_t **list, qlist_t *node)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
201 {
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
202 if (*list != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
203 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
204 node->prev = (*list)->prev;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
205 (*list)->prev->next = node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
206 (*list)->prev = node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
207 (*list)->num++;
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
208 }
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
209 else
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
210 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
211 *list = node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
212 node->prev = *list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
213 (*list)->num = 1;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
214 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
215
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
216 node->next = NULL;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
217 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
218
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
219
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
220 qlist_t *th_llist_append(qlist_t **list, void *data)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
221 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
222 qlist_t *node = th_llist_new(data);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
223
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
224 th_llist_append_node(list, node);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
225
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
226 return node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
227 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
228
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
229
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
230 void th_llist_prepend_node(qlist_t **list, qlist_t *node)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
231 {
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
232 if (*list != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
233 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
234 node->prev = (*list)->prev;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
235 node->next = *list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
236 (*list)->prev = node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
237 node->num = (*list)->num + 1;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
238 *list = node;
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
239 }
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
240 else
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
241 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
242 *list = node->prev = node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
243 node->next = NULL;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
244 (*list)->num = 1;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
245 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
246
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
247 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
248
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
249
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
250 qlist_t *th_llist_prepend(qlist_t **list, void *data)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
251 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
252 qlist_t *node = th_llist_new(data);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
253
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
254 th_llist_prepend_node(list, node);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
255
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
256 return node;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
257 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
258
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
259 /*
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
260 1) Remove a middle node
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
261
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
262 node0->prev->next = node->next (node1)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
263 node0->next->prev = node->prev (list)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
264
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
265 node2 <- list <=> node0 <=> node1 <=> node2 -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
266 node2 <- list <=> node1 <=> node2 -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
267
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
268 2) Remove first node when many items
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
269
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
270
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
271 node2 <- list <=> node0 <=> node1 <=> node2 -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
272 node2 <- node0 <=> node1 <=> node2 -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
273
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
274 *list = node0
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
275
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
276 3) Remove last node in list
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
277
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
278 if (node->next == NULL) {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
279 list->prev = node->prev;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
280 node->prev->next = NULL;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
281 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
282
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
283 node2 <- list <=> node0 <=> node1 <=> node2 -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
284 node1 <- list <=> node0 <=> node1 -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
285
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
286 4) Remove last
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
287
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
288 list <- list -> NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
289
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
290
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
291 */
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
292 static void th_llist_delete_node_fast(qlist_t **list, qlist_t *node)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
293 {
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
294 if (node == *list)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
295 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
296 /* First node in list */
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
297 qlist_t *tmp = (*list)->next;
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
298 if (tmp != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
299 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
300 tmp->num = (*list)->num - 1;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
301 tmp->prev = (*list)->prev;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
302 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
303 *list = tmp;
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
304 }
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
305 else
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
306 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
307 /* Somewhere in middle or end */
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
308 if (node->prev != NULL)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
309 node->prev->next = node->next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
310
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
311 if (node->next != NULL)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
312 node->next->prev = node->prev;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
313 else
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
314 (*list)->prev = node; /* Last node */
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
315
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
316 (*list)->num--;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
317 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
318
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
319 node->next = node->prev = NULL;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
320 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
321
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
322
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
323 void th_llist_delete_node(qlist_t **list, qlist_t *node)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
324 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
325 qlist_t *curr = *list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
326
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
327 while (curr != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
328 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
329 qlist_t *next = curr->next;
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
330 if (curr == node)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
331 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
332 th_llist_delete_node_fast(list, curr);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
333 th_free(node);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
334 break;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
335 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
336 curr = next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
337 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
338 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
339
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
340
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
341 void th_llist_delete(qlist_t **list, const void *data)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
342 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
343 qlist_t *curr = *list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
344
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
345 while (curr != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
346 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
347 qlist_t *next = curr->next;
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
348 if (curr->data == data)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
349 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
350 th_llist_delete_node_fast(list, curr);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
351 th_free(curr);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
352 break;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
353 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
354 curr = next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
355 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
356 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
357
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
358
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
359 qlist_t * th_llist_get_nth(qlist_t *list, const size_t n)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
360 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
361 qlist_t *curr = list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
362 size_t i;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
363
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
364 for (i = 0; curr != NULL && i < n; curr = curr->next, i++);
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
365
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
366 return curr;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
367 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
368
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
369
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
370 size_t th_llist_length(const qlist_t *list)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
371 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
372 if (list == NULL)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
373 return 0;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
374 else
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
375 return list->num;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
376 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
377
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
378
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
379 ssize_t th_llist_position(const qlist_t *list, const qlist_t *node)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
380 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
381 const qlist_t *curr = list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
382 ssize_t i = 0;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
383
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
384 while (curr != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
385 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
386 if (curr == node)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
387 return i;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
388 else
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
389 i++;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
390
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
391 curr = curr->next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
392 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
393
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
394 return -1;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
395 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
396
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
397
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
398 qlist_t * th_llist_find(qlist_t *list, const void *data)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
399 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
400 qlist_t *curr = list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
401
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
402 while (curr != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
403 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
404 if (curr->data == data)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
405 return curr;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
406 curr = curr->next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
407 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
408
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
409 return NULL;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
410 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
411
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
412
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
413 qlist_t * th_llist_find_func(qlist_t *list, const void *userdata, int (compare)(const void *, const void *))
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
414 {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
415 qlist_t *curr = list;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
416
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
417 while (curr != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
418 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
419 if (compare(curr->data, userdata) == 0)
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
420 return curr;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
421 curr = curr->next;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
422 }
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
423
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
424 return NULL;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
425 }
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
426
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
427
26
04187ae0b3b6 Comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
428 /*
04187ae0b3b6 Comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
429 * Ringbuffers
04187ae0b3b6 Comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 25
diff changeset
430 */
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
431 qringbuf_t * th_ringbuf_new(const size_t size, void (*mdeallocator)(void *data))
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
432 {
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
433 qringbuf_t *res = th_calloc(1, sizeof(qringbuf_t));
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
434
33
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
435 res->data = (char **) th_calloc(size, sizeof(char *));
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
436 res->size = size;
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
437 res->n = 0;
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
438 res->deallocator = mdeallocator;
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
439
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
440 return res;
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
441 }
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
442
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
443
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
444 BOOL th_ringbuf_grow(qringbuf_t *buf, const size_t n)
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
445 {
33
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
446 buf->data = (char **) th_realloc(buf->data, (buf->size + n) * sizeof(char *));
40
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
447 if (buf->data != NULL)
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
448 {
5b1e38a41bac Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
449 th_memset(buf->data + buf->size, 0, sizeof(char *) * n);
33
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
450 buf->size += n;
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
451 return TRUE;
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
452 } else
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
453 return FALSE;
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
454 }
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
455
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
456
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
457 void th_ringbuf_free(qringbuf_t *buf)
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
458 {
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
459 int i;
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
460
33
Matti Hamalainen <ccr@tnsp.org>
parents: 28
diff changeset
461 for (i = 0; i < buf->size; i++)
25
2f7270a9d593 Make ringbuffer deallocator function call only happen if data pointer is != NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
462 if (buf->data[i] != NULL)
2f7270a9d593 Make ringbuffer deallocator function call only happen if data pointer is != NULL
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
463 buf->deallocator(buf->data[i]);
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
464
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
465 th_free(buf->data);
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
466 th_free(buf);
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
467 }
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
468
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
469
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
470 void th_ringbuf_add(qringbuf_t *buf, void *ptr)
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
471 {
28
c47dcb8a4ffe Change how ringbuffer actually works to be more sensible.
Matti Hamalainen <ccr@tnsp.org>
parents: 27
diff changeset
472 if (buf->n < buf->size)
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
473 buf->n++;
28
c47dcb8a4ffe Change how ringbuffer actually works to be more sensible.
Matti Hamalainen <ccr@tnsp.org>
parents: 27
diff changeset
474
c47dcb8a4ffe Change how ringbuffer actually works to be more sensible.
Matti Hamalainen <ccr@tnsp.org>
parents: 27
diff changeset
475 th_free(buf->data[0]);
c47dcb8a4ffe Change how ringbuffer actually works to be more sensible.
Matti Hamalainen <ccr@tnsp.org>
parents: 27
diff changeset
476 memmove(&(buf->data[0]), &(buf->data[1]), (buf->size - 1) * sizeof(void *));
c47dcb8a4ffe Change how ringbuffer actually works to be more sensible.
Matti Hamalainen <ccr@tnsp.org>
parents: 27
diff changeset
477 buf->data[buf->size - 1] = ptr;
23
a4f894105953 Add ringbuffer implementation.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
478 }