X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FEventObjects.py;h=cbdae05bac93d18e6c78c08fb2a4eacd95f238a6;hb=918fbd1e95d3cbcf24a560e86ce9310a364f3000;hp=8f579146e8a687da4c83457d33bdefadd26ed6bf;hpb=de9459521f01871f404100e3605078fbec5862f5;p=plcapi.git diff --git a/PLC/EventObjects.py b/PLC/EventObjects.py index 8f57914..cbdae05 100644 --- a/PLC/EventObjects.py +++ b/PLC/EventObjects.py @@ -4,7 +4,7 @@ # Tony Mack # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Events.py,v 1.11 2007/01/19 17:50:46 tmack Exp $ +# $Id: EventObjects.py,v 1.3 2007/05/16 18:07:02 tmack Exp $ # from PLC.Faults import * @@ -21,7 +21,7 @@ class EventObject(Row): table_name = 'event_object' primary_key = 'event_id' fields = { - 'event_object.event_id': Parameter(int, "Event identifier"), + 'event_id': Parameter(int, "Event identifier"), 'person_id': Parameter(int, "Identifier of person responsible for event, if any"), 'node_id': Parameter(int, "Identifier of node responsible for event, if any"), 'fault_code': Parameter(int, "Event fault code"), @@ -41,14 +41,34 @@ class EventObjects(Table): def __init__(self, api, event_filter = None, columns = None): Table.__init__(self, api, EventObject, columns) + + all_fields = EventObject.fields.keys() + if not columns: + columns = all_fields + else: + columns = filter(lambda column: column in all_fields, columns) + + # Since we are querying a table (not a view) ensure that timestamps + # are converted to ints in the db before being returned + timestamps = ['time'] + for col in columns: + if col in timestamps: + index = columns.index(col) + columns[index] = "CAST(date_part('epoch', events.time) AS bigint) AS time" + elif col in [EventObject.primary_key]: + index = columns.index(col) + columns[index] = EventObject.table_name+"."+EventObject.primary_key + sql = "SELECT %s FROM event_object, events WHERE True" % \ - ", ".join(self.columns) - if event_filter is not None: + ", ".join(columns) + + if event_filter is not None: if isinstance(event_filter, (list, tuple, set)): event_filter = Filter(EventObject.fields, {'event_id': event_filter}) elif isinstance(event_filter, dict): event_filter = Filter(EventObject.fields, event_filter) sql += " AND (%s) " % event_filter.sql(api) sql += " AND events.event_id = event_object.event_id " - sql += " ORDER BY %s" % EventObject.primary_key - self.selectall(sql) + sql += " ORDER BY %s" % EventObject.table_name+"."+EventObject.primary_key + + self.selectall(sql)