summaryrefslogtreecommitdiffstats
path: root/utils.h
blob: 590eec99637ce8e43d609ee6170bbfc238860920 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
  Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
  This file is part of gluster-block.

  This file is licensed to you under your choice of the GNU Lesser
  General Public License, version 3 or any later version (LGPLv3 or
  later), or the GNU General Public License, version 2 (GPLv2), in all
  cases as published by the Free Software Foundation.
*/


# ifndef   _UTILS_H
# define   _UTILS_H   1

# include  <stdio.h>
# include  <stdlib.h>
# include  <stdbool.h>
# include  <string.h>
# include  <errno.h>


/* Target Create */
# define  FAILED_CREATE             "failed in create"
# define  FAILED_CREATING_FILE      "failed while creating block file in gluster volume"
# define  FAILED_CREATING_BACKEND   "failed while creating glfs backend"
# define  FAILED_CREATING_IQN       "failed while creating IQN"
# define  FAILED_CREATING_LUN       "failed while creating LUN"
# define  FAILED_SETTING_ATTRIBUTES "failed while setting attributes"
# define  FAILED_SAVEING_CONFIG     "failed while saving configuration"

/* Target List */
# define  FAILED_LIST               "failed in list"
# define  FAILED_LIST_BACKEND       "failed while listing glfs backends"

/* Target Info */
# define  FAILED_INFO               "failed in info"
# define  FAILED_GATHERING_INFO     "failed while gathering target info"

/* Target get cfgstring */
# define  FAILED_GATHERING_CFGSTR   "failed while gathering backend cfgstring"

/* Target Delete */
# define  FAILED_DELETE             "failed in delete"
# define  FAILED_DELETING_BACKEND   "failed while deleting glfs backend"
# define  FAILED_DELETING_IQN       "failed while deleting IQN"
# define  FAILED_DELETING_FILE      "failed while deleting block file from gluster volume"


# define ERROR(fmt, ...) \
         fprintf(stderr, "Error: " fmt " [at %s+%d :<%s>]\n", \
                 __VA_ARGS__, __FILE__, __LINE__, __FUNCTION__)

# define MSG(fmt, ...) \
         fprintf(stdout, fmt "\n", __VA_ARGS__)


# define  METALOCK(a, b) {\
                            memset (&a, 0, sizeof(a)); \
                            a.l_type = F_WRLCK;        \
                            if (glfs_posix_lock (b, F_SETLKW, &a)) {\
                              ERROR("%s", "glfs_posix_lock: failed");\
                              goto out;\
                            }\
                         }

# define  METAUPDATE(a, b, ...) {\
                              asprintf(&b, __VA_ARGS__);\
                              if(glfs_write (a, b, strlen(b), 0) < 0) {\
                                ERROR("%s", "glfs_write: failed");\
                                goto out;\
                              }\
                              GB_FREE(b); \
                           }

# define METAUNLOCK(a, b)   {\
                              a.l_type = F_UNLCK; \
                              glfs_posix_lock(b, F_SETLKW, &a); \
                            }


# define CALLOC(x)    calloc(1, x)

# define GB_ALLOC_N(ptr, count) gbAllocN(&(ptr), sizeof(*(ptr)), (count), \
                                         __FILE__, __FUNCTION__, __LINE__)

# define GB_ALLOC(ptr) gbAlloc(&(ptr), sizeof(*(ptr)), \
                               __FILE__, __FUNCTION__, __LINE__)

# define GB_STRDUP(dst, src) gbStrdup(&(dst), src, \
                                      __FILE__, __FUNCTION__, __LINE__)

# define GB_FREE(ptr) gbFree(1 ? (void *) &(ptr) : (ptr))

typedef enum Metakey {
  VOLUME = 0,
  GBID   = 1,
  SIZE   = 2,
  HA     = 3,
  ENTRYCREATE = 4,

  METAKEY__MAX = 5      /* Updata this when add new Key */
} Metakey;

static const char *const MetakeyLookup[] = {
    [VOLUME] = "VOLUME",
    [GBID]   = "GBID",
    [SIZE]   = "SIZE",
    [HA]     = "HA",
    [ENTRYCREATE] = "ENTRYCREATE",
    [METAKEY__MAX] = NULL,
};

typedef enum MetaStatus {
  CONFIGSUCCESS = 0,
  CONFIGFAIL   = 1,
  CONFIGINPROGRESS = 2,
  CLEANUPSUCCESS = 3,
  CLEANUPFAIL = 4,
  CLEANUPINPROGRES = 5,

  METASTATUS__MAX = 6      /* Updata this when add new Status type */
} MetaStatus;

static const char *const MetaStatusLookup[] = {
    [CONFIGINPROGRESS] = "CONFIGINPROGRESS",
    [CONFIGSUCCESS] = "CONFIGSUCCESS",
    [CONFIGFAIL] = "CONFIGFAIL",
    [CLEANUPINPROGRES] = "CLEANUPINPROGRESS",
    [CLEANUPSUCCESS] = "CLEANUPSUCCESS",
    [CLEANUPFAIL] = "CLEANUPFAIL",

    [METASTATUS__MAX] = NULL,
};


int blockMetaKeyEnumParse(const char *opt);

int blockMetaStatusEnumParse(const char *opt);

int gbAlloc(void *ptrptr, size_t size,
            const char *filename, const char *funcname, size_t linenr);

int gbAllocN(void *ptrptr, size_t size, size_t count,
             const char *filename, const char *funcname, size_t linenr);

int gbStrdup(char **dest, const char *src,
             const char *filename, const char *funcname, size_t linenr);

void gbFree(void *ptrptr);

#endif  /* _UTILS_H */