summaryrefslogtreecommitdiffstats
path: root/src/bytearray.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-04-16 16:06:11 +0200
committerGravatar Nikias Bassen2023-04-16 16:06:11 +0200
commit3aa5f6a3a663a5f2694ec6fc8cdf9744b616e15e (patch)
tree9b071b9f041f80ab36a240b226af642cc0c19031 /src/bytearray.c
parentbfc97788f081584ced9cd35d85b69b3fec6b907c (diff)
downloadlibplist-3aa5f6a3a663a5f2694ec6fc8cdf9744b616e15e.tar.gz
libplist-3aa5f6a3a663a5f2694ec6fc8cdf9744b616e15e.tar.bz2
Add new output-only formats and Define constants for the different plist formats
This commit introduces constants for the different plist formats, and adds 3 new human-readable output-only formats: - PLIST_FORMAT_PRINT: the default human-readable format - PLIST_FORMAT_LIMD: "libimobiledevice" format (used in ideviceinfo) - PLIST_FORMAT_PLUTIL: plutil-style format Also, a new set of write functions has been added: - plist_write_to_string - plist_write_to_stream - plist_write_to_file Plus a simple "dump" function: - plist_print See documentation for details.
Diffstat (limited to 'src/bytearray.c')
-rw-r--r--src/bytearray.c34
1 files changed, 28 insertions, 6 deletions
diff --git a/src/bytearray.c b/src/bytearray.c
index 7d0549b..39fad5f 100644
--- a/src/bytearray.c
+++ b/src/bytearray.c
@@ -29,6 +29,17 @@ bytearray_t *byte_array_new(size_t initial)
29 a->capacity = (initial > PAGE_SIZE) ? (initial+(PAGE_SIZE-1)) & (~(PAGE_SIZE-1)) : PAGE_SIZE; 29 a->capacity = (initial > PAGE_SIZE) ? (initial+(PAGE_SIZE-1)) & (~(PAGE_SIZE-1)) : PAGE_SIZE;
30 a->data = malloc(a->capacity); 30 a->data = malloc(a->capacity);
31 a->len = 0; 31 a->len = 0;
32 a->stream = NULL;
33 return a;
34}
35
36bytearray_t *byte_array_new_for_stream(FILE *stream)
37{
38 bytearray_t *a = (bytearray_t*)malloc(sizeof(bytearray_t));
39 a->capacity = (size_t)-1;
40 a->data = NULL;
41 a->len = 0;
42 a->stream = stream;
32 return a; 43 return a;
33} 44}
34 45
@@ -43,6 +54,9 @@ void byte_array_free(bytearray_t *ba)
43 54
44void byte_array_grow(bytearray_t *ba, size_t amount) 55void byte_array_grow(bytearray_t *ba, size_t amount)
45{ 56{
57 if (ba->stream) {
58 return;
59 }
46 size_t increase = (amount > PAGE_SIZE) ? (amount+(PAGE_SIZE-1)) & (~(PAGE_SIZE-1)) : PAGE_SIZE; 60 size_t increase = (amount > PAGE_SIZE) ? (amount+(PAGE_SIZE-1)) & (~(PAGE_SIZE-1)) : PAGE_SIZE;
47 ba->data = realloc(ba->data, ba->capacity + increase); 61 ba->data = realloc(ba->data, ba->capacity + increase);
48 ba->capacity += increase; 62 ba->capacity += increase;
@@ -50,12 +64,20 @@ void byte_array_grow(bytearray_t *ba, size_t amount)
50 64
51void byte_array_append(bytearray_t *ba, void *buf, size_t len) 65void byte_array_append(bytearray_t *ba, void *buf, size_t len)
52{ 66{
53 if (!ba || !ba->data || (len <= 0)) return; 67 if (!ba || (!ba->stream && !ba->data) || (len <= 0)) return;
54 size_t remaining = ba->capacity-ba->len; 68 if (ba->stream) {
55 if (len > remaining) { 69 if (fwrite(buf, 1, len, ba->stream) < len) {
56 size_t needed = len - remaining; 70#if DEBUG
57 byte_array_grow(ba, needed); 71 fprintf(stderr, "ERROR: Failed to write to stream.\n");
72#endif
73 }
74 } else {
75 size_t remaining = ba->capacity-ba->len;
76 if (len > remaining) {
77 size_t needed = len - remaining;
78 byte_array_grow(ba, needed);
79 }
80 memcpy(((char*)ba->data) + ba->len, buf, len);
58 } 81 }
59 memcpy(((char*)ba->data) + ba->len, buf, len);
60 ba->len += len; 82 ba->len += len;
61} 83}