• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Mage_Index_Model_Process类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Mage_Index_Model_Process的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Index_Model_Process类的具体用法?PHP Mage_Index_Model_Process怎么用?PHP Mage_Index_Model_Process使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Mage_Index_Model_Process类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: executePartialIndex

 /**
  * Tells the core indexer to do a partial reindex
  * @param Mage_Index_Model_Process $process
  * @throws Exception
  */
 public function executePartialIndex(Mage_Index_Model_Process $process)
 {
     /** @var $resourceModel Mage_Index_Model_Resource_Process */
     $resourceModel = Mage::getResourceSingleton('index/process');
     if (Mage::getStoreConfigFlag('system/asyncindex/use_transactions')) {
         $resourceModel->beginTransaction();
     }
     $indexMode = 'schedule';
     $pendingMode = 'pending';
     //Fallback for 1.6.2 installations > Undefined class constant 'MODE_SCHEDULE'
     if (true === defined('Mage_Index_Model_Process::MODE_SCHEDULE')) {
         $indexMode = Mage_Index_Model_Process::MODE_SCHEDULE;
         $pendingMode = Mage_Index_Model_Process::STATUS_PENDING;
     }
     try {
         $process->setMode($indexMode);
         $process->indexEvents();
         if (count(Mage::getResourceSingleton('index/event')->getUnprocessedEvents($process)) === 0) {
             $process->changeStatus($pendingMode);
         }
         if (Mage::getStoreConfigFlag('system/asyncindex/use_transactions')) {
             $resourceModel->commit();
         }
     } catch (Exception $e) {
         if (Mage::getStoreConfigFlag('system/asyncindex/use_transactions')) {
             $resourceModel->rollBack();
         }
         throw $e;
     }
 }
开发者ID:itmyprofession,项目名称:AsyncIndex,代码行数:35,代码来源:Manager.php


示例2: addProcessFilter

 /**
  * Add filter by process and status to events collection
  *
  * @param int|array|Mage_Index_Model_Process $process
  * @param string $status
  * @return Mage_Index_Model_Resource_Event_Collection
  */
 public function addProcessFilter($process, $status = null)
 {
     $this->_joinProcessEventTable();
     if ($process instanceof Mage_Index_Model_Process) {
         $this->addFieldToFilter('process_event.process_id', $process->getId());
     } elseif (is_array($process) && !empty($process)) {
         $this->addFieldToFilter('process_event.process_id', array('in' => $process));
     } else {
         $this->addFieldToFilter('process_event.process_id', $process);
     }
     if ($status !== null) {
         $this->addFieldToFilter('process_event.status', $status);
     }
     return $this;
 }
开发者ID:Airmal,项目名称:Magento-Em,代码行数:22,代码来源:Collection.php


示例3: reindexEverything

 /**
  * Reindex all data what this process responsible is
  * Check and using depends processes
  *
  * @return Mage_Index_Model_Process
  */
 public function reindexEverything($force = false)
 {
     parent::reindexEverything();
     if ($force) {
         return $this->reindexAll(true);
     }
 }
开发者ID:jokusafet,项目名称:MagentoSource,代码行数:13,代码来源:Process.php


示例4: testIsLocked

 /**
  * @dataProvider isLockedDataProvider
  * @param bool $needUnlock
  */
 public function testIsLocked($needUnlock)
 {
     $this->_processFile = $this->getMock('Mage_Index_Model_Process_File', array('isProcessLocked'));
     $this->_processFile->expects($this->once())->method('isProcessLocked')->with($needUnlock)->will($this->returnArgument(0));
     $this->_prepareIndexProcess();
     $this->assertEquals($needUnlock, $this->_indexProcess->isLocked($needUnlock));
 }
开发者ID:nickimproove,项目名称:magento2,代码行数:11,代码来源:ProcessTest.php


示例5: safeProcessEvent

 /**
  * Process event with locks checking - this function is overridden to prevent Magento from indexing event while saving product
  *
  * @param Mage_Index_Model_Event $event
  * @return Mage_Index_Model_Process
  */
 public function safeProcessEvent(Mage_Index_Model_Event $event)
 {
     if ($this->getMode() == self::MODE_QUEUED) {
         return $this;
     } else {
         return parent::processEvent($event);
     }
 }
开发者ID:brentwpeterson,项目名称:Aoe_Index,代码行数:14,代码来源:Process.php


示例6: _renderProgress

    /**
     * Renders progress bar with estimated time (for running process)
     *
     * @param Mage_Index_Model_Process $process
     * @return string
     */
    protected function _renderProgress(Mage_Index_Model_Process $process)
    {
        $progressBarId = 'hackathon_indexerstats_progress_' . $process->getIndexerCode();
        $progress = min(100, $this->_runtimeModel->getProgress($process) * 100);
        if ($this->_runtimeModel->getProgress($process) >= 1) {
            $inTimeClass = 'hackathon_indexerstats_not_in_time';
            $timeCaption = Mage::helper('hackathon_indexerstats')->__('over time');
        } else {
            $inTimeClass = 'hackathon_indexerstats_in_time';
            $timeCaption = Mage::helper('hackathon_indexerstats')->__('remaining');
        }
        $now = date_create()->getTimestamp();
        $startTimestamp = $this->_runtimeModel->getStartTime($process)->getTimestamp();
        $estimatedEndTimestamp = $this->_runtimeModel->getEstimatedEndTime($process)->getTimestamp();
        $timeDisplay = $this->_runtimeModel->getRemainingTime($process);
        return <<<HTML
<div id="{$progressBarId}" data-now="{$now}" data-started="{$startTimestamp}" data-estimated_end="{$estimatedEndTimestamp}" class="hackathon_indexerstats_info hackathon_indexerstats_progress {$inTimeClass}">
    <span style="width: {$progress}%;"><span></span></span>
    <div><span class="hackathon_indexerstats_time_display">{$timeDisplay}</span> <span class="hackathon_indexerstats_time_caption">{$timeCaption}</span></div>
</div>
HTML;
    }
开发者ID:toanloau,项目名称:Hackathon_IndexerStats,代码行数:28,代码来源:Status.php


示例7: setDataFromProcess

 /**
  * Set start time and end time based on current process data
  *
  * @param Mage_Index_Model_Process $process
  * @return $this
  */
 public function setDataFromProcess(Mage_Index_Model_Process $process)
 {
     $startTime = new DateTime($process->getStartedAt());
     $endTime = new DateTime($process->getEndedAt());
     $runningTime = $endTime->getTimestamp() - $startTime->getTimestamp();
     $this->setData(array('process_id' => $process->getId(), 'started_at' => $process->getStartedAt(), 'ended_at' => $process->getEndedAt(), 'running_time' => $runningTime));
     return $this;
 }
开发者ID:toanloau,项目名称:Hackathon_IndexerStats,代码行数:14,代码来源:History.php


示例8: decorateUpdateRequired

 /**
  * Decorate "Update Required" column values
  *
  * @param string $value
  * @param Mage_Index_Model_Process $row
  * @param Mage_Adminhtml_Block_Widget_Grid_Column $column
  * @param bool $isExport
  * @return string
  */
 public function decorateUpdateRequired($value, $row, $column, $isExport)
 {
     $class = '';
     switch ($row->getUpdateRequired()) {
         case 0:
             $class = 'grid-severity-notice';
             break;
         case 1:
             $class = 'grid-severity-critical';
             break;
     }
     return '<span class="' . $class . '"><span>' . $value . '</span></span>';
 }
开发者ID:ravi2jdesign,项目名称:solvingmagento_1.7.0,代码行数:22,代码来源:Grid.php


示例9: updateProcessEndDate

 /**
  * Update process end date
  *
  * @param Mage_Index_Model_Process $process
  * @return Mage_Index_Model_Resource_Process
  */
 public function updateProcessEndDate(Mage_Index_Model_Process $process)
 {
     $this->_updateProcessData($process->getId(), array('ended_at' => $this->formatDate(time())));
     return $this;
 }
开发者ID:hazaeluz,项目名称:magento_connect,代码行数:11,代码来源:Process.php


示例10: startProcess

 /**
  * Register process start
  *
  * @param   Mage_Index_Model_Process $process
  * @return  Mage_Index_Model_Mysql4_Process
  */
 public function startProcess(Mage_Index_Model_Process $process)
 {
     $data = array('status' => Mage_Index_Model_Process::STATUS_RUNNING, 'started_at' => $this->formatDate(time()));
     $this->_getWriteAdapter()->update($this->getMainTable(), $data, $this->_getWriteAdapter()->quoteInto('process_id=?', $process->getId()));
     return $this;
 }
开发者ID:hunnybohara,项目名称:magento-chinese-localization,代码行数:12,代码来源:Process.php


示例11: updateStatus

 /**
  * Update process status field
  *
  *
  * @param Mage_Index_Model_Process $process
  * @param string $status
  * @return Mage_Index_Model_Resource_Process
  */
 public function updateStatus($process, $status)
 {
     $data = array('status' => $status);
     $this->_updateProcessData($process->getId(), $data);
     return $this;
 }
开发者ID:evinw,项目名称:project_bloom_magento,代码行数:14,代码来源:Process.php


示例12: _changeProcessKeyStatus

 /**
  * Check if the event will be processed and disable/enable keys in index tables
  *
  * @param mixed|Mage_Index_Model_Process $process
  * @param bool $enable
  * @return bool
  */
 protected function _changeProcessKeyStatus($process, $enable = true)
 {
     $event = $this->_currentEvent;
     if ($process instanceof Mage_Index_Model_Process && $process->getMode() !== Mage_Index_Model_Process::MODE_MANUAL && !$process->isLocked() && (is_null($event) || $event instanceof Mage_Index_Model_Event && $process->matchEvent($event) || is_array($event) && $process->matchEntityAndType($event[0], $event[1]))) {
         if ($enable) {
             $process->enableIndexerKeys();
         } else {
             $process->disableIndexerKeys();
         }
         return true;
     }
     return false;
 }
开发者ID:hientruong90,项目名称:ee_14_installer,代码行数:20,代码来源:Indexer.php


示例13: getUnprocessedEvents

 /**
  * Retrieve unprocessed events list by specified process
  *
  * @param Mage_Index_Model_Process $process
  * @return array
  */
 public function getUnprocessedEvents($process)
 {
     $select = $this->_getReadAdapter()->select()->from($this->getTable('index/process_event'))->where('process_id = ?', $process->getId())->where('status = ?', Mage_Index_Model_Process::EVENT_STATUS_NEW);
     return $this->_getReadAdapter()->fetchAll($select);
 }
开发者ID:test3metizsoft,项目名称:test,代码行数:11,代码来源:Event.php


示例14: getRowUrl

 /**
  * Get row edit url
  *
  * @param Mage_Index_Model_Process $row
  *
  * @return string
  */
 public function getRowUrl($row)
 {
     return $this->getUrl('*/*/edit', array('process' => $row->getId()));
 }
开发者ID:SalesOneGit,项目名称:s1_magento,代码行数:11,代码来源:Grid.php


示例15: run

 /**
  * Run the Task
  * 
  * IF ANY Job we run fails, due to another processes being run we should
  * gracefully exit and wait our next go!
  * 
  * Also change auto sync to just create a job, and run a single job Queue!
  */
 public function run()
 {
     if ($this->_config()->isLogEnabled()) {
         $this->_config()->dbLog("Cron [Triggered]");
     }
     /**
      * This doesn't exist in 1.3.2!
      */
     $indexProcess = new Mage_Index_Model_Process();
     $indexProcess->setId(self::LOCK_INDEX_ID);
     if ($indexProcess->isLocked()) {
         // Check how old the lock is - unlock after 1hr
         if ($this->_lockIsOld(self::LOCK_INDEX_ID)) {
             $indexProcess->unlock();
         } else {
             $this->_config()->log('MAILUP: cron already running or locked');
             return false;
         }
     }
     $indexProcess->lockAndBlock();
     try {
         require_once dirname(__FILE__) . '/../Helper/Data.php';
         $db_read = Mage::getSingleton('core/resource')->getConnection('core_read');
         $db_write = Mage::getSingleton('core/resource')->getConnection('core_write');
         $syncTableName = Mage::getSingleton('core/resource')->getTableName('mailup/sync');
         $jobsTableName = Mage::getSingleton('core/resource')->getTableName('mailup/job');
         $lastsync = gmdate("Y-m-d H:i:s");
         // reading customers (jobid == 0, their updates)
         $customer_entity_table_name = Mage::getSingleton('core/resource')->getTableName('customer_entity');
         /**
          * Now Handle Jobs we need to Sync, and all customers attached to each job
          */
         foreach (Mage::getModel('mailup/job')->fetchQueuedOrStartedJobsCollection() as $jobModel) {
             /* @var $jobModel MailUp_MailUpSync_Model_Job */
             $job = $jobModel->getData();
             $storeId = isset($job['store_id']) ? $job['store_id'] : NULL;
             // If job is auto-sync and cron is not enabled for the job's site, skip the job
             if ($jobModel->isAutoSync() && !$this->_config()->isCronExportEnabled($storeId)) {
                 $this->_config()->dbLog("Auto-Task skipped as auto-sync disabled for site", $job["id"], $storeId);
                 continue;
             }
             $stmt = $db_write->query("UPDATE {$jobsTableName}\n                    SET status='started', start_datetime='" . gmdate("Y-m-d H:i:s") . "'\n                    WHERE id={$job["id"]}");
             $customers = array();
             $job['mailupNewGroup'] = 0;
             $job['mailupIdList'] = Mage::getStoreConfig('mailup_newsletter/mailup/list', $storeId);
             $job["mailupGroupId"] = $job["mailupgroupid"];
             $job["send_optin_email_to_new_subscribers"] = $job["send_optin"];
             // If group is 0 and there is a default group, set group to this group
             $defaultGroupId = Mage::getStoreConfig('mailup_newsletter/mailup/default_group');
             if ($job["mailupGroupId"] == 0 && $defaultGroupId !== null) {
                 $job["mailupGroupId"] = $defaultGroupId;
             }
             $tmp = Mage::getSingleton('mailup/source_lists');
             $tmp = $tmp->toOptionArray($storeId);
             // pass store id!
             foreach ($tmp as $t) {
                 if ($t["value"] == $job['mailupIdList']) {
                     $job['mailupListGUID'] = $t["guid"];
                     $job["groups"] = $t["groups"];
                     break;
                 }
             }
             unset($tmp);
             unset($t);
             $stmt = $db_read->query("\n                    SELECT ms.*, ce.email\n                    FROM {$syncTableName} ms\n                    JOIN {$customer_entity_table_name} ce\n                        ON (ms.customer_id = ce.entity_id)\n                    WHERE ms.needs_sync=1\n                    AND ms.entity='customer'\n                    AND job_id={$job["id"]}");
             while ($row = $stmt->fetch()) {
                 $customers[] = $row["customer_id"];
             }
             /**
              * Send the Data!
              */
             $returnCode = MailUp_MailUpSync_Helper_Data::generateAndSendCustomers($customers, $job, $storeId);
             /**
              * Check return OK
              */
             if ($returnCode === 0) {
                 $customerCount = count($customers);
                 $db_write->query("\n                        UPDATE {$syncTableName} SET needs_sync=0, last_sync='{$lastsync}'\n                        WHERE job_id = {$job["id"]}\n                        AND entity='customer'");
                 $this->_config()->dbLog("Job Task [update] [Synced] [customer count:{$customerCount}]", $job["id"], $storeId);
                 // finishing the job also
                 $db_write->query("\n                        UPDATE {$jobsTableName} SET status='finished', finish_datetime='" . gmdate("Y-m-d H:i:s") . "'\n                        WHERE id={$job["id"]}");
                 $this->_config()->dbLog("Jobs [Update] [Complete] [{$job["id"]}]", $job["id"], $storeId);
             } else {
                 $stmt = $db_write->query("UPDATE {$jobsTableName} SET status='queued' WHERE id={$job["id"]}");
                 if ($this->_config()->isLogEnabled()) {
                     $this->_config()->dbLog(sprintf("generateAndSendCustomers [ReturnCode] [ERROR] [%d]", $returnCode), $job["id"], $storeId);
                 }
             }
         }
     } catch (Exception $e) {
         // In case of otherwise uncaught error, unlock and re-throw
         $indexProcess->unlock();
//.........这里部分代码省略.........
开发者ID:hanicker,项目名称:mailup-magento,代码行数:101,代码来源:Cron.php


示例16: getProgress

 public function getProgress(Mage_Index_Model_Process $process)
 {
     $avgTime = Mage::getModel('hackathon_indexerstats_resource/history')->getAvg($process->getId());
     $currentTime = new DateTime();
     $startTime = new DateTime($process->getStartedAt());
     $estimatedEndTime = new DateTime($process->getStartedAt());
     $estimatedEndTime->add(new DateInterval('PT' . $avgTime . 'S'));
     $processDiff = $currentTime->getTimestamp() - $startTime->getTimestamp();
     if ($avgTime == 0) {
         return 1;
     }
     return $processDiff / $avgTime;
 }
开发者ID:toanloau,项目名称:Hackathon_IndexerStats,代码行数:13,代码来源:Runtime.php


示例17: _execPartialIndex

 /**
  * @param Mage_Index_Model_Process $process
  *
  * @throws Exception
  */
 protected function _execPartialIndex(Mage_Index_Model_Process $process)
 {
     $this->_indexerTransactionBegin();
     // MODE_SCHEDULE available in Mage >1.8
     $indexMode = true === defined('Mage_Index_Model_Process::MODE_SCHEDULE') ? Mage_Index_Model_Process::MODE_SCHEDULE : 'schedule';
     $pendingMode = Mage_Index_Model_Process::STATUS_PENDING;
     try {
         $process->setMode($indexMode);
         $process->indexEvents();
         $unProcessedEvents = count(Mage::getResourceSingleton('index/event')->getUnprocessedEvents($process));
         if (0 === $unProcessedEvents) {
             $process->changeStatus($pendingMode);
         }
         $this->_indexerTransactionCommit();
     } catch (Exception $e) {
         $this->_indexerTransactionRollBack();
         throw $e;
     }
 }
开发者ID:ThomasNegeli,项目名称:Magento-FastIndexer,代码行数:24,代码来源:Cron.php


示例18: Mage_Index_Model_Process

 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 *
 * @category   Mehulchaudhari
 * @package    Mehulchaudhari_FeedsGenerator
 * @author     Mehul Chaudhari
 * @copyright  Copyright (c) 2014 ; ;
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */
/** @var $installer Mage_Eav_Model_Entity_Setup */
const PROCESS_ID = 'google_taxonomy';
$indexProcess = new Mage_Index_Model_Process();
$indexProcess->setId(PROCESS_ID);
if (!$indexProcess->isLocked()) {
    $indexProcess->lockAndBlock();
    $installer = $this;
    $installer->startSetup();
    // Create (or re-create) the table containing all of the Google taxonomy information. This is a list
    // of available taxonomy values.
    $installer->run("\n        DROP TABLE IF EXISTS {$this->getTable('feedsgenerator_taxonomy')};\n        CREATE TABLE {$this->getTable('feedsgenerator_taxonomy')} (\n          `taxonomy_id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n\t\t  `store_lang` varchar(255) NOT NULL,\n          `taxonomy_name` varchar(255) NOT NULL,\n          PRIMARY KEY (`taxonomy_id`)\n        ) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n    ");
    // Fill the taxonomy table with values provided by Google. Values are inserted in batches of
    // 1000 to increase processing speed.
    $connection = $installer->getConnection();
    $Datail = Mage::getModel('feedsgenerator/googleproducts_taxonomy')->getDataDetail();
    foreach ($Datail as $lang => $taxonomy) {
        $data = array();
        foreach ($taxonomy as $i => $t) {
开发者ID:shakhawat4g,项目名称:MagentoExtensions,代码行数:31,代码来源:mysql4-upgrade-1.0-1.2.php


示例19: start

 public function start($count = 0)
 {
     if (!$count) {
         $this->limit = Mage::getStoreConfig('kirchbergerknorr/factfindersync/queue');
     } else {
         $this->limit = $count;
     }
     if ($this->indexProcess->isLocked()) {
         $this->log("Another %s process is running! Aborted", self::PROCESS_ID);
         return false;
     }
     // Set an exclusive lock.
     $this->indexProcess->lockAndBlock();
     $this->log("========================================");
     $timeStart = microtime(true);
     $this->log("Started FactFinderSync");
     $this->insertNewProducts();
     $this->updateImportedProducts();
     $timeEnd = microtime(true);
     $time = $timeEnd - $timeStart;
     $this->log("Finished FactFinderSync limit %s in %s seconds", $this->limit, $time);
     // Remove the lock.
     $this->indexProcess->unlock();
     return true;
 }
开发者ID:kirchbergerknorr,项目名称:FactFinderSync,代码行数:25,代码来源:Sync.php


示例20: _prepareMassaction

 /**
  * Add mass-actions to grid
  *
  * @return Mage_Index_Block_Adminhtml_Process_Grid
  */
 protected function _prepareMassaction()
 {
     $this->setMassactionIdField('process_id');
     $this->getMassactionBlock()->setFormFieldName('process');
     $this->getMassactionBlock()->addItem('change_mode', array('label' => Mage::helper('enterprise_index')->__('Change Index Mode'), 'url' => $this->getUrl('*/*/massChangeMode'), 'additional' => array('mode' => array('name' => 'index_mode', 'type' => 'select', 'class' => 'required-entry', 'label' => Mage::helper('enterprise_index')->__('Index mode'), 'values' => $this->_processModel->getModesOptions()))));
     $this->getMassactionBlock()->addItem('reindex', array('label' => Mage::helper('enterprise_index')->__('Reindex Data'), 'url' => $this->getUrl('*/*/massReindex'), 'selected' => true));
     return $this;
 }
开发者ID:hyhoocchan,项目名称:mage-local,代码行数:13,代码来源:Grid.php



注:本文中的Mage_Index_Model_Process类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Mage_Install_Block_Abstract类代码示例发布时间:2022-05-23
下一篇:
PHP Mage_Index_Model_Indexer_Abstract类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap