]> andersk Git - splint.git/blame - src/mtAnnotationList.c
Fixed all /*@i...@*/ tags (except 1).
[splint.git] / src / mtAnnotationList.c
CommitLineData
28bf4b0b 1/*
11db3170 2** Splint - annotation-assisted static program checker
c59f5181 3** Copyright (C) 1994-2003 University of Virginia,
28bf4b0b 4** Massachusetts Institute of Technology
5**
6** This program is free software; you can redistribute it and/or modify it
7** under the terms of the GNU General Public License as published by the
8** Free Software Foundation; either version 2 of the License, or (at your
9** option) any later version.
10**
11** This program is distributed in the hope that it will be useful, but
12** WITHOUT ANY WARRANTY; without even the implied warranty of
13** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14** General Public License for more details.
15**
16** The GNU General Public License is available from http://www.gnu.org/ or
17** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18** MA 02111-1307, USA.
19**
155af98d 20** For information on splint: info@splint.org
21** To report a bug: splint-bug@splint.org
11db3170 22** For more information: http://www.splint.org
28bf4b0b 23*/
24/*
25** mtAnnotationList.c
26**
27** based on list_template.c
28**
29** where T has T_equal (or change this) and T_unparse
30*/
31
1b8ae690 32# include "splintMacros.nf"
28bf4b0b 33# include "basic.h"
28bf4b0b 34
35mtAnnotationList
36mtAnnotationList_new ()
37{
38 return mtAnnotationList_undefined;
39}
40
41static /*@notnull@*/ mtAnnotationList
42mtAnnotationList_newEmpty (void)
43{
44 mtAnnotationList s = (mtAnnotationList) dmalloc (sizeof (*s));
45
46 s->nelements = 0;
47 s->nspace = mtAnnotationListBASESIZE;
48 s->elements = (mtAnnotationDecl *) dmalloc (sizeof (*s->elements) * mtAnnotationListBASESIZE);
49
50 return (s);
51}
52
53static void
54mtAnnotationList_grow (/*@notnull@*/ mtAnnotationList s)
55{
56 int i;
57 mtAnnotationDecl *newelements;
58
59 s->nspace += mtAnnotationListBASESIZE;
60
61 newelements = (mtAnnotationDecl *) dmalloc (sizeof (*newelements) * (s->nelements + s->nspace));
62
63 if (newelements == (mtAnnotationDecl *) 0)
64 {
65 llfatalerror (cstring_makeLiteral ("mtAnnotationList_grow: out of memory!"));
66 }
67
68 for (i = 0; i < s->nelements; i++)
69 {
70 newelements[i] = s->elements[i];
71 }
72
73 sfree (s->elements);
74 s->elements = newelements;
75}
76
b73d1009 77mtAnnotationList mtAnnotationList_single (/*@only@*/ mtAnnotationDecl el)
28bf4b0b 78{
79 mtAnnotationList s = mtAnnotationList_new ();
80 s = mtAnnotationList_add (s, el);
81 return s;
82}
83
b73d1009 84mtAnnotationList mtAnnotationList_add (mtAnnotationList s, mtAnnotationDecl el)
28bf4b0b 85{
86 if (!mtAnnotationList_isDefined (s))
87 {
88 s = mtAnnotationList_newEmpty ();
89 }
90
91 if (s->nspace <= 0)
92 {
93 mtAnnotationList_grow (s);
94 }
95
96 s->nspace--;
b73d1009 97 s->elements[s->nelements] = el;
28bf4b0b 98 s->nelements++;
99
b73d1009 100 return s;
28bf4b0b 101}
102
b73d1009 103mtAnnotationList mtAnnotationList_prepend (mtAnnotationList s, mtAnnotationDecl el)
28bf4b0b 104{
105 int i;
106
107 if (!mtAnnotationList_isDefined (s))
108 {
b73d1009 109 return mtAnnotationList_single (el);
28bf4b0b 110 }
111
112 if (s->nspace <= 0)
113 {
114 mtAnnotationList_grow (s);
115 }
116
117 s->nspace--;
118
119 for (i = s->nelements; i > 0; i--)
120 {
121 s->elements[i] = s->elements [i - 1];
122 }
123
b73d1009 124 s->elements[0] = el;
28bf4b0b 125 s->nelements++;
126
b73d1009 127 return s;
28bf4b0b 128}
129
130cstring
131mtAnnotationList_unparse (mtAnnotationList s)
132{
133 return mtAnnotationList_unparseSep (s, cstring_makeLiteralTemp (" "));
134}
135
136cstring
137mtAnnotationList_unparseSep (mtAnnotationList s, cstring sep)
138{
139 cstring st = cstring_undefined;
140
141 if (mtAnnotationList_isDefined (s))
142 {
143 int i;
144
145 for (i = 0; i < s->nelements; i++)
146 {
147 if (i == 0)
148 {
149 st = mtAnnotationDecl_unparse (s->elements[i]);
150 }
151 else
152 st = message ("%q%s%q", st, sep,
153 mtAnnotationDecl_unparse (s->elements[i]));
154 }
155 }
156
157 return st;
158}
159
160void
161mtAnnotationList_free (mtAnnotationList s)
162{
163 if (mtAnnotationList_isDefined (s))
164 {
165 sfree (s->elements);
166 sfree (s);
167 }
168}
169
This page took 0.082623 seconds and 5 git commands to generate.