class Stabil_Ion_Mediator(DeviceMediatorInterface):
	"""
	Mediator for Stabil Ion gauge specific to the QDG Framework
	""" 
	
	def __init__(self, dictionary):
		for (k, v) in dictionary.items():
			setattr(self, k, v)
		self.controller = Stabil_Ion_Controller(self.port, self.duration_s, self.secondsPerSample)
		
	def start(self):
		print "Starting Stable Ion Gauge data collection thread."
		self.controller.start()
		
	def stop(self):
		print "Waiting for Stabil Ion Gauge to finish collecting data."
		status = self.controller.stop()
		print "Stabil Ion Gauge Done"
		return status

	def save(self, pth):
		fname = path.join(pth, 'SIData.csv')
		self.controller.saveData(fname)
		
	def processExpData(self, pth):
		fname = path.join(pth, 'SIDataPlot.png')
		self.controller.plotData(fname)
		
	def saveState(self, pth):
		pass
		
	def restoreState(self, pth):
		pass	
	def __init__(self, dictionary):
		for (k, v) in dictionary.items():
			setattr(self, k, v)
		self.controller = Stabil_Ion_Controller(self.port, self.duration_s, self.secondsPerSample)