summaryrefslogtreecommitdiff
path: root/src/backend/lib/stringinfo.c
blob: 2d129d12b2eb2eff0718b8a4f23eced7f9013bac (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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * stringinfo.c
 *	  These are routines that can be used to write informations to a string,
 *	  without having to worry about string lengths, space allocation etc.
 *	  Ideally the interface should look like the file i/o interface,
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *	  $Id: stringinfo.c,v 1.14 1999/02/13 23:15:36 momjian Exp $
 */

#include <stdio.h>
#include <string.h>

#include <stdarg.h>

#include <postgres.h>

#include <nodes/pg_list.h>
#include <lib/stringinfo.h>

/*
 * makeStringInfo
 *
 * Create a StringInfoData & return a pointer to it.
 *
 */
StringInfo
makeStringInfo()
{
	StringInfo	res;
	int			size;

	res = (StringInfo) palloc(sizeof(StringInfoData));
	if (res == NULL)
		elog(ERROR, "makeStringInfo: Out of memory!");

	size = 256;					/* initial default size */
	res->data = palloc(size);
	if (res->data == NULL)
	{
		elog(ERROR,
		   "makeStringInfo: Out of memory! (%d bytes requested)", size);
	}
	res->maxlen = size;
	res->len = 0;
	/* Make sure the string is empty initially. */
	res->data[0] = '\0';

	return res;
}

/*
 * appendStringInfo
 *
 * append to the current 'StringInfo' a new string.
 * If there is not enough space in the current 'data', then reallocate
 * some more...
 *
 * NOTE: if we reallocate space, we pfree the old one!
 *
 */
void
appendStringInfo(StringInfo str, const char *fmt,...)
{
	int		buflen,
				newlen,
				needed;
	char	*s,
				buffer[512];

  va_list args;
	va_start(args, fmt);
  buflen = vsnprintf(buffer, 512, fmt, args);
  va_end(args);

	Assert(str != NULL);
	if (buflen == 0)
		strcpy(buffer, "<>");

	/*
	 * do we have enough space to append the new string? (don't forget to
	 * count the null string terminating char!) If no, then reallocate
	 * some more.
	 */
	needed = str->len + buflen + 1;
	if (needed > str->maxlen)
	{

		/*
		 * how much more space to allocate ? Let's say double the current
		 * space... However we must check if this is enough!
		 */
		newlen = 2 * str->maxlen;
		while (needed > newlen)
			newlen = 2 * newlen;

		/*
		 * allocate enough space.
		 */
		s = palloc(newlen);
		if (s == NULL)
		{
			elog(ERROR,
				 "appendStringInfo: Out of memory (%d bytes requested)", newlen);
		}
		/*
		 * transfer the data.  strcpy() would work, but is probably a tad
		 * slower than memcpy(), and since we know the string length...
		 */
		memcpy(s, str->data, str->len + 1);
		pfree(str->data);
		str->maxlen = newlen;
		str->data = s;
	}

	/*
	 * OK, we have enough space now, append 'buffer' at the end of the
	 * string & update the string length. NOTE: strcat() would work,
	 * but is certainly slower than just memcpy'ing the data to the right
	 * place.
	 */
	memcpy(str->data + str->len, buffer, buflen + 1);
	str->len += buflen;
}