Coverage for Doctrine_Lib

Back to coverage report

1 <?php
2 /*
3  *  $Id: Lib.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
4  *
5  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16  *
17  * This software consists of voluntary contributions made by many individuals
18  * and is licensed under the LGPL. For more information, see
19  * <http://www.phpdoctrine.com>.
20  */
21
22 /**
23  * Doctrine_Lib has not commonly used static functions, mostly for debugging purposes
24  *
25  * @package     Doctrine
26  * @subpackage  Lib
27  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
28  * @link        www.phpdoctrine.com
29  * @since       1.0
30  * @version     $Revision: 2963 $
31  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
32  */
33 class Doctrine_Lib
34 {
35     /**
36      * @param integer $state                the state of record
37      * @see Doctrine_Record::STATE_* constants
38      * @return string                       string representation of given state
39      */
40     public static function getRecordStateAsString($state)
41     {
42         switch ($state) {
43         case Doctrine_Record::STATE_PROXY:
44             return "proxy";
45             break;
46         case Doctrine_Record::STATE_CLEAN:
47             return "persistent clean";
48             break;
49         case Doctrine_Record::STATE_DIRTY:
50             return "persistent dirty";
51             break;
52         case Doctrine_Record::STATE_TDIRTY:
53             return "transient dirty";
54             break;
55         case Doctrine_Record::STATE_TCLEAN:
56             return "transient clean";
57             break;
58         }
59     }
60
61     /**
62      * returns a string representation of Doctrine_Record object
63      * @param Doctrine_Record $record
64      * @return string
65      */
66     public static function getRecordAsString(Doctrine_Record $record)
67     {
68         $r[] = '<pre>';
69         $r[] = 'Component  : ' . $record->getTable()->getComponentName();
70         $r[] = 'ID         : ' . $record->obtainIdentifier();
71         $r[] = 'References : ' . count($record->getReferences());
72         $r[] = 'State      : ' . Doctrine_Lib::getRecordStateAsString($record->getState());
73         $r[] = 'OID        : ' . $record->getOID();
74         $r[] = 'data       : ' . Doctrine::dump($record->getData(), false);
75         $r[] = '</pre>';
76         return implode("\n",$r)."<br />";
77     }
78
79     /**
80      * Return an collection of records as XML. 
81      * 
82      * @see getRecordAsXml for options to set in the record class to control this.
83      *
84      * @param Doctrine_Collection $collection
85      * @param SimpleXMLElement $xml
86      * @return string Xml as string 
87      */
88     public static function getCollectionAsXml(Doctrine_Collection $collection, SimpleXMLElement $incomming_xml = null) {
89
90         $collectionName = Doctrine_Lib::plurelize($collection->getTable()->tableName);
91         if ( $collection->count != 0) {
92             $record = $collection[0];
93             $xml_options = $record->option("xml");
94             if ( isset($xml_options["collection_name"])) {
95                 $collectionName = $xml_options["collection_name"];
96             }
97         }
98
99         if ( ! isset($incomming_xml)) {
100             $new_xml_string = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?><" . $collectionName . "></" . $collectionName . ">";
101             $xml = new SimpleXMLElement($new_xml_string);
102         } else {
103             $xml = $incomming_xml->addChild($collectionName);
104         }
105         foreach ($collection as $key => $record) {
106             Doctrine_Lib::getRecordAsXml($record, $xml);
107         }
108         return $xml->asXML();
109     }
110
111     public static function plurelize($string) {
112         return $string . "s";
113     }
114
115     /**
116      * Return a recrd as XML. 
117      *
118      * In order to control how this is done set the "xml" option in a record. 
119      * This option is an array that has the keys "ignore_fields" and "include_relations". Both of these are arrays that list the name of fields/relations to include/process. 
120      *
121      * If you want to insert this xml as a part inside another xml send a 
122      * SimpleXMLElement to the function. Because of the nature of SimpleXML the 
123      * content you add to this element will be avilable after the function is 
124      * complete.
125      *
126      * @param Doctrine_Record $record
127      * @param SimpleXMLElement $xml
128      * @return string Xml as string
129      */
130     public static function getRecordAsXml(Doctrine_Record $record, SimpleXMlElement $incomming_xml = NULL)
131     {
132         $recordname = $record->getTable()->tableName;
133         if ( !isset($incomming_xml)) {
134             $new_xml_string = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?><" . $recordname . "></" . $recordname . ">";
135             $xml = new SimpleXMLElement($new_xml_string);
136         } else {
137             $xml = $incomming_xml->addChild($recordname);
138         }
139         foreach($record->obtainIdentifier() as $pk_field => $pk_value) {
140             $xml->addChild($pk_field,$pk_value); 
141         }
142         $xml_options = $record->option("xml");
143         if ( isset($xml_options["record_name"])) {
144             $recordname = $xml_options["record_name"];
145         }
146         foreach ($record->getData() as $field => $value) {
147             if ((isset($xml_options["ignore_fields"]) && !in_array($field, $xml_options["ignore_fields"])) || !isset($xml_options["ignore_fields"])) {
148                 if ($value instanceOf Doctrine_Null) {
149                     $xml->addChild($field);
150                 } else {    
151                     $xml->addChild($field, $value);
152                 }
153             }
154         }
155         if ( ! isset($xml_options["include_relations"])) {
156             return $xml->asXML();
157         }
158         $relations = $record->getTable()->getRelations();
159         foreach ($relations as $name => $relation) {
160             if (in_array($name, $xml_options["include_relations"])) {
161                 $relation_type = $relation->getType();
162                 $related_records = $record->get($name);
163                 if ($relation_type == Doctrine_Relation::ONE && $related_records instanceOf Doctrine_Record) {
164                     Doctrine_Lib::getRecordAsXml($related_records, $xml);
165                 } else {
166                     Doctrine_Lib::getCollectionAsXml($related_records, $xml);
167                 }
168             }
169         }
170         return $xml->asXML();
171     }
172
173
174     /**
175      * getStateAsString
176      * returns a given connection state as string
177      * @param integer $state        connection state
178      */
179     public static function getConnectionStateAsString($state)
180     {
181         switch ($state) {
182         case Doctrine_Transaction::STATE_SLEEP:
183             return "open";
184             break;
185         case Doctrine_Transaction::STATE_BUSY:
186             return "busy";
187             break;
188         case Doctrine_Transaction::STATE_ACTIVE:
189             return "active";
190             break;
191         }
192     }
193
194     /**
195      * returns a string representation of Doctrine_Connection object
196      * @param Doctrine_Connection $connection
197      * @return string
198      */
199     public static function getConnectionAsString(Doctrine_Connection $connection)
200     {
201         $r[] = '<pre>';
202         $r[] = 'Doctrine_Connection object';
203         $r[] = 'State               : ' . Doctrine_Lib::getConnectionStateAsString($connection->transaction->getState());
204         $r[] = 'Open Transactions   : ' . $connection->transaction->getTransactionLevel();
205         $r[] = 'Table in memory     : ' . $connection->count();
206         $r[] = 'Driver name         : ' . $connection->getAttribute(Doctrine::ATTR_DRIVER_NAME);
207
208         $r[] = "</pre>";
209         return implode("\n",$r)."<br>";
210     }
211
212     /**
213      * returns a string representation of Doctrine_Table object
214      * @param Doctrine_Table $table
215      * @return string
216      */
217     public static function getTableAsString(Doctrine_Table $table)
218     {
219         $r[] = "<pre>";
220         $r[] = "Component   : ".$table->getComponentName();
221         $r[] = "Table       : ".$table->getTableName();
222         $r[] = "</pre>";
223         return implode("\n",$r)."<br>";
224     }
225
226     /**
227      * @return string
228      */
229     public static function formatSql($sql)
230     {
231         $e = explode("\n",$sql);
232         $color = "367FAC";
233         $l = $sql;
234         $l = str_replace("SELECT ", "<font color='$color'><b>SELECT </b></font><br \>  ",$l);
235         $l = str_replace("FROM ", "<font color='$color'><b>FROM </b></font><br \>",$l);
236         $l = str_replace(" LEFT JOIN ", "<br \><font color='$color'><b> LEFT JOIN </b></font>",$l);
237         $l = str_replace(" INNER JOIN ", "<br \><font color='$color'><b> INNER JOIN </b></font>",$l);
238         $l = str_replace(" WHERE ", "<br \><font color='$color'><b> WHERE </b></font>",$l);
239         $l = str_replace(" GROUP BY ", "<br \><font color='$color'><b> GROUP BY </b></font>",$l);
240         $l = str_replace(" HAVING ", "<br \><font color='$color'><b> HAVING </b></font>",$l);
241         $l = str_replace(" AS ", "<font color='$color'><b> AS </b></font><br \>  ",$l);
242         $l = str_replace(" ON ", "<font color='$color'><b> ON </b></font>",$l);
243         $l = str_replace(" ORDER BY ", "<font color='$color'><b> ORDER BY </b></font><br \>",$l);
244         $l = str_replace(" LIMIT ", "<font color='$color'><b> LIMIT </b></font><br \>",$l);
245         $l = str_replace(" OFFSET ", "<font color='$color'><b> OFFSET </b></font><br \>",$l);
246         $l = str_replace("  ", "<dd>",$l);
247
248         return $l;
249     }
250
251     /**
252      * returns a string representation of Doctrine_Collection object
253      * @param Doctrine_Collection $collection
254      * @return string
255      */
256     public static function getCollectionAsString(Doctrine_Collection $collection)
257     {
258         $r[] = "<pre>";
259         $r[] = get_class($collection);
260         $r[] = 'data : ' . Doctrine::dump($collection->getData(), false);
261         //$r[] = 'snapshot : ' . Doctrine::dump($collection->getSnapshot());
262
263         $r[] = "</pre>";
264         return implode("\n",$r);
265     }
266 }