b03260b9fb97079e7e72ffb2a6d79b03a7f9f03e
[demo.git] / VES5.0 / evel / evel-library / code / evel_training / 11-raise-other / hello_evel_world.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4
5 #include "evel.h"
6
7 /*****************************************************************************/
8 /* Local prototypes.                                                         */
9 /*****************************************************************************/
10 static void demo_other(void);
11
12 int main(int argc, char ** argv)
13 {
14   EVEL_ERR_CODES evel_rc = EVEL_SUCCESS;
15   EVENT_HEADER * heartbeat = NULL;
16
17   printf("\nHello AT&T Vendor Event world!\n");
18   fflush(stdout);
19
20   if (argc != 5)
21   {
22     fprintf(stderr,
23             "Usage: %s <FQDN>|<IP address> <port> "
24             "<username> <password>\n", argv[0]);
25     exit(-1);
26   }
27
28   /***************************************************************************/
29   /* Initialize                                                              */
30   /***************************************************************************/
31   if (evel_initialize(argv[1],                      /* FQDN                  */
32                       atoi(argv[2]),                /* Port                  */
33                       NULL,                         /* optional path         */
34                       NULL,                         /* optional topic        */
35                       0,                            /* HTTPS?                */
36                       argv[3],                      /* Username              */
37                       argv[4],                      /* Password              */
38                       EVEL_SOURCE_VIRTUAL_MACHINE,  /* Source type           */
39                       "EVEL training demo",         /* Role                  */
40                       0))                           /* Verbosity             */
41   {
42     fprintf(stderr, "\nFailed to initialize the EVEL library!!!\n");
43     exit(-1);
44   }
45   else
46   {
47     printf("\nInitialization completed\n");
48   }
49
50   /***************************************************************************/
51   /* Send a heartbeat just to show we're alive!                              */
52   /***************************************************************************/
53   heartbeat = evel_new_heartbeat();
54   if (heartbeat != NULL)
55   {
56     evel_rc = evel_post_event(heartbeat);
57     if (evel_rc != EVEL_SUCCESS)
58     {
59       printf("Post failed %d (%s)", evel_rc, evel_error_string());
60     }
61   }
62   else
63   {
64     printf("New heartbeat failed");
65   }
66
67   /***************************************************************************/
68   /* Raise a state change                                                    */
69   /***************************************************************************/
70   demo_other();
71
72   /***************************************************************************/
73   /* Terminate                                                               */
74   /***************************************************************************/
75   sleep(1);
76   evel_terminate();
77   printf("Terminated\n");
78
79   return 0;
80 }
81
82 /**************************************************************************//**
83  * Create and send an other event.
84  *****************************************************************************/
85 void demo_other(void)
86 {
87   EVENT_OTHER * other = NULL;
88   EVEL_ERR_CODES evel_rc = EVEL_SUCCESS;
89
90   other = evel_new_other();
91   if (other != NULL)
92   {
93     evel_other_field_add(other,
94                          "Other field A",
95                          "Other value A");
96     evel_other_field_add(other,
97                          "Other field B",
98                          "Other value B");
99     evel_other_field_add(other,
100                          "Other field C",
101                          "Other value C");
102     evel_rc = evel_post_event((EVENT_HEADER *)other);
103     if (evel_rc == EVEL_SUCCESS)
104     {
105       printf("Post OK!\n");
106     }
107     else
108     {
109       printf("Post Failed %d (%s)\n", evel_rc, evel_error_string());
110     }
111   }
112   else
113   {
114     printf("Failed to create event (%s)\n", evel_error_string());
115   }
116
117   printf("   Processed Other\n");
118 }