Mercurial > hg > FederatedLinda
diff tools/python-PE/CompactRouting/ant_mesh10.py @ 8:6c40056777be
Initial revision
author | fuchita |
---|---|
date | Sat, 16 Feb 2008 13:18:02 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/python-PE/CompactRouting/ant_mesh10.py Sat Feb 16 13:18:02 2008 +0900 @@ -0,0 +1,98 @@ +import re +import sys +import string +import time + +sys.path.append('../modules') + +import FederatedLinda + +ROUTING_HEADER_FORMAT = "!I" +TUPLE_ID_LINKCONFIG = 1 +TUPLE_ID_ROUTING = 2 + +ROUTING_COMMAND_CONNECT = 1 +ROUTING_COMMAND_DISCONNECT = 2 +ROUTING_COMMAND_TRANSFER = 3 +ROUTING_COMMAND_UPDATE_TABLE = 4 + +testxml = \ +"""<graph name = "Graf"> + <node label = "Node000" tsid = "ant001.cs.ie.u-ryukyu.ac.jp:10000"> + <destination label = "Node002"/> + </node> + <node label = "Node009" tsid = "ant015.cs.ie.u-ryukyu.ac.jp:10009"> + <destination label = "Node005"/> + <destination label = "Node008"/> + </node> + <node label = "Node008" tsid = "ant014.cs.ie.u-ryukyu.ac.jp:10008"> + <destination label = "Node007"/> + <destination label = "Node009"/> + <destination label = "Node004"/> + </node> + <node label = "Node007" tsid = "ant013.cs.ie.u-ryukyu.ac.jp:10007"> + <destination label = "Node006"/> + <destination label = "Node008"/> + <destination label = "Node003"/> + </node> + <node label = "Node006" tsid = "ant012.cs.ie.u-ryukyu.ac.jp:10006"> + <destination label = "Node007"/> + </node> + <node label = "Node005" tsid = "ant011.cs.ie.u-ryukyu.ac.jp:10005"> + <destination label = "Node002"/> + <destination label = "Node009"/> + <destination label = "Node004"/> + </node> + <node label = "Node004" tsid = "ant005.cs.ie.u-ryukyu.ac.jp:10004"> + <destination label = "Node001"/> + <destination label = "Node003"/> + <destination label = "Node005"/> + <destination label = "Node008"/> + </node> + <node label = "Node003" tsid = "ant004.cs.ie.u-ryukyu.ac.jp:10003"> + <destination label = "Node004"/> + <destination label = "Node007"/> + </node> + <node label = "Node002" tsid = "ant003.cs.ie.u-ryukyu.ac.jp:10002"> + <destination label = "Node005"/> + <destination label = "Node000"/> + <destination label = "Node001"/> + </node> + <node label = "Node001" tsid = "ant002.cs.ie.u-ryukyu.ac.jp:10001"> + <destination label = "Node004"/> + <destination label = "Node002"/> + </node> +</graph> +""" +def getFirstTsid(xmltext): + p = re.compile('(?<=tsid = \").*(?=\")') + m = p.findall(xmltext) + return m[0] + + + +if __name__ == "__main__": + + if (len(sys.argv) == 2): + print " : %s <xmlfilename>" % sys.argv[0] + xmltext = open(sys.argv[1]).read() + if xmltext is None: + sys.exit(1) + else: + xmltext = testxml + + start = time.time() + print "start time ",start + + firsttsid = getFirstTsid(xmltext) + + flinda = FederatedLinda.FederatedLinda() + + host, portnum = string.split(firsttsid,':') + + linda1 = flinda.open(host, int(portnum)) + linda1.Out(TUPLE_ID_LINKCONFIG, testxml) + flinda.sync() + + +