NestedSet.php 10.2 KB
Newer Older
1 2
<?php
/*
3
 *  $Id: NestedSet.php 1600 2007-06-07 19:17:56Z romanb $
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *
 * 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
 * <http://www.phpdoctrine.com>.
 */
/**
 * Doctrine_Tree_NestedSet
 *
 * @package     Doctrine
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
29
 * @version     $Revision: 1600 $
30 31 32 33
 * @author      Joe Simms <joe.simms@websites4.com>
 */
class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Interface
{
34 35
    private $_baseQuery;
    
36 37 38 39 40 41 42 43
    /**
     * constructor, creates tree with reference to table and sets default root options
     *
     * @param object $table                     instance of Doctrine_Table
     * @param array $options                    options
     */
    public function __construct(Doctrine_Table $table, $options)
    {
44
        // set default many root attributes
45 46 47
        $options['hasManyRoots'] = isset($options['hasManyRoots']) ? $options['hasManyRoots'] : false;
        if($options['hasManyRoots'])
            $options['rootColumnName'] = isset($options['rootColumnName']) ? $options['rootColumnName'] : 'root_id';
48 49
  
        parent::__construct($table, $options);
50 51
    }
    
52 53 54 55 56 57
    /**
     * used to define table attributes required for the NestetSet implementation
     * adds lft and rgt columns for corresponding left and right values
     *
     */
    public function setTableDefinition()
58
    {
59 60
        if ($root = $this->getAttribute('rootColumnName')) {
            $this->table->setColumn($root, 'integer', 4);
61
        }
62

63 64 65
        $this->table->setColumn('lft', 'integer', 4);
        $this->table->setColumn('rgt', 'integer', 4);
        $this->table->setColumn('level', 'integer', 2);
66
    }
67 68 69 70 71 72 73

    /**
     * creates root node from given record or from a new record
     *
     * @param object $record        instance of Doctrine_Record
     */
    public function createRoot(Doctrine_Record $record = null)
74
    {
75
        if ( ! $record) {
76 77 78
            $record = $this->table->create();
        }

79 80
        // if tree is many roots, and no root id has been set, then get next root id
        if ($root = $this->getAttribute('hasManyRoots') && $record->getNode()->getRootValue() <= 0) {
81 82
            $record->getNode()->setRootValue($this->getNextRootId());
        }
83

84 85
        $record->set('lft', '1');
        $record->set('rgt', '2');
86

87 88 89
        $record->save();

        return $record;
90 91
    }

92 93 94 95
    /**
     * returns root node
     *
     * @return object $record        instance of Doctrine_Record
96
     * @deprecated Use fetchRoot()
97
     */
zYne's avatar
zYne committed
98
    public function findRoot($rootId = 1)
99
    {
100 101 102 103 104 105 106 107 108 109 110 111
        return $this->fetchRoot($rootId);
    }
    
    /**
     * Fetches a/the root node.
     *
     * @param integer $rootId
     */
    public function fetchRoot($rootId = 1)
    {
        $q = $this->getBaseQuery();
        $q = $q->where('base.lft = ?', 1);
112 113
        
        // if tree has many roots, then specify root id
zYne's avatar
zYne committed
114
        $q = $this->returnQueryWithRootId($q, $rootId);
115
        $data = $q->execute();
116

117 118
        if (count($data) <= 0) {
            return false;
119 120
        }

121 122 123 124 125 126 127 128 129
        if ($data instanceof Doctrine_Collection) {
            $root = $data->getFirst();
            $root['level'] = 0;
        } else if (is_array($data)) {
            $root = array_shift($data);
            $root['level'] = 0;
        } else {
            throw new Doctrine_Tree_Exception("Unexpected data structure returned.");
        }
130 131

        return $root;
132 133
    }

134
    /**
135
     * Fetches a tree.
136
     *
137 138
     * @param array $options  Options
     * @return mixed          The tree or FALSE if the tree could not be found.
139 140
     */
    public function fetchTree($options = array())
141
    {
142
        // fetch tree
143 144
        $q = $this->getBaseQuery();
        $componentName = $this->table->getComponentName();
145

146
        $q = $q->addWhere("base.lft >= ?", 1);
147 148

        // if tree has many roots, then specify root id
zYne's avatar
zYne committed
149
        $rootId = isset($options['root_id']) ? $options['root_id'] : '1';
150 151 152 153 154
        if (is_array($rootId)) {
            $q->orderBy("base." . $this->getAttribute('rootColumnName') . ", base.lft ASC");
        } else {
            $q->orderBy("base.lft ASC");
        }
155
        
156
        $q = $this->returnQueryWithRootId($q, $rootId);
157
        $tree = $q->execute();
158 159 160
        
        if (count($tree) <= 0) {
            return false;
161
        }
162 163
        
        return $tree;
164
    }
165 166

    /**
167
     * Fetches a branch of a tree.
168
     *
169 170 171 172
     * @param mixed $pk              primary key as used by table::find() to locate node to traverse tree from
     * @param array $options         Options.
     * @return mixed                 The branch or FALSE if the branch could not be found.
     * @todo Only fetch the lft and rgt values of the initial record. more is not needed.
173 174
     */
    public function fetchBranch($pk, $options = array())
175
    {
176
        $record = $this->table->find($pk);
177 178 179
        if ( ! ($record instanceof Doctrine_Record) || !$record->exists()) {
            // TODO: if record doesn't exist, throw exception or similar?
            return false;
180
        }
181 182 183 184 185 186 187
        //$depth = isset($options['depth']) ? $options['depth'] : null;
        
        $q = $this->getBaseQuery();
        $params = array($record->get('lft'), $record->get('rgt'));
        $q->where("base.lft >= ? AND base.rgt <= ?", $params)->orderBy("base.lft asc");
        $q = $this->returnQueryWithRootId($q, $record->getNode()->getRootValue());
        return $q->execute();
188
    }
189 190

    /**
191 192
     * Fetches all root nodes. If the tree has only one root this is the same as
     * fetchRoot().
193
     *
194
     * @return mixed  The root nodes.
195 196 197
     */
    public function fetchRoots()
    {
198 199
        $q = $this->getBaseQuery();
        $q = $q->where('base.lft = ?', 1);
200 201 202 203 204 205 206 207 208 209
        return $q->execute();      
    }

    /**
     * calculates the next available root id
     *
     * @return integer
     */
    public function getNextRootId()
    {
210
        return $this->getMaxRootId() + 1;
211 212 213 214 215 216 217 218 219
    }

    /**
     * calculates the current max root id
     *
     * @return integer
     */    
    public function getMaxRootId()
    {      
220
        $component = $this->table->getComponentName();
221
        $column    = $this->getAttribute('rootColumnName');
222

223 224 225 226 227 228 229 230 231 232 233 234
        // cannot get this dql to work, cannot retrieve result using $coll[0]->max
        //$dql = "SELECT MAX(c.$column) FROM $component c";
        
        $dql = 'SELECT c.' . $column . ' FROM ' . $component . ' c ORDER BY c.' . $column . ' DESC LIMIT 1';
  
        $coll = $this->table->getConnection()->query($dql);
  
        $max = $coll[0]->get($column);
  
        $max = !is_null($max) ? $max : 0;
  
        return $max;      
235 236 237 238 239 240 241 242
    }

    /**
     * returns parsed query with root id where clause added if applicable
     *
     * @param object    $query    Doctrine_Query
     * @param integer   $root_id  id of destination root
     * @return object   Doctrine_Query
243
     */
zYne's avatar
zYne committed
244
    public function returnQueryWithRootId($query, $rootId = 1)
245
    {
246 247 248 249 250 251 252
        if ($root = $this->getAttribute('rootColumnName')) {
            if (is_array($rootId)) {
               $query->addWhere($root . ' IN (' . implode(',', array_fill(0, count($rootId), '?')) . ')',
                       $rootId);
            } else {
               $query->addWhere($root . ' = ?', $rootId); 
            }
253 254 255
        }

        return $query;
256
    }
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
    
    /**
     * Enter description here...
     *
     * @param array $options
     * @return unknown
     */
    public function getBaseQuery()
    {
        if (!isset($this->_baseQuery)) {
            $this->_baseQuery = $this->_createBaseQuery();
        }
        return clone $this->_baseQuery;
    }
    
    /**
     * Enter description here...
     *
     */
    private function _createBaseQuery()
    {
        $q = new Doctrine_Query();
        $q->select("base.*")->from($this->table->getComponentName() . " base");
        return $q;
    }
    
    /**
     * Enter description here...
     *
     * @param Doctrine_Query $query
     */
    public function setBaseQuery(Doctrine_Query $query)
    {
        $query->addSelect("base.lft, base.rgt, base.level");
        if ($this->getAttribute('rootColumnName')) {
            $query->addSelect("base." . $this->getAttribute('rootColumnName'));
        }
        $this->_baseQuery = $query;
    }
    
    /**
     * Enter description here...
     *
     */
    public function resetBaseQuery()
    {
        $this->_baseQuery = null;
    }
    
    /**
     * Enter description here...
     *
     * @param unknown_type $graph
     */
    /*
    public function computeLevels($tree)
    {
        $right = array();
        $isArray = is_array($tree);
        $rootColumnName = $this->getAttribute('rootColumnName');
        
        for ($i = 0, $count = count($tree); $i < $count; $i++) {
            if ($rootColumnName && $i > 0 && $tree[$i][$rootColumnName] != $tree[$i-1][$rootColumnName]) {
                $right = array();
            }
            
            if (count($right) > 0) {
                while (count($right) > 0 && $right[count($right)-1] < $tree[$i]['rgt']) {
                    //echo count($right);
                    array_pop($right);
                }
            }
     
            if ($isArray) {
                $tree[$i]['level'] = count($right);
            } else {
                $tree[$i]->getNode()->setLevel(count($right));
            }
    
            $right[] = $tree[$i]['rgt'];
        }
        return $tree;
    }
    */
341
}