blob: 272518e231cc01645b97a6967ce1998893675a2d [file] [log] [blame]
import os
import pdb
import sys
import tempfile
sys.path.append("/opt/tosca")
from translator.toscalib.tosca_template import ToscaTemplate
from core.models import ServiceAttribute
from services.ceilometer.models import SFlowService
from service import XOSService
class XOSSFlowService(XOSService):
provides = "tosca.nodes.SFlowService"
xos_model = SFlowService
copyin_props = ["view_url", "icon_url", "enabled", "published", "public_key", "versionNumber", "sflow_port", "sflow_api_port"]
def set_service_attr(self, obj, prop_name, value):
value = self.try_intrinsic_function(value)
if value:
attrs = ServiceAttribute.objects.filter(service=obj, name=prop_name)
if attrs:
attr = attrs[0]
if attr.value != value:
self.info("updating attribute %s" % prop_name)
attr.value = value
attr.save()
else:
self.info("adding attribute %s" % prop_name)
ta = ServiceAttribute(service=obj, name=prop_name, value=value)
ta.save()
def postprocess(self, obj):
props = self.nodetemplate.get_properties()
for (k,d) in props.items():
v = d.value
if k.startswith("config_"):
self.set_service_attr(obj, k, v)
elif k.startswith("rest_"):
self.set_service_attr(obj, k, v)