Merge pull request #1 from mpeuster/master
[osm/vim-emu.git] / emuvim / dcemulator / node.py
1 """
2 Distributed Cloud Emulator (dcemulator)
3 (c) 2015 by Manuel Peuster <manuel.peuster@upb.de>
4 """
5 from mininet.node import Docker
6 import logging
7
8
9 DCDPID_BASE = 1000 # start of switch dpid's used for data center switches
10
11
12 class EmulatorCompute(Docker):
13 """
14 Emulator specific compute node class.
15 Inherits from Dockernet's Docker host class.
16 Represents a single container connected to a (logical)
17 data center.
18 We can add emulator specific helper functions to it.
19 """
20
21 def __init__(
22 self, name, dimage, **kwargs):
23 logging.debug("Create EmulatorCompute instance: %s" % name)
24 self.datacenter = None # pointer to current DC
25
26 # call original Docker.__init__
27 Docker.__init__(self, name, dimage, **kwargs)
28
29 def getNetworkStatus(self):
30 """
31 Helper method to receive information about the virtual networks
32 this compute instance is connected to.
33 """
34 # format list of tuples (name, Ip, MAC, isUp, status)
35 return [(str(i), i.IP(), i.MAC(), i.isUp(), i.status())
36 for i in self.intfList()]
37
38 def getStatus(self):
39 """
40 Helper method to receive information about this compute instance.
41 """
42 status = {}
43 status["name"] = self.name
44 status["network"] = self.getNetworkStatus()
45 status["image"] = self.dimage
46 status["cpu_quota"] = self.cpu_quota
47 status["cpu_period"] = self.cpu_period
48 status["cpu_shares"] = self.cpu_shares
49 status["cpuset"] = self.cpuset
50 status["mem_limit"] = self.mem_limit
51 status["memswap_limit"] = self.memswap_limit
52 status["state"] = self.dcli.inspect_container(self.dc)["State"]
53 status["id"] = self.dcli.inspect_container(self.dc)["Id"]
54 status["datacenter"] = (None if self.datacenter is None
55 else self.datacenter.name)
56 return status
57
58
59 class Datacenter(object):
60 """
61 Represents a logical data center to which compute resources
62 (Docker containers) can be added at runtime.
63
64 Will also implement resource bookkeeping in later versions.
65 """
66
67 def __init__(self, name):
68 self.net = None # DCNetwork to which we belong
69 self.name = name
70 self.switch = None # first prototype assumes one "bigswitch" per DC
71 self.containers = {} # keep track of running containers
72
73 def _get_next_dc_dpid(self):
74 global DCDPID_BASE
75 DCDPID_BASE += 1
76 return DCDPID_BASE
77
78 def create(self):
79 """
80 Each data center is represented by a single switch to which
81 compute resources can be connected at run time.
82
83 TODO: This will be changed in the future to support multiple networks
84 per data center
85 """
86 self.switch = self.net.addSwitch(
87 "%s.s1" % self.name, dpid=hex(self._get_next_dc_dpid())[2:])
88 logging.debug("created data center switch: %s" % str(self.switch))
89
90 def start(self):
91 pass
92
93 def startCompute(self, name, image=None, network=None):
94 """
95 Create a new container as compute resource and connect it to this
96 data center.
97
98 TODO: This interface will change to support multiple networks to which
99 a single container can be connected.
100 """
101 assert name is not None
102 # no duplications
103 if name in [c.name for c in self.net.getAllContainers()]:
104 raise Exception("Container with name %s already exists." % name)
105 # set default parameter
106 if image is None:
107 image = "ubuntu"
108 if network is None:
109 network = {} # {"ip": "10.0.0.254/8"}
110 # create the container and connect it to the given network
111 d = self.net.addDocker("%s" % (name), dimage=image)
112 self.net.addLink(d, self.switch, params1=network)
113 # do bookkeeping
114 self.containers[name] = d
115 d.datacenter = self
116 return d # we might use UUIDs for naming later on
117
118 def stopCompute(self, name):
119 """
120 Stop and remove a container from this data center.
121 """
122 assert name is not None
123 if name not in self.containers:
124 raise Exception("Container with name %s not found." % name)
125 self.net.removeLink(
126 link=None, node1=self.containers[name], node2=self.switch)
127 self.net.removeDocker("%s" % (name))
128 del self.containers[name]
129 return True
130
131 def listCompute(self):
132 """
133 Return a list of all running containers assigned to this
134 data center.
135 """
136 return list(self.containers.itervalues())