da39570e47c5e0056c2efae62e6b8fe16e60ccc8
[trust_router.git] / trp / msgtst.c
1 /*
2  * Copyright (c) 2016, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 /* Testing trp message encoding / decoding */
36
37 /* compiles with: gcc -o msgtst -I../include msgtst.c trp_msg.c $(pkg-config --cflags --libs glib-2.0) ../common/tr_debug.c  ../common/tr_name.c ../common/tr_msg.c -ltalloc -ljansson */
38
39 #include <stdio.h>
40 #include <talloc.h>
41
42 #include <trust_router/trp.h>
43 #include <tr_msg.h>
44 #include <tr_debug.h>
45
46 #define MAX_MSG_LEN 8192
47
48 int main(int argc, const char *argv[])
49 {
50   TALLOC_CTX *main_ctx=talloc_new(NULL);
51   FILE *f;
52   char *buf;
53   size_t buflen;
54   TR_MSG *msg;
55   
56   if (argc != 2) {
57     printf("Usage: %s <input file>\n\n", argv[0]);
58     exit(-1);
59   }
60
61   buf=malloc(MAX_MSG_LEN);
62   if (!buf) {
63     printf("Allocation error.\n\n");
64     exit(-1);
65   }
66
67   f=fopen(argv[1], "r");
68   if (!f) {
69     printf("Error opening %s for reading.\n\n", argv[1]);
70     exit(-1);
71   }
72
73   printf("Reading from %s...\n", argv[1]);
74
75   buflen=fread(buf, sizeof(char), MAX_MSG_LEN, f);
76   if (buflen==0) {
77     printf("File empty.\n\n");
78     exit(0);
79   }
80
81   if (buflen>=MAX_MSG_LEN)
82     printf("Warning: file may exceed maximum message length (%d bytes).\n", MAX_MSG_LEN);
83
84   msg=tr_msg_decode(buf, buflen);
85
86 /*  if (rc==TRP_SUCCESS)
87     trp_msg_print(msg);*/
88
89   printf("\nEncoding...\n");
90
91   printf("Result: \n%s\n\n", tr_msg_encode(msg));
92
93   talloc_report_full(main_ctx, stdout);
94
95   return 0;
96 }