aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-plugin/vapi/vapi_safe.c
blob: bd9cfe61cdcd85f563614f2e2ca2a9479d8c7262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <vapi/vapi_safe.h>
#include <stdlib.h>
#include <stdio.h>

#define APP_NAME "hicn_plugin"
#define MAX_OUTSTANDING_REQUESTS 4
#define RESPONSE_QUEUE_SIZE 2

pthread_mutex_t *mutex = NULL;
u32 count = 0;
int lock = 0;

vapi_error_e vapi_connect_safe(vapi_ctx_t *vapi_ctx_ret, int async) {
  vapi_error_e rv  = VAPI_OK;
  vapi_ctx_t g_vapi_ctx_instance = NULL;

  while (!__sync_bool_compare_and_swap(&lock, 0, 1));

  rv = vapi_ctx_alloc(&g_vapi_ctx_instance);
  if (rv != VAPI_OK)
    goto err;

  if (!mutex)
    {
      mutex = malloc(sizeof(pthread_mutex_t));
      if (!mutex)
	goto err_mutex_alloc;

      if (pthread_mutex_init(mutex, NULL) != 0) {
	printf("Mutex init failed\n");
	goto err_mutex_init;
      }
    }

  if (!count)
    {
      rv = vapi_connect(g_vapi_ctx_instance, APP_NAME, NULL,
			MAX_OUTSTANDING_REQUESTS, RESPONSE_QUEUE_SIZE,
			async ? VAPI_MODE_NONBLOCKING : VAPI_MODE_BLOCKING, true);

      if (rv != VAPI_OK)
	goto err_vapi;

      count++;
    }

  *vapi_ctx_ret = g_vapi_ctx_instance;

  while (!__sync_bool_compare_and_swap(&lock, 1, 0));
  return rv;

 err_mutex_init:
  free(mutex);
 err_mutex_alloc:
 err_vapi:
  vapi_ctx_free(g_vapi_ctx_instance);
 err:
  while (!__sync_bool_compare_and_swap(&lock, 1, 0));
  return VAPI_ENOMEM;
}

vapi_error_e vapi_disconnect_safe() {
  pthread_mutex_lock(mutex);
  vapi_error_e rv = VAPI_OK;
  pthread_mutex_unlock(mutex);
  return rv;
}

void vapi_lock() {
  pthread_mutex_lock(mutex);
}

void vapi_unlock() {
  pthread_mutex_unlock(mutex);
}