]> git.meshlink.io Git - catta/blob - avahi-compat-howl/text-test.c
995a7f54be42ca1715b3b816ef0bcad2ba2358e9
[catta] / avahi-compat-howl / text-test.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <assert.h>
27 #include <stdio.h>
28
29 #include "howl.h"
30
31 #define ASSERT_SW_OKAY(t) { sw_result _r; _r = (t); assert(_r == SW_OKAY); }
32 #define ASSERT_NOT_NULL(t) { const void* _r; r = (t); assert(_r); }
33
34 static void hexdump(const void* p, size_t size) {
35     const uint8_t *c = p;
36     assert(p);
37
38     printf("Dumping %u bytes from %p:\n", size, p);
39
40     while (size > 0) {
41         unsigned i;
42
43         for (i = 0; i < 16; i++) {
44             if (i < size)
45                 printf("%02x ", c[i]);
46             else
47                 printf("   ");
48         }
49
50         for (i = 0; i < 16; i++) {
51             if (i < size)
52                 printf("%c", c[i] >= 32 && c[i] < 127 ? c[i] : '.');
53             else
54                 printf(" ");
55         }
56
57         printf("\n");
58
59         c += 16;
60
61         if (size <= 16)
62             break;
63
64         size -= 16;
65     }
66 }
67
68 int main(int argc, char *argv[]) {
69     sw_text_record r;
70     sw_text_record_iterator it;
71     char key[255];
72     uint8_t val[255];
73     sw_ulong val_len;
74     
75     ASSERT_SW_OKAY(sw_text_record_init(&r));
76     ASSERT_SW_OKAY(sw_text_record_add_string(r, "foo=bar"));
77     ASSERT_SW_OKAY(sw_text_record_add_string(r, "waldo=baz"));
78     ASSERT_SW_OKAY(sw_text_record_add_key_and_string_value(r, "quux", "nimpf"));
79     ASSERT_SW_OKAY(sw_text_record_add_key_and_binary_value(r, "quux", "\0\0\0\0", 4));
80
81     hexdump(sw_text_record_bytes(r), sw_text_record_len(r));
82
83     ASSERT_SW_OKAY(sw_text_record_iterator_init(&it, sw_text_record_bytes(r), sw_text_record_len(r)));
84
85     while (sw_text_record_iterator_next(it, key, val, &val_len) == SW_OKAY) {
86         printf("key=%s\n", key);
87         hexdump(val, val_len);
88     }
89
90     ASSERT_SW_OKAY(sw_text_record_iterator_fina(it));
91
92
93
94     
95     ASSERT_SW_OKAY(sw_text_record_fina(r));
96
97     return 0;
98 }