and added files
[bcm963xx.git] / userapps / opensource / libosip2 / src / test / trecordr.c
1 /*
2   The oSIP library implements the Session Initiation Protocol (SIP -rfc2543-)
3   Copyright (C) 2001  Aymeric MOIZARD jack@atosc.org
4   
5   This library is free software; you can redistribute it and/or
6   modify it under the terms of the GNU Lesser General Public
7   License as published by the Free Software Foundation; either
8   version 2.1 of the License, or (at your option) any later version.
9   
10   This library is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   Lesser General Public License for more details.
14   
15   You should have received a copy of the GNU Lesser General Public
16   License along with this library; if not, write to the Free Software
17   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19
20
21 #ifdef ENABLE_MPATROL
22 #include <mpatrol.h>
23 #endif
24
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <osip2/internal.h>
29 #include <osipparser2/osip_message.h>
30
31
32 int
33 main (int argc, char **argv)
34 {
35   FILE *record_routes_file;
36
37
38   osip_record_route_t *record_route;
39   char *a_record_route;
40   char *dest;
41   char *res;
42
43   record_routes_file = fopen (argv[1], "r");
44   if (record_routes_file == NULL)
45     {
46       fprintf (stdout,
47                "Failed to open %s file.\nUsage: trecord_route record_routes.txt\n",
48                argv[1]);
49       exit (0);
50     }
51
52   a_record_route = (char *) osip_malloc (200);
53   res = fgets (a_record_route, 200, record_routes_file);        /* lines are under 200 */
54   while (res != NULL)
55     {
56
57       int errcode;
58
59       /* remove the last '\n' before parsing */
60       strncpy (a_record_route + strlen (a_record_route) - 1, "\0", 1);
61
62       if (0 != strncmp (a_record_route, "#", 1))
63         {
64           /* allocate & init record_route */
65           osip_record_route_init (&record_route);
66           printf ("=================================================\n");
67           printf ("RECORD_ROUTE TO PARSE: |%s|\n", a_record_route);
68           errcode = osip_record_route_parse (record_route, a_record_route);
69           if (errcode != -1)
70             {
71               if (osip_record_route_to_str (record_route, &dest) != -1)
72                 {
73                   printf ("result:                |%s|\n", dest);
74                   osip_free (dest);
75                 }
76             }
77           else
78             printf ("Bad record_route format: %s\n", a_record_route);
79           osip_record_route_free (record_route);
80           printf ("=================================================\n");
81         }
82       res = fgets (a_record_route, 200, record_routes_file);    /* lines are under 200 */
83     }
84   osip_free (a_record_route);
85   return 0;
86 }