X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FNodes.py;h=9468c0727382922abed095ab7710591178332fc7;hb=3cd5698730c2fbf91b43ab65938559a43e8be003;hp=3c7dae61bbebe0c120487f5e230679a15a5af76b;hpb=13ad57cef92a336e57bf065b421a77cf7e977e6c;p=plcapi.git diff --git a/PLC/Nodes.py b/PLC/Nodes.py index 3c7dae6..9468c07 100644 --- a/PLC/Nodes.py +++ b/PLC/Nodes.py @@ -4,7 +4,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Nodes.py,v 1.22 2006/11/23 11:55:24 thierry Exp $ +# $Id: Nodes.py,v 1.29 2007/01/09 16:13:36 mlhuang Exp $ # from types import StringTypes @@ -38,12 +38,11 @@ class Node(Row): table_name = 'nodes' primary_key = 'node_id' - join_tables = ['nodegroup_node', 'conf_file_node', 'nodenetworks', 'pcu_node', 'slice_node', 'slice_attribute', 'node_session'] + join_tables = ['nodegroup_node', 'conf_file_node', 'nodenetworks', 'pcu_node', 'slice_node', 'slice_attribute', 'node_session', 'peer_node'] fields = { 'node_id': Parameter(int, "Node identifier"), 'hostname': Parameter(str, "Fully qualified hostname", max = 255), 'site_id': Parameter(int, "Site at which this node is located"), - 'peer_id': Parameter(int, "Peer at which this node is managed", nullok = True), 'boot_state': Parameter(str, "Boot state", max = 20), 'model': Parameter(str, "Make and model of the actual machine", max = 255, nullok = True), 'boot_nonce': Parameter(str, "(Admin only) Random value generated by the node at last boot", max = 128), @@ -60,12 +59,20 @@ class Node(Row): 'slice_ids': Parameter([int], "List of slices on this node"), 'pcu_ids': Parameter([int], "List of PCUs that control this node"), 'ports': Parameter([int], "List of PCU ports that this node is connected to"), + 'peer_id': Parameter(int, "Peer to which this node belongs", nullok = True), + 'peer_node_id': Parameter(int, "Foreign node identifier at peer", nullok = True), } # for Cache class_key = 'hostname' - foreign_fields = ['boot_state','model','version','date_created','last_updated'] - foreign_xrefs = {} + foreign_fields = ['boot_state','model','version'] + # forget about these ones, they are read-only anyway + # handling them causes Cache to re-sync all over again + # 'date_created','last_updated' + foreign_xrefs = [ + # in this case, we dont need the 'table' but Cache will look it up, so... + {'field' : 'site_id' , 'class' : 'Site' , 'table' : 'unused-on-direct-refs' } , + ] def validate_hostname(self, hostname): if not valid_hostname(hostname): @@ -85,6 +92,9 @@ class Node(Row): return boot_state + validate_date_created = Row.validate_timestamp + validate_last_updated = Row.validate_timestamp + def delete(self, commit = True): """ Delete existing node. @@ -108,7 +118,7 @@ class Nodes(Table): database. """ - def __init__(self, api, node_filter = None, columns = None, scope = 'all'): + def __init__(self, api, node_filter = None, columns = None): Table.__init__(self, api, Node, columns) sql = "SELECT %s FROM view_nodes WHERE deleted IS False" % \ @@ -125,10 +135,4 @@ class Nodes(Table): node_filter = Filter(Node.fields, node_filter) sql += " AND (%s)" % node_filter.sql(api, "AND") - if scope == 'local': - sql += " AND (peer_id is NULL) " - elif scope == 'foreign': - sql += " AND (peer_id is NOT NULL) " - self.selectall(sql) -