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
00036 class Mage_Core_Model_Resource_Transaction
00037 {
00038
00039
00040
00041
00042
00043
00044 protected $_objects = array();
00045
00046
00047
00048
00049
00050
00051 protected $_objectsByAlias = array();
00052
00053
00054
00055
00056
00057
00058 protected $_resources = array();
00059
00060
00061
00062
00063
00064 public function __construct()
00065 {
00066
00067 }
00068
00069
00070
00071
00072
00073
00074 protected function _startTransaction()
00075 {
00076 foreach ($this->_objects as $object) {
00077 $object->getResource()->beginTransaction();
00078 }
00079 return $this;
00080 }
00081
00082
00083
00084
00085
00086
00087 protected function _commitTransaction()
00088 {
00089 foreach ($this->_objects as $object) {
00090 $object->getResource()->commit();
00091 }
00092 return $this;
00093 }
00094
00095
00096
00097
00098
00099
00100 protected function _rollbackTransaction()
00101 {
00102 foreach ($this->_objects as $object) {
00103 $object->getResource()->rollBack();
00104 }
00105 return $this;
00106 }
00107
00108
00109
00110
00111
00112
00113
00114
00115 public function addObject(Mage_Core_Model_Abstract $object, $alias='')
00116 {
00117 $this->_objects[] = $object;
00118 if (!empty($alias)) {
00119 $this->_objectsByAlias[$alias] = $object;
00120 }
00121 return $this;
00122 }
00123
00124
00125
00126
00127
00128
00129 public function save()
00130 {
00131 $this->_startTransaction();
00132 $commit = true;
00133 $errors = array();
00134
00135 foreach ($this->_objects as $object) {
00136 try {
00137 $object->save();
00138 }
00139 catch (Exception $e) {
00140 $commit = false;
00141 $errors[] = $e->getMessage();
00142 }
00143 }
00144
00145 if ($commit) {
00146 $this->_commitTransaction();
00147 }
00148 else {
00149 $this->_rollbackTransaction();
00150 Mage::throwException(join("\n", $errors));
00151 }
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163 return $this;
00164 }
00165
00166
00167
00168
00169
00170
00171 public function delete()
00172 {
00173 $this->_startTransaction();
00174 try {
00175 foreach ($this->_objects as $object) {
00176 $object->delete();
00177 }
00178 $this->_commitTransaction();
00179 }
00180 catch (Exception $e) {
00181 $this->_rollbackTransaction();
00182 throw $e;
00183 }
00184 return $this;
00185 }
00186
00187 }