コード例 #1
0
ファイル: __init__.py プロジェクト: ppapadopoulos/base
	def setApplianceAttr(self, appliance, attr, value):


		if not attr.endswith(rocks.commands.set.attr.postfix):
			# escape only if it is not a _old attribute
			value = self.escapeAttr(value)

		rows = self.db.execute("""
			select attr, value from appliance_attributes where
			appliance=
			(select id from appliances where name='%s') and
			attr='%s'
			""" % (appliance, attr))
		if not rows:
			self.db.execute("""
				insert into appliance_attributes values 
				((select id from appliances where name='%s'), 
				'%s', '%s')
				""" % (appliance, attr, value))
		else:
			(useless, old_value) = self.db.fetchone()

			self.db.execute("""update appliance_attributes
				set value = '%s' where attr = '%s' and
				appliance = (select id from appliances
				where name = '%s') """ % (value, attr,
				appliance))

			if not attr.endswith(rocks.commands.set.attr.postfix):
				self.command('set.appliance.attr',
					[appliance, attr + rocks.commands.set.attr.postfix, old_value])
コード例 #2
0
ファイル: __init__.py プロジェクト: ppapadopoulos/base
	def setOSAttr(self, os, attr, value):
		rows = self.db.execute("""select attr, value from os_attributes where
			os='%s' and attr='%s'""" % (os, attr))
		if not rows:
			self.db.execute("""insert into os_attributes values 
				('%s', '%s', '%s')""" % (os, attr, value))
		else:
			(useless, old_value) = self.db.fetchone()

			self.db.execute("""update os_attributes set
				value = '%s' where os = '%s' and
				attr = '%s' """ % (value, os, attr))

			if not attr.endswith(rocks.commands.set.attr.postfix):
				self.command('set.os.attr',
					[os, attr + rocks.commands.set.attr.postfix, old_value])