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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Tool
* @subpackage Framework
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Profile.php 20967 2010-02-07 18:17:49Z ralph $
*/
/**
* @see Zend_Tool_Project_Profile_FileParser_Xml
*/
require_once 'Zend/Tool/Project/Profile/FileParser/Xml.php';
/**
* @see Zend_Tool_Project_Profile_Resource_Container
*/
require_once 'Zend/Tool/Project/Profile/Resource/Container.php';
/**
* This class is the front most class for utilizing Zend_Tool_Project
*
* A profile is a hierarchical set of resources that keep track of
* items within a specific project.
*
* @category Zend
* @package Zend_Tool
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Tool_Project_Profile extends Zend_Tool_Project_Profile_Resource_Container
{
/**
* @var bool
*/
protected static $_traverseEnabled = false;
/**
* Constructor, standard usage would allow the setting of options
*
* @param array $options
* @return bool
*/
public function __construct($options = null)
{
if ($options) {
$this->setOptions($options);
}
$this->_topResources = new Zend_Tool_Project_Profile_Resource_Container();
}
/**
* Process options and either set a profile property or
* set a profile 'attribute'
*
* @param array $options
*/
public function setOptions(Array $options)
{
$this->setAttributes($options);
}
/**
* getIterator() - reqruied by the RecursiveIterator interface
*
* @return RecursiveIteratorIterator
*/
public function getIterator()
{
require_once 'Zend/Tool/Project/Profile/Iterator/EnabledResourceFilter.php';
return new RecursiveIteratorIterator(
new Zend_Tool_Project_Profile_Iterator_EnabledResourceFilter($this),
RecursiveIteratorIterator::SELF_FIRST
);
}
/**
* loadFromData() - Load a profile from data provided by the
* 'profilData' attribute
*
*/
public function loadFromData()
{
if (!isset($this->_attributes['profileData'])) {
require_once 'Zend/Tool/Project/Exception.php';
throw new Zend_Tool_Project_Exception('loadFromData() must have "profileData" set.');
}
$profileFileParser = new Zend_Tool_Project_Profile_FileParser_Xml();
$profileFileParser->unserialize($this->_attributes['profileData'], $this);
$this->rewind();
}
/**
* isLoadableFromFile() - can a profile be loaded from a file
*
* wether or not a profile can be loaded from the
* file in attribute 'projectProfileFile', or from a file named
* '.zfproject.xml' inside a directory in key 'projectDirectory'
*
* @return bool
*/
public function isLoadableFromFile()
{
if (!isset($this->_attributes['projectProfileFile']) && !isset($this->_attributes['projectDirectory'])) {
return false;
}
if (isset($this->_attributes['projectProfileFile'])) {
$projectProfileFilePath = $this->_attributes['projectProfileFile'];
if (!file_exists($projectProfileFilePath)) {
return false;
}
} else {
$projectProfileFilePath = rtrim($this->_attributes['projectDirectory'], '/\\') . '/.zfproject.xml';
if (!file_exists($projectProfileFilePath)) {
return false;
}
}
return true;
}
/**
* loadFromFile() - Load data from file
*
* this attempts to load a project profile file from a variety of locations depending
* on what information the user provided vie $options or attributes, specifically the
* 'projectDirectory' or 'projectProfileFile'
*
*/
public function loadFromFile()
{
// if no data is supplied, need either a projectProfileFile or a projectDirectory
if (!isset($this->_attributes['projectProfileFile']) && !isset($this->_attributes['projectDirectory'])) {
require_once 'Zend/Tool/Project/Exception.php';
throw new Zend_Tool_Project_Exception('loadFromFile() must have at least "projectProfileFile" or "projectDirectory" set.');
}
if (isset($this->_attributes['projectProfileFile'])) {
$projectProfileFilePath = $this->_attributes['projectProfileFile'];
if (!file_exists($projectProfileFilePath)) {
require_once 'Zend/Tool/Project/Exception.php';
throw new Zend_Tool_Project_Exception('"projectProfileFile" was supplied but file was not found at location ' . $projectProfileFilePath);
}
$this->_attributes['projectDirectory'] = dirname($projectProfileFilePath);
} else {
$projectProfileFilePath = rtrim($this->_attributes['projectDirectory'], '/\\') . '/.zfproject.xml';
if (!file_exists($projectProfileFilePath)) {
require_once 'Zend/Tool/Project/Exception.php';
throw new Zend_Tool_Project_Exception('"projectDirectory" was supplied but no profile file file was not found at location ' . $projectProfileFilePath);
}
$this->_attributes['projectProfileFile'] = $projectProfileFilePath;
}
$profileData = file_get_contents($projectProfileFilePath);
$profileFileParser = new Zend_Tool_Project_Profile_FileParser_Xml();
$profileFileParser->unserialize($profileData, $this);
$this->rewind();
}
/**
* storeToFile() - store the current profile to file
*
* This will store the profile in memory to a place on disk determined by the attributes
* available, specifically if the key 'projectProfileFile' is available
*
*/
public function storeToFile()
{
$file = null;
if (isset($this->_attributes['projectProfileFile'])) {
$file = $this->_attributes['projectProfileFile'];
}
if ($file == null) {
require_once 'Zend/Tool/Project/Exception.php';
throw new Zend_Tool_Project_Exception('storeToFile() must have a "projectProfileFile" attribute set.');
}
$parser = new Zend_Tool_Project_Profile_FileParser_Xml();
$xml = $parser->serialize($this);
file_put_contents($file, $xml);
}
/**
* storeToData() - create a string representation of the profile in memory
*
* @return string
*/
public function storeToData()
{
$parser = new Zend_Tool_Project_Profile_FileParser_Xml();
$xml = $parser->serialize($this);
return $xml;
}
/**
* __toString() - cast this profile to string to be able to view it.
*
* @return string
*/
public function __toString()
{
$string = '';
foreach ($this as $resource) {
$string .= $resource->getName() . PHP_EOL;
$rii = new RecursiveIteratorIterator($resource, RecursiveIteratorIterator::SELF_FIRST);
foreach ($rii as $item) {
$string .= str_repeat(' ', $rii->getDepth()+1) . $item->getName()
. ((count($attributes = $item->getAttributes()) > 0) ? ' [' . http_build_query($attributes) . ']' : '')
. PHP_EOL;
}
}
return $string;
}
}
|