NestedSet.php 7.59 KB
Newer Older
1 2 3 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 29 30 31 32 33
<?php
/*
 *  $Id$
 *
 * 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
 * @version     $Revision$
 * @author      Joe Simms <joe.simms@websites4.com>
 */
class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Interface
{
34 35 36 37 38 39 40 41
    /**
     * 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)
    {
42 43 44 45 46
        // set default many root attributes
        $options['has_many_roots'] = isset($options['has_many_roots']) ? $options['has_many_roots'] : false;
        $options['root_column_name'] = isset($options['root_column_name']) ? $options['root_column_name'] : 'root_id';
  
        parent::__construct($table, $options);
47 48
    }
    
49 50 51 52 53 54
    /**
     * used to define table attributes required for the NestetSet implementation
     * adds lft and rgt columns for corresponding left and right values
     *
     */
    public function setTableDefinition()
55
    {
56 57 58
        if ($this->getAttribute('has_many_roots')) {
            $this->table->setColumn($this->getAttribute('root_column_name'),"integer",11);
        }
59

60 61
        $this->table->setColumn("lft","integer",11);
        $this->table->setColumn("rgt","integer",11);
62
    }
63 64 65 66 67 68 69

    /**
     * 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)
70
    {
71
        if ( ! $record) {
72 73 74
            $record = $this->table->create();
        }

75
        // if tree is many roots, then get next root id
76 77 78
        if ($this->getAttribute('has_many_roots')) {
            $record->getNode()->setRootValue($this->getNextRootId());
        }
79

80 81
        $record->set('lft', '1');
        $record->set('rgt', '2');
82

83 84 85
        $record->save();

        return $record;
86 87
    }

88 89 90 91 92
    /**
     * returns root node
     *
     * @return object $record        instance of Doctrine_Record
     */
zYne's avatar
zYne committed
93
    public function findRoot($rootId = 1)
94
    {
95
        $q = $this->table->createQuery();
96 97 98
        $q = $q->where('lft = ?', 1);
        
        // if tree has many roots, then specify root id
zYne's avatar
zYne committed
99
        $q = $this->returnQueryWithRootId($q, $rootId);
100 101

        $root = $q->execute()->getFirst();
102 103

        // if no record is returned, create record
104
        if ( ! $root) {
105 106 107 108 109 110 111
            $root = $this->table->create();
        }

        // set level to prevent additional query to determine level
        $root->getNode()->setLevel(0);

        return $root;
112 113
    }

114 115 116 117 118 119 120
    /**
     * optimised method to returns iterator for traversal of the entire tree from root
     *
     * @param array $options                    options
     * @return object $iterator                 instance of Doctrine_Node_NestedSet_PreOrderIterator
     */
    public function fetchTree($options = array())
121
    {
122 123 124
        // fetch tree
        $q = $this->table->createQuery();

125 126 127 128
        $q = $q->where('lft >= ?', 1)
                ->orderBy('lft asc');

        // if tree has many roots, then specify root id
zYne's avatar
zYne committed
129 130
        $rootId = isset($options['root_id']) ? $options['root_id'] : '1';
        $q = $this->returnQueryWithRootId($q, $rootId);
131 132
        
        $tree = $q->execute();
133

134
        $root = $tree->getFirst();
135

136
        // if no record is returned, create record
137
        if ( ! $root) {
138 139
            $root = $this->table->create();
        }
140

141 142 143 144 145 146 147 148
        if ($root->exists()) {
            // set level to prevent additional query
            $root->getNode()->setLevel(0);

            // default to include root node
            $options = array_merge(array('include_record'=>true), $options);

            // remove root node from collection if not required
david's avatar
david committed
149 150 151
            if ($options['include_record'] == false) {
                $tree->remove(0);
            }
152 153 154 155 156 157 158 159

            // set collection for iterator
            $options['collection'] = $tree;

            return $root->getNode()->traverse('Pre', $options);
        }

        // TODO: no default return value or exception thrown?
160
    }
161 162 163 164 165 166 167 168 169

    /**
     * optimised method that returns iterator for traversal of the tree from the given record primary key
     *
     * @param mixed $pk                         primary key as used by table::find() to locate node to traverse tree from
     * @param array $options                    options
     * @return iterator                         instance of Doctrine_Node_<Implementation>_PreOrderIterator
     */
    public function fetchBranch($pk, $options = array())
170
    {
171 172 173 174 175 176 177
        $record = $this->table->find($pk);
        if ($record->exists()) {
            $options = array_merge(array('include_record'=>true), $options);
            return $record->getNode()->traverse('Pre', $options);
        }

        // TODO: if record doesn't exist, throw exception or similar?
178
    }
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198

    /**
     * fetch root nodes
     *
     * @return collection                         Doctrine_Collection
     */
    public function fetchRoots()
    {
        $q = $this->table->createQuery();
        $q = $q->where('lft = ?', 1);
        return $q->execute();      
    }

    /**
     * calculates the next available root id
     *
     * @return integer
     */
    public function getNextRootId()
    {
199
        return $this->getMaxRootId() + 1;
200 201 202 203 204 205 206 207 208
    }

    /**
     * calculates the current max root id
     *
     * @return integer
     */    
    public function getMaxRootId()
    {      
209 210
        $component = $this->table->getComponentName();
        $column = $this->getAttribute('root_column_name');
211

212 213 214 215 216 217 218 219 220 221 222 223
        // 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;      
224 225 226 227 228 229 230 231 232
    }

    /**
     * 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
     */     
zYne's avatar
zYne committed
233
    public function returnQueryWithRootId($query, $rootId = 1)
234
    {
235
        if($this->getAttribute('has_many_roots')) {
zYne's avatar
zYne committed
236
            $query->addWhere($this->getAttribute('root_column_name') . ' = ?', $rootId);
237 238 239
        }

        return $query;
240
    }
241
}