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
|
/* Quagga Pthreads support -- header
* Copyright (C) 2009 Chris Hall (GMCH), Highwayman
*
* This file is part of GNU Zebra.
*
* GNU Zebra 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, or (at your
* option) any later version.
*
* GNU Zebra 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 GNU Zebra; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/* This MUST come first... otherwise we don't get __USE_UNIX98, which is */
/* essential if glibc is to allow pthread_mutexattr_settype() to be used. */
#include "config.h"
#include <signal.h>
#include <string.h>
#include "qpnexus.h"
#include "memory.h"
/* prototypes */
static void* qpn_start(void* arg);
/*==============================================================================
* Quagga Nexus Interface -- qpt_xxxx
*
*/
/* Initialise a nexus -- allocating it if required.
*
* Returns the qtn_nexus.
*/
qpn_nexus
qpn_init_new(qpn_nexus qpn)
{
if (qpn == NULL)
qpn = XCALLOC(MTYPE_QPN_NEXUS, sizeof(struct qpn_nexus)) ;
else
memset(qpn, 0, sizeof(struct qpn_nexus)) ;
qpn->selection = qps_selection_init_new(qpn->selection);
qpn->pile = qtimer_pile_init_new(qpn->pile);
/* TODO mqueue initialisation */
return qpn;
}
void
qpn_free(qpn_nexus qpn)
{
/* timers and the pile */
qtimer qtr;
while ((qtr = qtimer_pile_ream(qpn->pile, 1)))
{
qtimer_free(qtr);
}
/* TODO: free qtn->selection */
/* TODO: free qtn->queue */
XFREE(MTYPE_QPN_NEXUS, qpn) ;
}
/* Create and execute the qpthread */
void
qpn_exec(qpn_nexus qpn)
{
qpn->thread_id = qpt_thread_create(qpn_start, qpn, NULL) ;
}
static void*
qpn_start(void* arg)
{
qpn_nexus qpn = arg;
int actions;
while (!qpn->terminate)
{
qtime_mono_t now = qt_get_monotonic();
/* process timers */
while (qtimer_pile_dispatch_next(qpn->pile, now))
{
}
/* block for some input, output or timeout */
actions = qps_pselect( qpn->selection,
qtimer_pile_top_time(qpn->pile, now + QTIME(MAX_PSELECT_TIMOUT)) );
/* process I/O actions */
while (actions)
{
actions = qps_dispatch_next(qpn->selection) ;
}
/* TODO process message queue */
}
qpn_free(qpn);
return NULL;
}
|