Move ptid.h to common-defs.h
[platform/upstream/binutils.git] / gdb / common / buffer.h
1 /* A simple growing buffer for GDB.
2   
3    Copyright (C) 2009-2014 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #ifndef BUFFER_H
21 #define BUFFER_H
22
23 #include <string.h>
24
25 struct buffer
26 {
27   char *buffer;
28   size_t buffer_size; /* allocated size */
29   size_t used_size; /* actually used size */
30 };
31
32 /* Append DATA of size SIZE to the end of BUFFER.  Grows the buffer to
33    accommodate the new data.  */
34 void buffer_grow (struct buffer *buffer, const char *data, size_t size);
35
36 /* Release any memory held by BUFFER.  */
37 void buffer_free (struct buffer *buffer);
38
39 /* Initialize BUFFER.  BUFFER holds no memory afterwards.  */
40 void buffer_init (struct buffer *buffer);
41
42 /* Return a pointer into BUFFER data, effectivelly transfering
43    ownership of the buffer memory to the caller.  Calling buffer_free
44    afterwards has no effect on the returned data.  */
45 char* buffer_finish (struct buffer *buffer);
46
47 /* Simple printf to buffer function.  Current implemented formatters:
48    %s - grow an xml escaped text in BUFFER.
49    %d - grow an signed integer in BUFFER.
50    %u - grow an unsigned integer in BUFFER.
51    %x - grow an unsigned integer formatted in hexadecimal in BUFFER.
52    %o - grow an unsigned integer formatted in octal in BUFFER.  */
53 void buffer_xml_printf (struct buffer *buffer, const char *format, ...)
54   ATTRIBUTE_PRINTF (2, 3);
55
56 #define buffer_grow_str(BUFFER,STRING)          \
57   buffer_grow (BUFFER, STRING, strlen (STRING))
58 #define buffer_grow_str0(BUFFER,STRING)                 \
59   buffer_grow (BUFFER, STRING, strlen (STRING) + 1)
60
61 #endif