forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.c
153 lines (131 loc) · 4.18 KB
/
context.c
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
152
153
/*
* Copyright (C) 2014 OpenSIPS Solutions
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2014-12-10 initial version (liviu)
*/
#include "str.h"
#include "mem/mem.h"
#include "context.h"
#include <string.h>
/* Pointer to the current processing context */
context_p current_processing_ctx = NULL;
unsigned int context_sizes[CONTEXT_COUNT];
unsigned int type_sizes[CONTEXT_COUNT][CONTEXT_COUNT_TYPE];
unsigned int type_offsets[CONTEXT_COUNT][CONTEXT_COUNT_TYPE];
/* vector of destroy functions */
static context_destroy_f *context_destroy_array[CONTEXT_COUNT];
static void register_context_destroy(context_destroy_f f,
enum osips_context ctx, enum osips_context_val t)
{
static int count = 0; /* contains all counters */
context_destroy_f *tmp;
int pos = 0;
int i;
/*
* group all functions based on their types:
* first the int functions, then the str and pointers the last
*/
switch (t) {
case CONTEXT_PTR_TYPE:
pos += type_sizes[ctx][CONTEXT_PTR_TYPE];
case CONTEXT_STR_TYPE:
pos += type_sizes[ctx][CONTEXT_STR_TYPE];
case CONTEXT_INT_TYPE:
pos += type_sizes[ctx][CONTEXT_INT_TYPE];
break;
default:
LM_ERR("should not get here with ctx %d\n", t);
return;
}
/* TODO: check whether this should be in pkg or shm? */
tmp = pkg_realloc(context_destroy_array[ctx], (count + 1) * sizeof(context_destroy_f));
if (!tmp) {
LM_ERR("cannot add any more destroy functions\n");
return;
}
context_destroy_array[ctx] = tmp;
/* move everything to the right to make room for pos */
for (i = count; i > pos; i--)
context_destroy_array[ctx][i] = context_destroy_array[ctx][i - 1];
context_destroy_array[ctx][pos] = f;
count++;
}
void context_destroy(enum osips_context ctxtype, context_p ctx)
{
int f = 0;
int n;
int i;
str *s;
void *p;
/* int ctx */
for (n = 0; n < type_sizes[ctxtype][CONTEXT_INT_TYPE]; n++, f++)
if (context_destroy_array[ctxtype][f]) {
i = context_get_int(ctxtype, ctx, n);
if (i)/* XXX: should we call for 0 values? */
context_destroy_array[ctxtype][f](&i);
}
/* str ctx */
for (n = 0; n < type_sizes[ctxtype][CONTEXT_STR_TYPE]; n++, f++)
if (context_destroy_array[ctxtype][f]) {
s = context_get_str(ctxtype, ctx, n);
if (s)/* XXX: how do we determine if s is empty? */
context_destroy_array[ctxtype][f](s);
}
/* ptr ctx */
for (n = 0; n < type_sizes[ctxtype][CONTEXT_PTR_TYPE]; n++, f++) {
if (context_destroy_array[ctxtype][f]) {
p = context_get_ptr(ctxtype, ctx, n);
if (p)
context_destroy_array[ctxtype][f](p);
}
}
}
context_p context_alloc(enum osips_context type)
{
context_p ctx;
ctx = pkg_malloc(context_size(type));
if (!ctx) {
LM_ERR("no more pkg mem\n");
return NULL;
}
return ctx;
}
int context_register_int(enum osips_context type, context_destroy_f f)
{
context_sizes[type] += sizeof(int);
type_offsets[type][CONTEXT_STR_TYPE] += sizeof(int);
type_offsets[type][CONTEXT_PTR_TYPE] += sizeof(int);
register_context_destroy(f, type, CONTEXT_INT_TYPE);
return type_sizes[type][CONTEXT_INT_TYPE]++;
}
int context_register_str(enum osips_context type, context_destroy_f f)
{
context_sizes[type] += sizeof(str);
type_offsets[type][CONTEXT_PTR_TYPE] += sizeof(str);
register_context_destroy(f, type, CONTEXT_STR_TYPE);
return type_sizes[type][CONTEXT_STR_TYPE]++;
}
int context_register_ptr(enum osips_context type, context_destroy_f f)
{
context_sizes[type] += sizeof(void *);
register_context_destroy(f, type, CONTEXT_PTR_TYPE);
return type_sizes[type][CONTEXT_PTR_TYPE]++;
}