blob: 10b314eefa7608e69454477e52ed02ff5e70c092 (
plain)
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
|
#/***************************************************************************
# fevenboard.h
# -----------
# begin : sam nov 2 2002
# copyright : (C) 1992-2004 by Fabian Padilla
# email : fp@bridgethink.com
# ***************************************************************************/
# /***************************************************************************
#
# fevenboard.py
# -------------------
# begin : wed mar 10 2004
# copyright : (C) 2004 by Jeremy Zurcher
# email : tzurtch@bluemail.ch
#
# ***************************************************************************/
# /***************************************************************************
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the Foundation Public License as published by *
# * bridgethink sarl; either version 2 of the License, or *
# * (at your option) any later version. *
# * *
# ***************************************************************************/
#
# from C++ to python by Jeremy Zurcher <jeremy@asynk.ch>
#
"""/** evenData will wait for another evenData in this evenBoard.
function : merge informations having the same linkValue.
description : receive an evenData and check if another evenData with the same linkValue
is already in the list. Then Apply the ACTION to marge them together
and send to somewhere.
*@author Fabian Padilla
*/"""
__all__ = ["FevenBoard"]
from fportlisthash import FportListHash
from returncodes import RET_OK
from evenjastrings import ACT_ERROR
from globalvars import gvActionWait
from globalvars import gvActionDestination1Data
from globalvars import gvActionFollowDestination
class FevenBoard(FportListHash):
def __init__(self):
FportListHash.__init__(self) # force contrustor
def __str__(self):
return "\t"+FportListHash.__str__(self)+\
"FevenBoard - (null)\n"
def receive_evenData(self,evenData):
"""/** Receive the evenData and apply the action to know what to do with */"""
action = evenData.getCurrentDestination().getAction()
if action.equals(gvActionDestination1Data):
if evenData.selectNextDestination() != RET_OK:
evenData.definePortAction(ACT_ERROR)
else:
dataPresent = self.listHash.addOrRemove(evenData)
if dataPresent <> None:
if action.equals(gvActionFollowDestination):
provData = dataPresent
dataPresent = evenData
evenData = provData
evenData.setEvenDataB(dataPresent)
if evenData.selectNextDestination() != RET_OK:
evenData.definePortAction(ACT_ERROR)
self.sendEvenData(evenData)
else:
if action.equals(gvActionWait):
print "NOT IMPLEMENTED YET"
return RET_OK
|