forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreactor_proc.c
119 lines (98 loc) · 2.77 KB
/
reactor_proc.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
/*
* Copyright (C) 2021 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.
*/
#include "cfg_reload.h"
#include "reactor.h"
#include "reactor_proc.h"
int reactor_proc_init(char *name)
{
if ( init_worker_reactor( name, RCT_PRIO_MAX)<0 ) {
LM_ERR("failed to init reactor <%s>\n",name);
goto error;
}
/* start watching for the dedicated IPC jobs */
if (reactor_add_reader(IPC_FD_READ_SELF, F_IPC, RCT_PRIO_ASYNC, NULL)<0){
LM_CRIT("failed to add IPC pipe to reactor <%s>\n",name);
goto error;
}
return 0;
error:
destroy_worker_reactor();
return -1;
}
int reactor_proc_add_fd(int fd, reactor_proc_cb_f func, void *param)
{
struct reactor_proc_cb *cb;
cb = (struct reactor_proc_cb *)pkg_malloc(sizeof(struct reactor_proc_cb));
if (cb==NULL) {
LM_ERR("failed to allocate a reactor_proc <%s> callback\n",
reactor_name());
return -1;
}
cb->func = func;
cb->param = param;
if (reactor_add_reader( fd, F_GEN_PROC, RCT_PRIO_PROC, cb)<0){
LM_CRIT("failed to add fd to reactor <%s>\n", reactor_name());
return -1;
}
return 0;
}
inline static int handle_io(struct fd_map* fm, int idx,int event_type)
{
int n = 0;
pt_become_active();
pre_run_handle_script_reload(fm->app_flags);
switch(fm->type){
case F_GEN_PROC:
n = ((struct reactor_proc_cb*)fm->data)->func(
fm->fd,
((struct reactor_proc_cb*)fm->data)->param,
(event_type==IO_WATCH_TIMEOUT)?1:0
);
break;
case F_SCRIPT_ASYNC:
async_script_resume_f( fm->fd, fm->data,
(event_type==IO_WATCH_TIMEOUT)?1:0 );
break;
case F_FD_ASYNC:
async_fd_resume( fm->fd, fm->data);
break;
case F_LAUNCH_ASYNC:
async_launch_resume( fm->fd, fm->data);
break;
case F_IPC:
ipc_handle_job(fm->fd);
break;
default:
LM_CRIT("unknown fd type %d in reactor proc\n", fm->type);
n = -1;
break;
}
post_run_handle_script_reload();
pt_become_idle();
return n;
}
int reactor_proc_loop( void )
{
reactor_main_loop( REACTOR_PROC_TIMEOUT, error,);
destroy_worker_reactor();
error:
LM_ERR("failed to fire up reactor <%s>\n",reactor_name());
return -1;
}