summaryrefslogtreecommitdiffstats
path: root/call.cpp
blob: a566080853d668edb2e158e3927cfc46b03bdd83 (plain) (blame)
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
/*****************************************************************************\
**                                                                           **
** PBX4Linux                                                                 **
**                                                                           **
**---------------------------------------------------------------------------**
** Copyright: Andreas Eversberg                                              **
**                                                                           **
** call functions                                                            **
**                                                                           **
\*****************************************************************************/ 

#include <stdio.h>
//#include <string.h>
//#include <stdlib.h>
//#include <unistd.h>
//#include <poll.h>
//#include <sys/types.h>
//#include <sys/stat.h>
//#include <fcntl.h>
#include "main.h"
//#define __u8 unsigned char
//#define __u16 unsigned short
//#define __u32 unsigned long
//#include "linux/isdnif.h"

unsigned long call_serial = 1; /* must be 1, because 0== no call */

//CALL_STATES

class Call *call_first = NULL;

/*
 * find the call with call_id
 */ 
class Call *find_call_id(unsigned long call_id)
{
	class Call *call = call_first;

	while(call)
	{
//printf("comparing: '%s' with '%s'\n", name, call->c_name);
		if (call->c_serial == call_id)
			return(call);
		call = call->next;
	}

	return(NULL);
}


/*
 * constructor for a new call 
 */
Call::Call(class Endpoint *epoint)
{
	class Call **callp;

	if (!epoint)
	{
		PERROR("software error, epoint is NULL.\n");
		exit(-1);
	}
	c_serial = call_serial++;
	c_type = CALL_TYPE_NONE;

	/* attach to chain */
	next = NULL;
	callp = &call_first;
	while(*callp)
		callp = &((*callp)->next);
	*callp = this;

	classuse++;
}


/*
 * call descructor
 */
Call::~Call()
{
	class Call *cl, **clp;

	classuse--;

	cl = call_first;
	clp = &call_first;
	while(cl)
	{
		if (cl == this)
			break;
		clp = &cl->next;
		cl = cl->next;
	}
	if (!cl)
	{
		PERROR("software error, call not in chain! exitting\n");
		exit(-1);
	}
	*clp = cl->next; /* detach from chain */
}



/* epoint sends a message to a call
 *
 */
void Call::message_epoint(unsigned long epoint_id, int message_type, union parameter *param)
{
}


/* call process is called from the main loop
 * it processes the current calling state.
 * returns 0 if call nothing was done
 */
int Call::handler(void)
{
	return(0);
}

void Call::release(unsigned long epoint_id, int hold, int location, int cause)
{
}
	
/* free all call structures */
void call_free(void)
{

	if (!call_first)
	{
		PDEBUG(DEBUG_CALL, "no more pending call(s), done!\n");
		return;
	}
	while(call_first)
	{
		if (options.deb & DEBUG_CALL)
		{
			PDEBUG(DEBUG_CALL, "freeing pending call\n");
		}

		delete call_first;
	}
}