包 | system.gii |
---|---|
继承 | class CCodeFile » CComponent |
源自 | 1.1.2 |
版本 | $Id: CCodeFile.php 3426 2011-10-25 00:01:09Z alexander.makarow $ |
源码 |
CCodeFile表示生成的一个代码文件。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
content | mixed | 新生成的代码。如果此值为null,表示path 将被当作是一个目录。 | CCodeFile |
error | string | 将代码保存到文件时发生的错误 | CCodeFile |
operation | string | 将执行的操作 | CCodeFile |
path | string | 生成的代码存放的文件路径。 | CCodeFile |
relativePath | string | 此代码文件的相对路径(基于应用的基本路径)。 | CCodeFile |
type | string | 此代码文件的扩展名(例如:php,txt)。 | CCodeFile |
公共方法
属性详细
content
属性
public mixed $content;
新生成的代码。如果此值为null,表示path 将被当作是一个目录。
error
属性
public string $error;
将代码保存到文件时发生的错误
operation
属性
public string $operation;
将执行的操作
path
属性
public string $path;
生成的代码存放的文件路径。
relativePath
属性
只读
public string getRelativePath()
此代码文件的相对路径(基于应用的基本路径)。
type
属性
只读
public string getType()
此代码文件的扩展名(例如:php,txt)。
方法详细
__construct()
方法
public void __construct(string $path, string $content)
| ||
$path | string | 生成的代码存放的文件路径。 |
$content | string | 新生成的代码 |
public function __construct($path,$content)
{
$this->path=strtr($path,array('/'=>DIRECTORY_SEPARATOR,'\\'=>DIRECTORY_SEPARATOR));
$this->content=$content;
if(is_file($path))
$this->operation=file_get_contents($path)===$content ? self::OP_SKIP : self::OP_OVERWRITE;
else if($content===null) // is dir
$this->operation=is_dir($path) ? self::OP_SKIP : self::OP_NEW;
else
$this->operation=self::OP_NEW;
}
构造方法。
getRelativePath()
方法
public string getRelativePath()
| ||
{return} | string | 此代码文件的相对路径(基于应用的基本路径)。 |
public function getRelativePath()
{
if(strpos($this->path,Yii::app()->basePath)===0)
return substr($this->path,strlen(Yii::app()->basePath)+1);
else
return $this->path;
}
getType()
方法
public string getType()
| ||
{return} | string | 此代码文件的扩展名(例如:php,txt)。 |
public function getType()
{
if(($pos=strrpos($this->path,'.'))!==false)
return substr($this->path,$pos+1);
else
return 'unknown';
}
save()
方法
public void save()
|
public function save()
{
$module=Yii::app()->controller->module;
if($this->content===null) // a directory
{
if(!is_dir($this->path))
{
$oldmask=@umask(0);
$result=@mkdir($this->path,$module->newDirMode,true);
@umask($oldmask);
if(!$result)
{
$this->error="Unable to create the directory '{$this->path}'.";
return false;
}
}
return true;
}
if($this->operation===self::OP_NEW)
{
$dir=dirname($this->path);
if(!is_dir($dir))
{
$oldmask=@umask(0);
$result=@mkdir($dir,$module->newDirMode,true);
@umask($oldmask);
if(!$result)
{
$this->error="Unable to create the directory '$dir'.";
return false;
}
}
}
if(@file_put_contents($this->path,$this->content)===false)
{
$this->error="Unable to write the file '{$this->path}'.";
return false;
}
else
{
$oldmask=@umask(0);
@chmod($this->path,$module->newFileMode);
@umask($oldmask);
}
return true;
}
将生成的代码保存到文件path。