Norman James | 42c1be8 | 2015-10-22 14:34:26 -0500 | [diff] [blame] | 1 | #!/usr/bin/python -u |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 2 | |
| 3 | import sys |
| 4 | import gobject |
| 5 | import dbus |
| 6 | import dbus.service |
| 7 | import dbus.mainloop.glib |
| 8 | import tftpy |
Norman James | 408920d | 2015-10-08 07:02:45 -0500 | [diff] [blame] | 9 | import Openbmc |
| 10 | if (len(sys.argv) < 2): |
| 11 | print "Usage: download_manager.py [system name]" |
| 12 | exit(1) |
| 13 | System = __import__(sys.argv[1]) |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 14 | |
| 15 | |
| 16 | DBUS_NAME = 'org.openbmc.managers.Download' |
| 17 | OBJ_NAME = '/org/openbmc/managers/Download' |
| 18 | TFTP_PORT = 69 |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 19 | |
| 20 | class DownloadManagerObject(dbus.service.Object): |
| 21 | def __init__(self,bus,name): |
| 22 | dbus.service.Object.__init__(self,bus,name) |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 23 | bus.add_signal_receiver(self.DownloadHandler, |
Norman James | 166acf4 | 2015-10-22 07:11:51 -0500 | [diff] [blame] | 24 | dbus_interface = "org.openbmc.Flash", signal_name = "Download", path_keyword = "path") |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 25 | |
Norman James | 1899818 | 2015-10-11 21:54:53 -0500 | [diff] [blame] | 26 | @dbus.service.signal(DBUS_NAME,signature='ss') |
| 27 | def DownloadComplete(self,outfile,filename): |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 28 | print "Download Complete: "+outfile |
| 29 | return outfile |
| 30 | |
Norman James | 1899818 | 2015-10-11 21:54:53 -0500 | [diff] [blame] | 31 | @dbus.service.signal(DBUS_NAME,signature='s') |
| 32 | def DownloadError(self,filename): |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 33 | pass |
| 34 | |
Norman James | 166acf4 | 2015-10-22 07:11:51 -0500 | [diff] [blame] | 35 | def DownloadHandler(self,url,filename,path = None): |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 36 | try: |
| 37 | filename = str(filename) |
| 38 | client = tftpy.TftpClient(url, TFTP_PORT) |
| 39 | print "Downloading: "+filename+" from "+url |
Norman James | 408920d | 2015-10-08 07:02:45 -0500 | [diff] [blame] | 40 | outfile = System.FLASH_DOWNLOAD_PATH+"/"+filename |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 41 | client.download(filename,outfile) |
Norman James | 166acf4 | 2015-10-22 07:11:51 -0500 | [diff] [blame] | 42 | obj = bus.get_object("org.openbmc.control.Flash",path) |
| 43 | intf = dbus.Interface(obj,"org.openbmc.Flash") |
| 44 | intf.update(outfile) |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 45 | |
| 46 | except Exception as e: |
| 47 | print "ERROR DownloadManager: "+str(e) |
Norman James | 166acf4 | 2015-10-22 07:11:51 -0500 | [diff] [blame] | 48 | obj = bus.get_object("org.openbmc.control.Flash",path) |
| 49 | intf = dbus.Interface(obj,"org.openbmc.Flash") |
| 50 | intf.error("Download Error: "+filename) |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 51 | |
| 52 | |
| 53 | if __name__ == '__main__': |
| 54 | dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) |
Norman James | 5e792e3 | 2015-10-07 17:36:17 -0500 | [diff] [blame] | 55 | bus = Openbmc.getDBus() |
Norman James | f066e87 | 2015-10-07 15:29:51 -0500 | [diff] [blame] | 56 | name = dbus.service.BusName(DBUS_NAME, bus) |
| 57 | obj = DownloadManagerObject(bus, OBJ_NAME) |
| 58 | mainloop = gobject.MainLoop() |
| 59 | |
| 60 | print "Running Download Manager" |
| 61 | mainloop.run() |
| 62 | |