55fdc641acd41f2c4192ffa945bf244799eb667a
[trust_router.git] / tpq / example / tpqc_main.c
1 /*
2  * Copyright (c) 2012, 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 #include <stdlib.h>
36 #include <stdio.h>
37
38 #include <tpq.h>
39
40 static int tpqc_response_received = 0;
41
42 void tpqc_print_usage (const char *name)
43 {
44   printf("Usage: %s <server> <realm> <coi>\n", name);
45 }
46
47 void tpqc_resp_handler (TPQC_INSTANCE * tpqc, 
48                         TPQ_RESP *resp, 
49                         void *cookie) 
50 {
51   printf ("Response received! Realm = %s, COI = %s.\n", resp->realm->buf, 
52           resp->coi->buf);
53   tpqc_response_received = 1;
54 }
55
56 int main (int argc, 
57           const char *argv[]) 
58 {
59   TPQC_INSTANCE *tpqc;
60   TPQ_REQ *treq;
61   char *server = NULL;
62   char *realm = NULL;
63   char *coi = NULL;
64   void *cookie = NULL;
65   int conn = 0;
66   int rc;
67
68   /* Parse command-line arguments */ 
69   if (argc != 4) {
70     tpqc_print_usage(argv[0]);
71     exit(1);
72   }
73
74   /* TBD -- validity checking, dealing with quotes, etc. */
75   server = (char *)argv[1];
76   realm = (char *)argv[2];
77   coi = (char *)argv[3];
78
79   /* Create a TPQ client instance */
80   tpqc = tpqc_create();
81
82   /* Set-up TPQ connection */
83   if (-1 == (conn = tpqc_open_connection(tpqc, server))) {
84     /* Handle error */
85     printf("Error in tpqc_open_connection.\n");
86     return 1;
87   };
88
89   /* Send a TPQ request */
90   if (rc = tpqc_send_request(tpqc, conn, realm, coi, &tpqc_resp_handler, NULL)) {
91     /* Handle error */
92     printf("Error in tpqc_send_request, rc = %d.\n", rc);
93     return 1;
94   }
95     
96   /* Wait for a response */
97   while (!tpqc_response_received);
98
99   /* Clean-up the TPQ client instance, and exit */
100   tpqc_destroy(tpqc);
101
102   return 0;
103 }
104