Coverage for Doctrine_Validator_Exception

Back to coverage report

1 <?php
2 /*
3  *  $Id: Exception.php 2702 2007-10-03 21:43:22Z 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 Doctrine::autoload('Doctrine_Exception');
22 /**
23  * Doctrine_Validator_Exception
24  *
25  * @package     Doctrine
26  * @subpackage  Validator
27  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
28  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
29  * @link        www.phpdoctrine.com
30  * @since       1.0
31  * @version     $Revision: 2702 $
32  */
33 class Doctrine_Validator_Exception extends Doctrine_Exception implements Countable, IteratorAggregate
34 {
35     /**
36      * @var array $invalid
37      */
38     private $invalid = array();
39     /**
40      * @param Doctrine_Validator $validator
41      */
42     public function __construct(array $invalid)
43     {
44         $this->invalid = $invalid;
45         parent::__construct($this->generateMessage());
46     }
47
48     public function getInvalidRecords()
49     {
50         return $this->invalid;
51     }
52
53     public function getIterator()
54     {
55         return new ArrayIterator($this->invalid);
56     }
57
58     public function count()
59     {
60         return count($this->invalid);
61     }
62     /**
63      * __toString
64      *
65      * @return string
66      */
67     public function __toString()
68     {
69
70         return parent::__toString();
71     }
72
73     /**
74      * Generate a message with all classes that have exceptions
75      */
76     private function generateMessage()
77     {
78         $message = "";
79         foreach ($this->invalid as $record) {
80            $message .= "Validaton error in class " . get_class($record) . " ";
81         }
82         return $message;
83     }
84
85     /**
86      * This method will apply the value of the $function variable as a user_func 
87      * to tall errorstack objects in the exception
88      *
89      * @param mixed Either string with function name or array with object, 
90      * functionname. See call_user_func in php manual for more inforamtion
91      */
92     public function inspect($function)
93     {
94         foreach ($this->invalid as $record) {
95             call_user_func($function, $record->getErrorStack());
96         }
97     }
98 }