* AM's port is 12346 and SM's port is 12347.
[sface.git] / sfadata.py
index 433868e..42b5642 100644 (file)
@@ -9,11 +9,15 @@ class SfaData:
                  'SFI_USER' : None,
                  'SFI_SLICE' : None,
                  'SFI_REGISTRY' : "http://www.planet-lab.org:12345",
-                 'SFI_SM' : "http://www.planet-lab.org:12346",
+                 'SFI_AM' : "http://www.planet-lab.org:12346",
+                 'SFI_SM' : "http://www.planet-lab.org:12347",
                  'SFAUI_VERBOSE' : False,
                  }
 
     def __init__(self):
+        self.read_config()
+
+    def read_config(self):
         filename = os.path.expanduser("~/.sfi/sfi_config")
         execfile(filename, SfaData.__dict__)
         for (k,v) in SfaData.defaults.items():
@@ -23,6 +27,28 @@ class SfaData:
             for (k,v) in SfaData.defaults.items():
                 print "%-20s: %r"%(k,getattr(SfaData,k))
 
+    def save_config(self):
+        config_keys = SfaData.defaults.keys()
+        configfile = os.path.expanduser("~/.sfi/sfi_config")
+        tmpfile = configfile + ".tmp"
+
+        out = open(tmpfile, "w")
+        for line in open(os.path.expanduser("~/.sfi/sfi_config")):
+            try:
+                key, val = line.split('=')
+                key = key.strip()
+                val = val.strip()
+                if key in config_keys:
+                    line = "%s = '%s'\n" % (key, getattr(self, key))
+            except:
+                pass
+            out.write(line)
+        out.close()
+
+        os.unlink(configfile)
+        os.rename(tmpfile, configfile)
+                    
+
     def getAuthority(self):
         return SfaData.SFI_AUTH
 
@@ -48,6 +74,9 @@ class SfaData:
     def slicemgr(self):
         return SfaData.SFI_SM
 
+    def aggmgr(self):
+        return SfaData.SFI_AM
+
     def trace_command (self, command):
         self._trace=time.time()
         if self.SFAUI_VERBOSE:
@@ -79,7 +108,13 @@ class SfaData:
                 
         return children
 
-    def getRSpec(self):
+    def getRSpecFromSM(self):
+        return __getRSpec(self.slicemgr)
+
+    def getRSpecFromAM(self):
+        return __getRSpec(self.aggmgr)
+
+    def __getRspec(self, mgr):
         slice = self.getSlice()
         # Write RSpec to file for testing.
         filename = os.path.expanduser("~/.sfi/" + slice + ".rspec")
@@ -88,7 +123,7 @@ class SfaData:
         except:
             pass
         command=["sfi.py", "-u", self.getUser(), "-a", self.getAuthority(), 
-                 "-r", self.registry(), "-s", self.slicemgr(), "resources", 
+                 "-r", self.registry(), "-s", mgr, "resources", 
                  "-o", filename, slice]
         self.trace_command(command)
         subprocess.call(command)
@@ -131,28 +166,28 @@ class PlanetLabData(SfaData):
 class PLEData(PlanetLabData):
     def __init__(self):
         PlanetLabData.__init__(self)
-        self.SFI_SM = "http://www.planet-lab.eu:12346"
+        self.SFI_AM = "http://www.planet-lab.eu:12346"
 
 class PLJData(PlanetLabData):
     def __init__(self):
         PlanetLabData.__init__(self)
-        self.SFI_SM = "http://www.planet-lab.jp:12346"
+        self.SFI_AM = "http://www.planet-lab.jp:12346"
 
 class ViniData(PlanetLabData):
     def __init__(self):
         PlanetLabData.__init__(self)
-        self.SFI_SM = "http://www.vini-veritas.net:12346"
+        self.SFI_AM = "http://www.vini-veritas.net:12346"
 
 class GpENIData(PlanetLabData):
     def __init__(self):
         PlanetLabData.__init__(self)
-        self.SFI_SM = "http://198.248.241.100:12346"
+        self.SFI_AM = "http://198.248.241.100:12346"
 
 class OpenCirrusData(SfaData):
     def __init__(self):
         SfaData.__init__(self)
         self.SFI_REGISTRY = "http://198.55.37.29:12345"
-        self.SFI_SM = "http://198.55.37.29:12346"
+        self.SFI_AM = "http://198.55.37.29:12346"
 
     def refreshRSpec(self):
         xml = SfaData.getRSpec(self)