forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.h
98 lines (84 loc) · 3.07 KB
/
context.h
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
/*
* 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-10-30 initial version (liviu)
*/
/*
* This header exposes the basic operations with an OpenSIPS context.
*
* A "context" is:
* - a data storage buffer
* - typically allocated next to the intended structure
* e.g. | struct cell | CONTEXT_BUFFER |
*
* !! All data registrations must be done in the pre-forking phases !!
* (see the register functions below)
*/
#ifndef __CONTEXT_H
#define __CONTEXT_H
#include <stdlib.h>
typedef void * context_p;
enum osips_context {
CONTEXT_GLOBAL,
CONTEXT_TRAN,
CONTEXT_COUNT,
};
#define context_of(entity_p) ((context_p)((entity_p) + 1))
#define context_size(enum_ctx) (context_sizes[enum_ctx])
extern context_p current_processing_ctx;
extern unsigned int context_sizes[];
/*
* allocate a new GLOBAL context in pkg mem
*
* Note: this will not change the "current_processing_ctx"
*/
context_p context_alloc(enum osips_context type);
#define context_free(context_p) pkg_free(context_p)
/*
* destroys a context by calling each callback registered
*/
void context_destroy(enum osips_context type, context_p ctx);
/*
* - register a different function for each field you add in the context
* - each function will be called exactly once, every time a context is freed
*
* Note: for int and (str *) types, you must perform the appropriate casting
*/
typedef void (*context_destroy_f)(void *);
/*
* - the register functions should be called before any forks are made
* (mod_init(), function fixups)
*
* - they reserve and return a position in the context buffer of the given type
*/
int context_register_int(enum osips_context type, context_destroy_f f);
int context_register_str(enum osips_context type, context_destroy_f f);
int context_register_ptr(enum osips_context type, context_destroy_f f);
void context_put_int(enum osips_context type, context_p ctx,
int pos, int data);
void context_put_str(enum osips_context type, context_p ctx,
int pos, str *data);
void context_put_ptr(enum osips_context type, context_p ctx,
int pos, void *data);
int context_get_int(enum osips_context type, context_p ctx, int pos);
str *context_get_str(enum osips_context type, context_p ctx, int pos);
void *context_get_ptr(enum osips_context type, context_p ctx, int pos);
#endif /* __CONTEXT_H */