示例#1
0
 /**
  * Declares an association between this object and a ImportJob object.
  *
  * @param      ImportJob $v
  * @return     void
  * @throws     PropelException
  */
 public function setImportJob($v)
 {
     if ($v === null) {
         $this->setJob(NULL);
     } else {
         $this->setJob($v->getId());
     }
     $this->aImportJob = $v;
 }
示例#2
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      ImportJob $value A ImportJob object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(ImportJob $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
示例#3
0
文件: import.php 项目: Evolix/lilac
}
if (isset($_POST['request'])) {
    if (!strlen(trim($_POST['job_name']))) {
        $error = "Job name must be provided.";
    } else {
        // Instantiate an engine
        $engineClass = $_POST['job_engine'];
        $engine = new $engineClass(null);
        // Wonky, I know.
        $error = $engine->validateConfig();
    }
    if (empty($error)) {
        // All is good.  let's create our job.
        $config = new ImportConfig($engineClass);
        $engine->buildConfig($config);
        $importJob = new ImportJob();
        $importJob->setName($_POST['job_name']);
        $importJob->setDescription($_POST['job_description']);
        $importJob->setCmd(ImportJob::CMD_START);
        $importJob->setConfig(serialize($config));
        $importJob->setStartTime(time());
        $importJob->setStatus("Starting...");
        $importJob->setStatusCode(ImportJob::STATUS_STARTING);
        $importJob->save();
        // Attempt to execute the external importer script, fork it, and love it.
        exec("php importer/import.php " . $importJob->getId() . " > /dev/null", $tempOutput, $retVal);
        if ($retVal != 42) {
            $error = "Failed to run external importer script. Return value: " . $retVal . "<br /> Error:";
            foreach ($tempOutput as $output) {
                $error .= $output . "<br />";
            }
示例#4
0
 /**
  * Declares an association between this object and a ImportJob object.
  *
  * @param      ImportJob $v
  * @return     ImportLogEntry The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setImportJob(ImportJob $v = null)
 {
     if ($v === null) {
         $this->setJob(NULL);
     } else {
         $this->setJob($v->getId());
     }
     $this->aImportJob = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ImportJob object, it will not be re-added.
     if ($v !== null) {
         $v->addImportLogEntry($this);
     }
     return $this;
 }