Parser.php 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php
/*
 *  $Id: Parser.php 1080 2007-02-10 18:17:08Z jwage $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
19
 * <http://www.phpdoctrine.org>.
20
 */
21

22 23 24 25
/**
 * Doctrine_Parser
 *
 * @package     Doctrine
26
 * @subpackage  Parser
27
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
28
 * @link        www.phpdoctrine.org
29 30
 * @since       1.0
 * @version     $Revision: 1080 $
31
 * @author      Jonathan H. Wage <jwage@mac.com>
32 33 34
 */
abstract class Doctrine_Parser
{
35 36 37 38 39 40 41 42 43
    /**
     * loadData
     *
     * Override in the parser driver
     *
     * @param string $array 
     * @return void
     * @author Jonathan H. Wage
     */
44
    abstract public function loadData($array);
45

46 47 48 49 50 51 52 53 54 55
    /**
     * dumpData
     *
     * Override in the praser driver
     *
     * @param string $array 
     * @param string $path 
     * @return void
     * @author Jonathan H. Wage
     */
56
    abstract public function dumpData($array, $path = null);
57

58 59 60 61 62 63 64 65 66
    /**
     * getParser
     *
     * Get instance of the specified parser
     *
     * @param string $type 
     * @return void
     * @author Jonathan H. Wage
     */
67 68 69
    static public function getParser($type)
    {
        $class = 'Doctrine_Parser_'.ucfirst($type);
Jonathan.Wage's avatar
Jonathan.Wage committed
70

71 72
        return new $class;
    }
73

74 75 76 77 78 79 80 81 82 83
    /**
     * load
     *
     * Interface for loading and parsing data from a file
     *
     * @param string $path 
     * @param string $type 
     * @return void
     * @author Jonathan H. Wage
     */
84 85 86
    static public function load($path, $type = 'xml')
    {
        $parser = self::getParser($type);
Jonathan.Wage's avatar
Jonathan.Wage committed
87

88 89
        return $parser->loadData($path);
    }
90

91 92 93 94 95 96 97 98 99 100 101
    /**
     * dump
     *
     * Interface for pulling and dumping data to a file
     *
     * @param string $array 
     * @param string $path 
     * @param string $type 
     * @return void
     * @author Jonathan H. Wage
     */
Jonathan.Wage's avatar
Jonathan.Wage committed
102
    static public function dump($array, $type = 'xml', $path = null)
103 104
    {
        $parser = self::getParser($type);
Jonathan.Wage's avatar
Jonathan.Wage committed
105

106 107
        return $parser->dumpData($array, $path);
    }
108

109
    /**
110
     * doLoad
111 112 113 114 115 116 117
     *
     * Get contents whether it is the path to a file file or a string of txt.
     * Either should allow php code in it.
     *
     * @param string $path 
     * @return void
     */
118
    public function doLoad($path)
119 120
    {
        ob_start();
121
        if ( ! file_exists($path)) {
122
            $contents = $path;
Jonathan.Wage's avatar
Jonathan.Wage committed
123 124
            $path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'dparser_' . microtime();

125 126
            file_put_contents($path, $contents);
        }
Jonathan.Wage's avatar
Jonathan.Wage committed
127

128 129
        include($path);
        $contents = ob_get_clean();
Jonathan.Wage's avatar
Jonathan.Wage committed
130

131 132
        return $contents;
    }
Jonathan.Wage's avatar
Jonathan.Wage committed
133

134 135 136 137 138 139 140 141
    /**
     * doDump
     *
     * @param string $data 
     * @param string $path 
     * @return void
     */
    public function doDump($data, $path = null)
142
    {
143
      if ($path !== null) {
144 145 146 147 148
            return file_put_contents($path, $data);
        } else {
            return $data;
        }
    }
149
}