diff options
Diffstat (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other')
-rw-r--r-- | vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/Makefile | 31 | ||||
-rw-r--r-- | vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/hello_evel_world.c | 118 |
2 files changed, 0 insertions, 149 deletions
diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/Makefile b/vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/Makefile deleted file mode 100644 index 6acfdd42..00000000 --- a/vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -CC=gcc - -ARCH=$(shell getconf LONG_BIT) -CODE_ROOT=$(CURDIR)/../../.. -LIBS_DIR=$(CODE_ROOT)/libs/x86_$(ARCH) -INCLUDE_DIR=$(CODE_ROOT)/code/evel_library - -#****************************************************************************** -# Standard compiler flags. * -#****************************************************************************** -CPPFLAGS= -CFLAGS=-Wall -g -fPIC - -all: hello_evel_world - -hello_evel_world: hello_evel_world.c - $(CC) $(CPPFLAGS) $(CFLAGS) -o hello_evel_world \ - -L $(LIBS_DIR) \ - -I $(INCLUDE_DIR) \ - hello_evel_world.c \ - -lpthread \ - -level \ - -lcurl - -#****************************************************************************** -# Configure the vel_username and vel_password to -# vel_username = username -# vel_password = password -#****************************************************************************** -run: all - ./hello_evel_world localhost 30000 username password diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/hello_evel_world.c b/vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/hello_evel_world.c deleted file mode 100644 index b03260b9..00000000 --- a/vnfs/VES5.0/evel/evel-library/code/evel_training/11-raise-other/hello_evel_world.c +++ /dev/null @@ -1,118 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <unistd.h> - -#include "evel.h" - -/*****************************************************************************/ -/* Local prototypes. */ -/*****************************************************************************/ -static void demo_other(void); - -int main(int argc, char ** argv) -{ - EVEL_ERR_CODES evel_rc = EVEL_SUCCESS; - EVENT_HEADER * heartbeat = NULL; - - printf("\nHello AT&T Vendor Event world!\n"); - fflush(stdout); - - if (argc != 5) - { - fprintf(stderr, - "Usage: %s <FQDN>|<IP address> <port> " - "<username> <password>\n", argv[0]); - exit(-1); - } - - /***************************************************************************/ - /* Initialize */ - /***************************************************************************/ - if (evel_initialize(argv[1], /* FQDN */ - atoi(argv[2]), /* Port */ - NULL, /* optional path */ - NULL, /* optional topic */ - 0, /* HTTPS? */ - argv[3], /* Username */ - argv[4], /* Password */ - EVEL_SOURCE_VIRTUAL_MACHINE, /* Source type */ - "EVEL training demo", /* Role */ - 0)) /* Verbosity */ - { - fprintf(stderr, "\nFailed to initialize the EVEL library!!!\n"); - exit(-1); - } - else - { - printf("\nInitialization completed\n"); - } - - /***************************************************************************/ - /* Send a heartbeat just to show we're alive! */ - /***************************************************************************/ - heartbeat = evel_new_heartbeat(); - if (heartbeat != NULL) - { - evel_rc = evel_post_event(heartbeat); - if (evel_rc != EVEL_SUCCESS) - { - printf("Post failed %d (%s)", evel_rc, evel_error_string()); - } - } - else - { - printf("New heartbeat failed"); - } - - /***************************************************************************/ - /* Raise a state change */ - /***************************************************************************/ - demo_other(); - - /***************************************************************************/ - /* Terminate */ - /***************************************************************************/ - sleep(1); - evel_terminate(); - printf("Terminated\n"); - - return 0; -} - -/**************************************************************************//** - * Create and send an other event. - *****************************************************************************/ -void demo_other(void) -{ - EVENT_OTHER * other = NULL; - EVEL_ERR_CODES evel_rc = EVEL_SUCCESS; - - other = evel_new_other(); - if (other != NULL) - { - evel_other_field_add(other, - "Other field A", - "Other value A"); - evel_other_field_add(other, - "Other field B", - "Other value B"); - evel_other_field_add(other, - "Other field C", - "Other value C"); - evel_rc = evel_post_event((EVENT_HEADER *)other); - if (evel_rc == EVEL_SUCCESS) - { - printf("Post OK!\n"); - } - else - { - printf("Post Failed %d (%s)\n", evel_rc, evel_error_string()); - } - } - else - { - printf("Failed to create event (%s)\n", evel_error_string()); - } - - printf(" Processed Other\n"); -} |