Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
14181b2b
Commit
14181b2b
authored
Aug 28, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update PHPDoc command to update classfiles automatically
parent
fa2a48c6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
153 additions
and
21 deletions
+153
-21
PhpDocController.php
build/controllers/PhpDocController.php
+151
-21
Connection.php
framework/yii/db/redis/Connection.php
+1
-0
Transaction.php
framework/yii/db/redis/Transaction.php
+1
-0
No files found.
build/controllers/PhpDocController.php
View file @
14181b2b
...
...
@@ -9,6 +9,7 @@ namespace yii\build\controllers;
use
yii\console\Controller
;
use
yii\helpers\Console
;
use
yii\helpers\FileHelper
;
/**
* PhpDocController is there to help maintaining PHPDoc annotation in class files
...
...
@@ -21,40 +22,162 @@ class PhpDocController extends Controller
/**
* Generates @property annotations in class files from getters and setters
*
* @param
string $directory
the directory to parse files from
* @param bool
ean
$updateFiles whether to update class docs directly
* @param
null $root
the directory to parse files from
* @param bool $updateFiles whether to update class docs directly
*/
public
function
actionProperty
(
$
directory
=
null
,
$updateFiles
=
fals
e
)
public
function
actionProperty
(
$
root
=
null
,
$updateFiles
=
tru
e
)
{
if
(
$
directory
===
null
)
{
$
directory
=
dirname
(
dirname
(
__DIR__
))
.
'/framework/yii'
;
if
(
$
root
===
null
)
{
$
root
=
YII_PATH
;
}
$root
=
FileHelper
::
normalizePath
(
$root
);
$options
=
array
(
'filter'
=>
function
(
$path
)
{
if
(
is_file
(
$path
))
{
$file
=
basename
(
$path
);
if
(
$file
[
0
]
<
'A'
||
$file
[
0
]
>
'Z'
)
{
return
false
;
}
}
return
null
;
},
'only'
=>
array
(
'.php'
),
'except'
=>
array
(
'YiiBase.php'
,
'Yii.php'
,
'/debug/views/'
,
'/requirements/'
,
'/gii/views/'
,
'/gii/generators/'
,
),
);
$files
=
FileHelper
::
findFiles
(
$root
,
$options
);
$nFilesTotal
=
0
;
$files
=
new
\RegexIterator
(
new
\RecursiveIteratorIterator
(
new
\RecursiveDirectoryIterator
(
$directory
)),
'#^.+\.php$#i'
,
\RecursiveRegexIterator
::
GET_MATCH
);
$nFilesUpdated
=
0
;
foreach
(
$files
as
$file
)
{
list
(
$className
,
$phpdoc
)
=
$this
->
generateClassPropertyDocs
(
$file
[
0
]);
if
(
$phpdoc
!==
false
)
{
$result
=
$this
->
generateClassPropertyDocs
(
$file
);
if
(
$result
!==
false
)
{
list
(
$className
,
$phpdoc
)
=
$result
;
if
(
$updateFiles
)
{
$this
->
updateClassPropertyDocs
(
$file
[
0
],
$className
,
$phpdoc
);
}
else
{
$this
->
stdout
(
"
\n
[ "
.
$file
[
0
]
.
" ]
\n\n
"
,
Console
::
BOLD
);
$this
->
stdout
(
$phpdoc
.
"
\n
"
);
if
(
$this
->
updateClassPropertyDocs
(
$file
,
$className
,
$phpdoc
))
{
$nFilesUpdated
++
;
}
}
elseif
(
!
empty
(
$phpdoc
))
{
$this
->
stdout
(
"
\n
[ "
.
$file
.
" ]
\n\n
"
,
Console
::
BOLD
);
$this
->
stdout
(
$phpdoc
);
}
}
$nFilesTotal
++
;
}
$this
->
stdout
(
"
\n\n
Parsed
$nFilesTotal
files.
\n
"
);
$this
->
stdout
(
"Updated
$nFilesUpdated
files.
\n
"
);
}
protected
function
updateClassPropertyDocs
(
$file
,
$className
,
$p
hp
Doc
)
protected
function
updateClassPropertyDocs
(
$file
,
$className
,
$p
roperty
Doc
)
{
// TODO implement
$ref
=
new
\ReflectionClass
(
$className
);
if
(
$ref
->
getFileName
()
!=
$file
)
{
$this
->
stderr
(
"[ERR] Unable to create ReflectionClass for class:
$className
loaded class is not from file:
$file
\n
"
,
Console
::
FG_RED
);
}
$oldDoc
=
$ref
->
getDocComment
();
$newDoc
=
$this
->
cleanDocComment
(
$this
->
updateDocComment
(
$oldDoc
,
$propertyDoc
));
$seenSince
=
false
;
$seenAuthor
=
false
;
$lines
=
explode
(
"
\n
"
,
$newDoc
);
foreach
(
$lines
as
$line
)
{
if
(
substr
(
trim
(
$line
),
0
,
9
)
==
'* @since '
)
{
$seenSince
=
true
;
}
elseif
(
substr
(
trim
(
$line
),
0
,
10
)
==
'* @author '
)
{
$seenAuthor
=
true
;
}
}
if
(
!
$seenSince
)
{
$this
->
stderr
(
"[ERR] No @since found in class doc in file:
$file
\n
"
,
Console
::
FG_RED
);
}
if
(
!
$seenAuthor
)
{
$this
->
stderr
(
"[ERR] No @author found in class doc in file:
$file
\n
"
,
Console
::
FG_RED
);
}
if
(
$oldDoc
!=
$newDoc
)
{
$fileContent
=
file
(
$file
);
$start
=
$ref
->
getStartLine
();
$docStart
=
$start
-
count
(
explode
(
"
\n
"
,
$oldDoc
));
$newFileContent
=
array
();
foreach
(
$fileContent
as
$i
=>
$line
)
{
if
(
$i
>
$start
||
$i
<
$docStart
)
{
$newFileContent
[]
=
$line
;
}
else
{
$newFileContent
[]
=
trim
(
$newDoc
);
}
}
file_put_contents
(
$file
,
implode
(
"
\n
"
,
$newFileContent
));
return
true
;
}
return
false
;
}
/**
* remove multi empty lines and trim trailing whitespace
*
* @param $doc
* @return string
*/
protected
function
cleanDocComment
(
$doc
)
{
$lines
=
explode
(
"
\n
"
,
$doc
);
$n
=
count
(
$lines
);
for
(
$i
=
0
;
$i
<
$n
;
$i
++
)
{
$lines
[
$i
]
=
rtrim
(
$lines
[
$i
]);
if
(
trim
(
$lines
[
$i
])
==
'*'
&&
trim
(
$lines
[
$i
+
1
])
==
'*'
)
{
unset
(
$lines
[
$i
]);
}
}
return
implode
(
"
\n
"
,
$lines
);
}
/**
* replace property annotations in doc comment
* @param $doc
* @param $properties
* @return string
*/
protected
function
updateDocComment
(
$doc
,
$properties
)
{
$lines
=
explode
(
"
\n
"
,
$doc
);
$propertyPart
=
false
;
$propertyPosition
=
false
;
foreach
(
$lines
as
$i
=>
$line
)
{
if
(
substr
(
trim
(
$line
),
0
,
12
)
==
'* @property '
)
{
$propertyPart
=
true
;
}
elseif
(
$propertyPart
&&
trim
(
$line
)
==
'*'
)
{
$propertyPosition
=
$i
;
$propertyPart
=
false
;
}
if
(
substr
(
trim
(
$line
),
0
,
10
)
==
'* @author '
&&
$propertyPosition
===
false
)
{
$propertyPosition
=
$i
;
$propertyPart
=
false
;
}
if
(
$propertyPart
)
{
unset
(
$lines
[
$i
]);
}
}
$finalDoc
=
''
;
foreach
(
$lines
as
$i
=>
$line
)
{
$finalDoc
.=
$line
.
"
\n
"
;
if
(
$i
==
$propertyPosition
)
{
$finalDoc
.=
$properties
;
}
}
return
$finalDoc
;
}
protected
function
generateClassPropertyDocs
(
$fileName
)
...
...
@@ -64,14 +187,21 @@ class PhpDocController extends Controller
$ns
=
$this
->
match
(
'#\nnamespace (?<name>[\w\\\\]+);\n#'
,
$file
);
$namespace
=
reset
(
$ns
);
$namespace
=
$namespace
[
'name'
];
$classes
=
$this
->
match
(
'#\n(?:abstract )?class (?<name>\w+)
extends .+\{(?<content>.+
)\n\}(\n|$)#'
,
$file
);
$classes
=
$this
->
match
(
'#\n(?:abstract )?class (?<name>\w+)
( |\n)(extends )?.+\{(?<content>.*
)\n\}(\n|$)#'
,
$file
);
if
(
count
(
$classes
)
>
1
)
{
$this
->
stderr
(
"[ERR] There should be only one class in a file:
$fileName
\n
"
,
Console
::
FG_RED
);
return
false
;
}
if
(
count
(
$classes
)
<
1
)
{
$this
->
stderr
(
"[ERR] No class in file:
$fileName
\n
"
,
Console
::
FG_RED
);
$interfaces
=
$this
->
match
(
'#\ninterface (?<name>\w+)\n\{(?<content>.+)\n\}(\n|$)#'
,
$file
);
if
(
count
(
$interfaces
)
==
1
)
{
return
false
;
}
elseif
(
count
(
$interfaces
)
>
1
)
{
$this
->
stderr
(
"[ERR] There should be only one interface in a file:
$fileName
\n
"
,
Console
::
FG_RED
);
}
else
{
$this
->
stderr
(
"[ERR] No class in file:
$fileName
\n
"
,
Console
::
FG_RED
);
}
return
false
;
}
...
...
framework/yii/db/redis/Connection.php
View file @
14181b2b
...
...
@@ -23,6 +23,7 @@ use yii\helpers\StringHelper;
* @method mixed get($key) Set the string value of a key
* TODO document methods
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class
Connection
extends
Component
...
...
framework/yii/db/redis/Transaction.php
View file @
14181b2b
...
...
@@ -17,6 +17,7 @@ use yii\db\Exception;
*
* @property boolean $isActive Whether the transaction is active. This property is read-only.
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class
Transaction
extends
\yii\base\Object
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment