table = set([])
class GlobeLearningTable(object):
def __init__(self,mac,port,dpid):
self.mac = mac
self.port = port
self.dpid = dpid
def add(self):
global table
if self not in table:
table.add(self)
class LearningSwitch(object):
def __init__ (self, connection, transparent):
self.connection = connection
self.transparent = transparent
self.macToPort = {}
connection.addListeners(self)
self.hold_down_expired = _flood_delay == 0
def _handle_PacketIn (self, event):
packet = event.parsed
self.macToPort[packet.src] = event.port # 1
packet_src = str(packet.src)
packet_mac = packet_src.upper()
entry = GlobeLearningTable(packet_mac, event.port, dpid_to_str(self.connection.dpid))
entry.add()
问题:entry.add()
方法每次调用时都会添加新对象并增加表中的项目。
这不应该发生,因为
- 在 add 方法中,我正在检查是否是表中的那个对象,然后我正在添加那个特定的对象。
- 表是一个无序列表的集合,它不应该有重复的对象。
帮助:在这个设置中有什么方法我只能在对象不在表中时添加它。