forked from Metaswitch/sipp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
socketowner.cpp
132 lines (111 loc) · 3.94 KB
/
socketowner.cpp
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
/*
* This program 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.
*
* This program 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author : Richard GAYRAUD - 04 Nov 2003
* Olivier Jacques
* From Hewlett Packard Company.
* Shriram Natarajan
* Peter Higginson
* Eric Miller
* Venkatesh
* Enrico Hartung
* Nasir Khan
* Lee Ballard
* Guillaume Teissier from FTR&D
* Wolfgang Beck
* Venkatesh
* Vlad Troyanker
* Charles P Wright from IBM Research
* Amit On from Followap
* Jan Andres from Freenet
* Ben Evans from Open Cloud
* Marc Van Diest from Belgacom
* Michael Dwyer from Cibation
*/
#include <iterator>
#include <algorithm>
#include <fstream>
#include <iostream>
#include <sys/types.h>
#include <sys/wait.h>
#include <assert.h>
#include "sipp.hpp"
socket_owner_map_map socket_to_owners;
struct sipp_socket *socketowner::associate_socket(struct sipp_socket *socket) {
if (socket) {
this->call_socket = socket;
add_owner_to_socket(socket);
}
return socket;
}
struct sipp_socket *socketowner::dissociate_socket() {
struct sipp_socket *ret = this->call_socket;
remove_owner_from_socket(this->call_socket);
this->call_socket = NULL;
return ret;
}
unsigned long socketowner::nextownerid = 1;
socketowner::socketowner() {
this->call_socket = NULL;
this->ownerid = socketowner::nextownerid++;
}
socketowner::~socketowner() {
if (this->call_socket) {
sipp_close_socket(dissociate_socket());
}
}
void socketowner::add_owner_to_socket(struct sipp_socket *socket) {
socket_owner_map_map::iterator map_it = socket_to_owners.find(socket);
/* No map defined for this socket. */
if (map_it == socket_to_owners.end()) {
socket_to_owners.insert(socket_map_pair(socket, new owner_map));
map_it = socket_to_owners.find(socket);
assert(map_it != socket_to_owners.end());
}
owner_map *socket_owner_map = (owner_map *) map_it->second;
socket_owner_map->insert(long_owner_pair(this->ownerid, this));
}
void socketowner::remove_owner_from_socket(struct sipp_socket *socket) {
socket_owner_map_map::iterator map_it = socket_to_owners.find(socket);
/* We must have a map for this socket. */
assert(map_it != socket_to_owners.end());
owner_map *socket_owner_map = (owner_map *) map_it->second;
owner_map::iterator owner_it = socket_owner_map->find(this->ownerid);
/* And our owner must exist in the map. */
assert(owner_it != socket_owner_map->end());
socket_owner_map->erase(owner_it);
/* If we have no more calls, we can delete this entry. */
if (socket_owner_map->begin() == socket_owner_map->end()) {
delete socket_owner_map;
socket_to_owners.erase(map_it);
}
}
/* The caller must delete this list. */
owner_list *get_owners_for_socket(struct sipp_socket *socket) {
owner_list *l = new owner_list;
socket_owner_map_map::iterator map_it = socket_to_owners.find(socket);
/* No map defined for this socket. */
if (map_it == socket_to_owners.end()) {
return l;
}
owner_map *socket_owner_map = (owner_map *) map_it->second;
owner_map::iterator owner_it;
for (owner_it = socket_owner_map->begin();
owner_it != socket_owner_map->end();
owner_it++) {
l->insert(l->end(), owner_it->second);
}
return l;
}