Difference between revisions of "Public.setsnmpinterfacekeysonupdate (trigger function)"

From dbscript Online Help
Jump to: navigation, search
Line 1: Line 1:
 
== wikibot ==
 
== wikibot ==
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|-
 
| '''triggerfunction
 
| public.setsnmpinterfacekeysonupdate
 
|-
 
|}
 
 
 
<pre>
 
 
CREATE OR REPLACE FUNCTION public.setsnmpinterfacekeysonupdate()
 
CREATE OR REPLACE FUNCTION public.setsnmpinterfacekeysonupdate()
 
  RETURNS trigger
 
  RETURNS trigger
Line 61: Line 51:
 
END;
 
END;
 
$function$
 
$function$
</pre>
+
|-
 +
| Select
 +
| Table
 +
| [[public.snmpinterface_(table)|public.snmpinterface]]

Revision as of 09:32, 11 February 2010

wikibot

CREATE OR REPLACE FUNCTION public.setsnmpinterfacekeysonupdate()

RETURNS trigger
LANGUAGE plpgsql

AS $function$ BEGIN

 --
 -- (Used for Trigger update with old style foreign key)
 -- This condition keeps snmpinterfaceid inSync with the composite foreign key of nodeid, ipaddr, ifindex
 -- This usually happens when a record is being updated by old JDBC code (non-Hibernate DAOs) and has changed
 -- one or more of the composite key values, the snmpInterfaceId needs to be updated
 --
 IF ((NEW.snmpInterfaceId = OLD.snmpInterfaceId OR (NEW.snmpInterfaceId IS NULL AND OLD.snmpInterfaceId IS NULL)) AND 
     (NEW.nodeId != OLD.nodeId OR NEW.ifIndex != OLD.ifIndex OR (NEW.ifIndex IS NULL AND OLD.ifIndex IS NOT NULL) OR (NEW.ifIndex IS NOT NULL AND OLD.ifIndex IS NULL)))
 THEN
   IF NEW.ifIndex IS NULL AND NEW.snmpInterfaceId IS NOT NULL
   THEN
      SELECT NULL INTO NEW.snmpInterfaceId;
   ELSIF NEW.ifIndex IS NOT NULL
   THEN
    SELECT snmpif.id INTO NEW.snmpInterfaceId
      FROM snmpinterface snmpif
      WHERE (snmpif.nodeid = NEW.nodeid AND snmpif.snmpIfIndex = NEW.ifIndex);
      
    IF NOT FOUND THEN
      RAISE EXCEPTION 'IpInterface Trigger Notice, Condition 3: No SnmpInterface found for... nodeid: % ifindex: %', NEW.nodeid, NEW.ifIndex;
    END IF;
   END IF;
    
 --
 -- (Used for Trigger update with new style foreign key)
 -- This condition keeps the composite foreign key of nodeid, ipaddr, ifindex inSync with the snmpinterfaceid
 -- This usually happens with the Hibernate DAOs decide to change the snmpinterfaceid represented
 -- by the ipinterface.
 --
 -- We dont match on the case where NEW.snmpInterfaceId IS NULL, because we use it in the WHERE clause.
 --
 ELSIF (NEW.snmpInterfaceId != OLD.snmpInterfaceId OR (NEW.snmpInterfaceId IS NOT NULL AND OLD.snmpInterfaceId IS NULL))
 THEN
    SELECT snmpif.nodeId, snmpif.snmpIfIndex INTO NEW.nodeId, NEW.ifIndex
      FROM snmpinterface snmpif
     WHERE (snmpif.id = NEW.snmpInterfaceId);
     
     IF NOT FOUND THEN
        RAISE EXCEPTION 'IpInterface Trigger Notice, Condition 4: No SnmpInterface found for snmpInterfaceId: %', NEW.snmpInterfaceId;
     END IF;
 END IF;
 RETURN NEW;

END; $function$ |- | Select | Table | public.snmpinterface