A
download otdialsc.cpp
Language: C++
Copyright: (c) 1995-99 OpenComm do Brasil Ltda.
LOC: 357
Project Info
Open Telephony Server(opentel)
Server: SourceForge
Type: cvs
...el\server\drivers\dialogic\
   dialogic.dsp
   otdialap.cpp
   otdialap.h
   otdialar.cpp
   otdialar.h
   otdialdev.h
   otdialdrv.cpp
   otdialdrv.h
   otdialdti.cpp
   otdialdti.h
   otdialdxx.cpp
   otdialdxx.h
   otdialei.cpp
   otdialei.h
   otdialev.cpp
   otdialev.h
   otdialex.cpp
   otdialex.h
   otdialgc.cpp
   otdialgc.h
   otdialmsi.cpp
   otdialmsi.h
   otdialogic.cpp
   otdialogic.h
   otdialsc.cpp
   otdialsc.h
   otdialtd.cpp
   otdialtd.h
   otdialtg.cpp
   otdialtg.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
/**************************************************************************
* OpenTel Telephony Server & Framework.
* Copyright (c) 1995-99 OpenComm do Brasil Ltda.
* Todos os direitos reservados.
* Este arquivo contem material confidencial de OpenComm dp Brasil, e deve
* darse tratamento como tal.
* -------------------------------------------------------------------------
* Descripcion:
* Implementao do OtBusSC e os Listeners e Transmitters para os boards
* QUe utilizam o sc bus.
*
* -------------------------------------------------------------------------
* Uso:
*
* -------------------------------------------------------------------------
* Ejemplos:
* -------------------------------------------------------------------------
* Problemas conocidos:
* -------------------------------------------------------------------------
* Historia del archivo:
*
* 03/09/98 - Creacion de la clase - JEB
* 25/03/00 - Starting adding support for bus configuration = JEB
**************************************************************************/

#ident "@(#) $Header: /cvsroot/opentel/opentel/server/drivers/dialogic/otdialsc.cpp,v 1.3 2000/04/21 20:27:30 jbernab Exp $"

#include <otconfig.h>

#ifdef _WINDOWS
#include <windows.h>
#include <io.h>
#endif

#ifdef __unix
#include <stdio.h>
#endif

extern "C" {
#include <srllib.h>
#ifdef CONFIG_DIALOGIC_DTI
#include <dtilib.h>
#endif
#include <dxxxlib.h>
#ifdef CONFIG_DIALOGIC_MSI
#include <msilib.h>
#endif
#ifdef CONFIG_DIALOGICGC
#include <gclib.h>
#include <gcerr.h>
#endif
#include <string.h>
#include <stdio.h>
#include <malloc.h>
};

#include <otarchive.includes>
#include <otbus.includes>

#include <dialogic/otdialogic.h>

#ifdef CONFIG_DIALOGIC_DXX
#include <dialogic/otdialdxx.h>
#endif

#ifdef CONFIG_DIALOGIC_MSI
#include <dialogic/otdialmsi.h>
#endif

#include <dialogic/otdialsc.h>
#include <otnum.includes>

#include <OtBusConfig.h>


OT_IMPLEMENT_DYNCREATE(OtBusSC, OtBus);

OtBusSC::OtBusSC() :
OtBus()
{
	int x;
	for(x=0;x<1024;x++) {                   // Creates Free TimeSlot Pool
		OtTimeSlot *t=new OtTimeSlotSC(this,x);
		m_freePool.add(t);
	}
}

OtBusSC::~OtBusSC(void)
///////////////////////
{
}

void
OtBusSC::initialize( OtBusConfig &busConfig )
/////////////////////////////////////////////
{
	OtBus::initialize( busConfig );
}



OtTimeSlotSC *OtBusSC::allocTimeSlotById(long id)
/////////////////////////////////////////////////
{
	OtTimeSlotSC *t=NULL;
	
    OtListCursor<OtTimeSlot> c(m_freePool);
	
    for(c.first();c.current()!=NULL;c.next()) {
        t=(OtTimeSlotSC *)c.current();
        if(t->getScBusTs()==id) {
			allocTimeSlotByTS(t);
			break;
		}
	}
	if(!t)
		throw OtException(OtString("OtBusSC::AllocTimeSlotById: Couldn't alloc time slot ") + OtString((char *)OtNum(id)) + OtString(", id not found in pool"));
	
	return t;
}

//
//
//      OtTimeSlotSC
//
//

OtTimeSlotSC::OtTimeSlotSC(OtBusSC *b, long id)
{
	OTASSERT(b!=NULL);
	m_bus=b;
	m_ts=id;
}

OtTimeSlotSC::~OtTimeSlotSC()
{
	m_bus=NULL;
	m_ts=ERROR;
}

int OtTimeSlotSC::isOnBus(OtBus *b) const
{
	return b==m_bus;
}

OtBus *OtTimeSlotSC::getBus(void)
{
	return m_bus;
}


//
//
//      OtTimeSlotListenerDxxSC
//  OtTimeSlotTransmitterDxxSC
//
#ifdef CONFIG_DIALOGIC_DXX

OtTimeSlotListenerDxxSC::OtTimeSlotListenerDxxSC(OtDialogicDxx *dxx,OtBusSC *bus) :
m_dxx(dxx),
m_bus(bus)
{
	
}

OtTimeSlotListenerDxxSC::~OtTimeSlotListenerDxxSC()
{
	m_dxx=NULL;
	m_bus=NULL;
}

void OtTimeSlotListenerDxxSC::listenOn(OtTimeSlot *t)
{
	OTASSERT(t!=NULL);
	
	if(!t->isOnBus(m_bus))
		throw OtException("OtTimeSlotListenerDxxSC::ListenOn(): TimeSlot not on same bus");
	
	SC_TSINFO tsinfo;
	long scts;
	OtTimeSlotSC *tssc=(OtTimeSlotSC *)t;
	
	scts = tssc->getScBusTs();
	tsinfo.sc_numts = 1;
	tsinfo.sc_tsarrayp = &scts;
	
	OtDebug(OT_DEBUG_SC, "DxxSC(%s)::listenOn(bus=%s, ts=%d)\n",(char *)m_dxx->getName(),(char *)m_bus->getName(),scts);
	
	if(dx_listen(m_dxx->getFd(), &tsinfo)<0)
		throw OtDialogicException(m_dxx->getFd());
	
	// Framework Stuff
	m_ListenTS=tssc;
	tssc->addListener(this);
}

void OtTimeSlotListenerDxxSC::unListen()
{
	OtDebug(OT_DEBUG_SC, "DxxSC(%s)::UnListen()\n",(char *)m_dxx->getName());
	
	// Dialogic Stuff
	if(dx_unlisten(m_dxx->getFd())<0)
		throw OtDialogicException(m_dxx->getFd());
	
	// Framework Stuff
	if(m_ListenTS)
		m_ListenTS->removeListener(this);
	
	m_ListenTS=NULL;
}

OtTimeSlot *OtTimeSlotListenerDxxSC::getLsTimeSlot(void) const
{
	return m_ListenTS;
}

int OtTimeSlotListenerDxxSC::isListenFixed(void) const
{
	return false;           // Every Resource in SCBus has the listen ts mobile
}

//
//

OtTimeSlotTransmitterDxxSC::OtTimeSlotTransmitterDxxSC(OtDialogicDxx *dxx, OtBusSC *bus) :
m_dxx(dxx),
m_bus(bus)
{
	loadTsInfo();           // Load ts from the board and set thing up
}

OtTimeSlotTransmitterDxxSC::~OtTimeSlotTransmitterDxxSC()
{
	if(m_TransmitTS) {
		if(m_TransmitTS->getTransmitter()!=this)
			throw OtException("~OtTimeSlotTransmitterDxxSC: Something wrong");
		m_TransmitTS->setTransmitter(NULL);
	}
	m_dxx=NULL;
	m_bus=NULL;
}

void OtTimeSlotTransmitterDxxSC::transmitOn(OtTimeSlot *t)
{
	throw OtException("OtTimeSlotTransmitterDxxSC::transmitOn(): Transmit Timeslot is fixed on this device");
}

void OtTimeSlotTransmitterDxxSC::unTransmit()
{
	throw OtException("OtTimeSlotTransmitterDxxSC::transmitOn(): Transmit Timeslot is fixed on this device");
}

OtTimeSlot *OtTimeSlotTransmitterDxxSC::getTxTimeSlot(void) const
{
	return m_TransmitTS;
}

int OtTimeSlotTransmitterDxxSC::isTransmitFixed(void) const
{
	return true;            // Every Resource in SCBus has the transmit ts fix
}

void OtTimeSlotTransmitterDxxSC::loadTsInfo()
{
	// get ts from board
	long ts;
	SC_TSINFO tsinfo;
	
	tsinfo.sc_numts = 1;
	tsinfo.sc_tsarrayp = &ts;
	
	if(dx_getxmitslot(m_dxx->getFd(),&tsinfo)<0)
		throw OtDialogicException(m_dxx->getFd());
	
	// Alloc that timeslot from the bus
	m_TransmitTS = m_bus->allocTimeSlotById(ts);
	m_TransmitTS->setTransmitter(this);
}

#endif

//
//
//      OtTimeSlotListenerMsiSC
//  OtTimeSlotTransmitterMsiSC
//

#ifdef CONFIG_DIALOGIC_MSI

OtTimeSlotListenerMsiSC::OtTimeSlotListenerMsiSC(OtDialogicMsiDev *msi,OtBusSC *bus) :
m_msi(msi),
m_bus(bus)
{
	
}

OtTimeSlotListenerMsiSC::~OtTimeSlotListenerMsiSC()
{
	m_msi=NULL;
	m_bus=NULL;
}

void OtTimeSlotListenerMsiSC::listenOn(OtTimeSlot *t)
{
	if(!t->isOnBus(m_bus))
		throw OtException("OtTimeSlotListenerMsiSC::listenOn(): TimeSlot not on same bus");
	
	SC_TSINFO tsinfo;
	long scts;
	OtTimeSlotSC *tssc=(OtTimeSlotSC *)t;
	
	scts = tssc->getScBusTs();
	tsinfo.sc_numts = 1;
	tsinfo.sc_tsarrayp = &scts;
	
	OtDebug(OT_DEBUG_SC, "MsiSC(%s)::listenOn(bus=%s, ts=%d)\n",(char *)m_msi->getName(),(char *)m_bus->getName(),scts);
	
	if(ms_listen(m_msi->getFd(), &tsinfo)<0)
		throw OtDialogicException(m_msi->getFd());
	
	// Framework Stuff
	m_ListenTS=tssc;
	tssc->addListener(this);
}

void OtTimeSlotListenerMsiSC::unListen()
{
	OtDebug(OT_DEBUG_SC, "MsiSC(%s)::unListen()\n",(char *)m_msi->getName());
	// Dialogic Stuff
	if(ms_unlisten(m_msi->getFd())<0)
		throw OtDialogicException(m_msi->getFd());
	
	// Framework Stuff
	if(m_ListenTS)
		m_ListenTS->removeListener(this);
	
	m_ListenTS=NULL;
}

OtTimeSlot *OtTimeSlotListenerMsiSC::getLsTimeSlot(void) const
{
	return m_ListenTS;
}

int OtTimeSlotListenerMsiSC::isListenFixed(void) const
{
	return false;           // Every Resource in SCBus has the listen ts mobile
}

//
//

OtTimeSlotTransmitterMsiSC::OtTimeSlotTransmitterMsiSC(OtDialogicMsiDev *msi, OtBusSC *bus) :
m_msi(msi),
m_bus(bus)
{
	loadTsInfo();           // Load ts from the board and set thing up
}

OtTimeSlotTransmitterMsiSC::~OtTimeSlotTransmitterMsiSC()
{
	if(m_TransmitTS) {
		if(m_TransmitTS->getTransmitter()!=this)
			throw OtException("~OtTimeSlotTransmitterMsiSC: Something wrong");
		m_TransmitTS->setTransmitter(NULL);
	}
	m_msi=NULL;
	m_bus=NULL;
}

void OtTimeSlotTransmitterMsiSC::transmitOn(OtTimeSlot *t)
{
	throw OtException("OtTimeSlotTransmitterMsiSC::transmitOn(): Transmit Timeslot is fixed on this device");
}

void OtTimeSlotTransmitterMsiSC::unTransmit()
{
	throw OtException("OtTimeSlotTransmitterMsiSC::transmitOn(): Transmit Timeslot is fixed on this device");
}

OtTimeSlot *OtTimeSlotTransmitterMsiSC::getTxTimeSlot(void) const
{
	return m_TransmitTS;
}

int OtTimeSlotTransmitterMsiSC::isTransmitFixed(void) const
{
	return true;            // Every Resource in SCBus has the transmit ts fix
}

void OtTimeSlotTransmitterMsiSC::loadTsInfo()
{
	// get ts from board
	long ts;
	SC_TSINFO tsinfo;
	
	tsinfo.sc_numts = 1;
	tsinfo.sc_tsarrayp = &ts;
	
	if(ms_getxmitslot(m_msi->getFd(),&tsinfo)<0)
		throw OtDialogicException(m_msi->getFd());
	
	// Alloc that timeslot from the bus
	m_TransmitTS = m_bus->allocTimeSlotById(ts);
	m_TransmitTS->setTransmitter(this);
}

#endif

//
//
//      OtTimeSlotListenerDtiSC
//  OtTimeSlotTransmitterDtiSC
//

#ifdef CONFIG_DIALOGIC_DTI

OtTimeSlotListenerDtiSC::OtTimeSlotListenerDtiSC(OtDialogicDti *dti,OtBusSC *bus) :
m_dti(dti),
m_bus(bus),
m_ListenTS(NULL)
{
	
}

OtTimeSlotListenerDtiSC::~OtTimeSlotListenerDtiSC()
{
	unListen();
	
	m_dti=NULL;
	m_bus=NULL;
}

void OtTimeSlotListenerDtiSC::listenOn(OtTimeSlot *t)
{
	if(!t->isOnBus(m_bus))
		throw OtException("OtTimeSlotListenerDtiSC::listenOn(): TimeSlot not on same bus");
	
	SC_TSINFO tsinfo;
	long scts;
	OtTimeSlotSC *tssc=(OtTimeSlotSC *)t;
	
	scts = tssc->getScBusTs();
	tsinfo.sc_numts = 1;
	tsinfo.sc_tsarrayp = &scts;
	
	OtDebug(OT_DEBUG_SC, "DtiSC(%s)::listenOn(bus=%s, ts=%d)\n",(char *)m_dti->getName(),(char *)m_bus->getName(),scts);
	
	if(dt_listen(m_dti->getFd(), &tsinfo)<0)
		throw OtDialogicException(m_dti->getFd());
	
	// Framework Stuff
	m_ListenTS=tssc;
	tssc->addListener(this);
}

void OtTimeSlotListenerDtiSC::unListen()
{
	OtDebug(OT_DEBUG_SC, "DtiSC(%s)::unListen()\n",(char *)m_dti->getName());
	// Dialogic Stuff
	if(dt_unlisten(m_dti->getFd())<0)
		throw OtDialogicException(m_dti->getFd());
	
	// Framework Stuff
	if(m_ListenTS)
		m_ListenTS->removeListener(this);
	
	m_ListenTS=NULL;
}

OtTimeSlot *OtTimeSlotListenerDtiSC::getLsTimeSlot(void) const
{
	return m_ListenTS;
}

int OtTimeSlotListenerDtiSC::isListenFixed(void) const
{
	return false;           // Every Resource in SCBus has the listen ts mobile
}

//
//

OtTimeSlotTransmitterDtiSC::OtTimeSlotTransmitterDtiSC(OtDialogicDti *dti, OtBusSC *bus) :
m_dti(dti),
m_bus(bus)
{
	loadTsInfo();           // Load ts from the board and set thing up
}

OtTimeSlotTransmitterDtiSC::~OtTimeSlotTransmitterDtiSC()
{
	if(m_TransmitTS) {
		if(m_TransmitTS->getTransmitter()!=this)
			throw OtException("~OtTimeSlotTransmitterDtiSC: Something wrong");
		m_TransmitTS->setTransmitter(NULL);
	}
	m_dti=NULL;
	m_bus=NULL;
}

void OtTimeSlotTransmitterDtiSC::transmitOn(OtTimeSlot *t)
{
	throw OtException("OtTimeSlotTransmitterDtiSC::transmitOn(): Transmit Timeslot is fixed on this device");
}

void OtTimeSlotTransmitterDtiSC::unTransmit()
{
	throw OtException("OtTimeSlotTransmitterDtiSC::unTransmit(): Transmit Timeslot is fixed on this device");
}

OtTimeSlot *OtTimeSlotTransmitterDtiSC::getTxTimeSlot(void) const
{
	return m_TransmitTS;
}

int OtTimeSlotTransmitterDtiSC::isTransmitFixed(void) const
{
	return true;            // Every Resource in SCBus has the transmit ts fix
}

void OtTimeSlotTransmitterDtiSC::loadTsInfo()
{
	// get ts from board
	long ts;
	SC_TSINFO tsinfo;
	
	tsinfo.sc_numts = 1;
	tsinfo.sc_tsarrayp = &ts;
	
	if(dt_getxmitslot(m_dti->getFd(),&tsinfo)<0)
		throw OtDialogicException(m_dti->getFd());
	
	// Alloc that timeslot from the bus
	m_TransmitTS = m_bus->allocTimeSlotById(ts);
	m_TransmitTS->setTransmitter(this);
}
#endif

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us