/**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(AutodiscoveryDevicePeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(AutodiscoveryDevicePeer::DATABASE_NAME);
         $criteria->add(AutodiscoveryDevicePeer::ID, $pks, Criteria::IN);
         $objs = AutodiscoveryDevicePeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #2
0
 /**
  * Gets an array of AutodiscoveryDevice objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this NagiosHost has previously been saved, it will retrieve
  * related AutodiscoveryDevices from storage. If this NagiosHost is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array AutodiscoveryDevice[]
  * @throws     PropelException
  */
 public function getAutodiscoveryDevices($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(NagiosHostPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collAutodiscoveryDevices === null) {
         if ($this->isNew()) {
             $this->collAutodiscoveryDevices = array();
         } else {
             $criteria->add(AutodiscoveryDevicePeer::PROPOSED_PARENT, $this->id);
             AutodiscoveryDevicePeer::addSelectColumns($criteria);
             $this->collAutodiscoveryDevices = AutodiscoveryDevicePeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(AutodiscoveryDevicePeer::PROPOSED_PARENT, $this->id);
             AutodiscoveryDevicePeer::addSelectColumns($criteria);
             if (!isset($this->lastAutodiscoveryDeviceCriteria) || !$this->lastAutodiscoveryDeviceCriteria->equals($criteria)) {
                 $this->collAutodiscoveryDevices = AutodiscoveryDevicePeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastAutodiscoveryDeviceCriteria = $criteria;
     return $this->collAutodiscoveryDevices;
 }
Example #3
0
                $c1->addOr($c2);
                $c->add($c1);
                $host = NagiosHostPeer::doSelectOne($c);
                if ($host) {
                    // Found parent
                    $autodiscoveryJob->addNotice("Found parent: " . $host->getName());
                    $device->setProposedParent($host->getId());
                    $device->save();
                    $found = true;
                }
            }
            if (!$found) {
                $autodiscoveryJob->addNotice("Could not find a suitable parent.  Setting as a top-level device.");
            }
        } else {
            $autodiscoveryJob->addNotce("Failed to run Traceroute.  Not using it.");
        }
    }
}
// Okay, now we start doing the magic.
$c = new Criteria();
$c->add(AutodiscoveryDevicePeer::JOB_ID, $autodiscoveryJob->getId());
$devices = AutodiscoveryDevicePeer::doSelect($c);
foreach ($devices as $device) {
    $autodiscoveryJob->addNotice("Performing template matching for device: " . $device->getAddress());
    AutodiscoveryMatchMaker::match($device, $defaultTemplate);
}
$autodiscoveryJob->addNotice("Completed Auto Discovery.");
$autodiscoveryJob->setStatus("Finished.");
$autodiscoveryJob->setStatusCode(AutodiscoveryJob::STATUS_FINISHED);
$autodiscoveryJob->save();