00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Mage_Dataflow_Model_Batch extends Mage_Core_Model_Abstract
00036 {
00037
00038
00039
00040
00041 const LIFETIME = 86400;
00042
00043
00044
00045
00046
00047
00048 protected $_fieldList = array();
00049
00050
00051
00052
00053
00054
00055 protected $_ioAdapter;
00056
00057
00058
00059
00060
00061
00062 protected $_batchExport;
00063
00064
00065
00066
00067
00068
00069 protected $_batchImport;
00070
00071
00072
00073
00074
00075 protected function _construct()
00076 {
00077 $this->_init('dataflow/batch');
00078 }
00079
00080
00081
00082
00083
00084
00085 public function getFieldList()
00086 {
00087 return $this->_fieldList;
00088 }
00089
00090
00091
00092
00093
00094
00095 public function parseFieldList($row)
00096 {
00097 foreach ($row as $fieldName => $value) {
00098 if (!in_array($fieldName, $this->_fieldList)) {
00099 $this->_fieldList[$fieldName] = $fieldName;
00100 }
00101 }
00102 unset($fieldName, $value, $row);
00103 }
00104
00105
00106
00107
00108
00109
00110 public function getIoAdapter()
00111 {
00112 if (is_null($this->_ioAdapter)) {
00113 $this->_ioAdapter = Mage::getModel('dataflow/batch_io');
00114 $this->_ioAdapter->init($this);
00115 }
00116 return $this->_ioAdapter;
00117 }
00118
00119 protected function _beforeSave()
00120 {
00121 if (is_null($this->getData('created_at'))) {
00122 $this->setData('created_at', Mage::getSingleton('core/date')->gmtDate());
00123 }
00124 }
00125
00126 protected function _afterDelete()
00127 {
00128 $this->getIoAdapter()->clear();
00129 }
00130
00131
00132
00133
00134
00135
00136 public function getBatchExportModel()
00137 {
00138 if (is_null($this->_batchExport)) {
00139 $object = Mage::getModel('dataflow/batch_export');
00140 $object->setBatchId($this->getId());
00141 $this->_batchExport = Varien_Object_Cache::singleton()->save($object);
00142 }
00143 return Varien_Object_Cache::singleton()->load($this->_batchExport);
00144 }
00145
00146
00147
00148
00149
00150
00151 public function getBatchImportModel()
00152 {
00153 if (is_null($this->_batchImport)) {
00154 $object = Mage::getModel('dataflow/batch_import');
00155 $object->setBatchId($this->getId());
00156 $this->_batchImport = Varien_Object_Cache::singleton()->save($object);
00157 }
00158 return Varien_Object_Cache::singleton()->load($this->_batchImport);
00159 }
00160
00161
00162
00163
00164
00165 public function beforeFinish()
00166 {
00167 if ($this->getAdapter()) {
00168 $adapter = Mage::getModel($this->getAdapter());
00169 if (method_exists($adapter, 'finish')) {
00170 $adapter->finish();
00171 }
00172 }
00173 }
00174
00175
00176
00177
00178
00179
00180
00181
00182 public function setParams($data)
00183 {
00184 $this->setData('params', serialize($data));
00185 return $this;
00186 }
00187
00188
00189
00190
00191
00192
00193
00194 public function getParams()
00195 {
00196 $data = $this->_data['params'];
00197 $data = unserialize($data);
00198 return $data;
00199 }
00200 }