Skip to content

Instantly share code, notes, and snippets.

@jdpedrie
Created April 20, 2017 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdpedrie/d6992697993c444c9b446dbbcfbbf131 to your computer and use it in GitHub Desktop.
Save jdpedrie/d6992697993c444c9b446dbbcfbbf131 to your computer and use it in GitHub Desktop.
dev/src/Snippet/Parser/Parser.php
<?php
/**
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Google\Cloud\Dev\Snippet\Parser;
use DomDocument;
use Google\Cloud\Dev\DocBlockStripSpaces;
use Parsedown;
use ReflectionClass;
use ReflectionMethod;
use phpDocumentor\Reflection\DocBlock;
/**
* A class for parsing code snippets from a class and its methods.
*
* Example:
* ```
* $parser = new Parser;
* ```
*/
class Parser
{
const SNIPPET_NAME_REGEX = '/\/\/\s?\[snippet\=(\w{0,})\]/';
/**
* Get a snippet from a class.
*
* Example:
* ```
* $snippet = $parser->classExample(Parser::class);
* ```
*
* @param string $class the name of the class
* @param int|string $index The index of the example to return.
* @return Snippet
* @throws Exception
*/
public function classExample($class, $index = 0)
{
$class = new ReflectionClass($class);
$examples = $this->examplesFromClass($class);
$result = array_filter($examples, function ($example) use ($index) {
return ($example->index() == $index);
});
if (empty($result)) {
throw new \Exception(sprintf(
'Given snippet index %d does not exist for class %s',
$index,
$class->getName()
));
}
return current($result);
}
/**
* Get a snippet from a method.
*
* Example:
* ```
* $snippet = $parser->methodExample(Parser::class, 'methodExample');
* ```
*
* ```
* // Get the 2nd example (index=1)
* $snippet = $parser->methodExample(Parser::class, 'methodExample', 1);
* ```
*
* @param string $class The name of the class.
* @param string $method The name of the method.
* @param int $index The 0-indexed example to return.
* @return Snippet
* @throws Exception
*/
public function methodExample($class, $method, $index = 0)
{
$examples = $this->examplesFromMethod($class, $method);
$result = array_filter($examples, function ($example) use ($index) {
return ($example->index() === $index);
});
if (empty($result)) {
throw new \Exception(sprintf(
'Given snippet index %d does not exist for method %s::%s',
$index,
$class,
$method
));
}
return current($result);
}
/**
* Retrieve all examples from a class Doc Block.
*
* Example:
* ```
* $examples = $parser->examplesFromClass($parser);
* ```
*
* @param object|ReflectionClass $class An instance or reflector of the
* class to parse examples from.
* @return array
*/
public function examplesFromClass($class)
{
if (!($class instanceof ReflectionClass)) {
$class = new ReflectionClass($class);
}
$doc = new DocBlock($class);
$magic = [];
if ($doc->getTags()) {
$magicMethods = array_filter($doc->getTags(), function ($tag) {
return ($tag->getName() === 'method');
});
$methods = $this->buildMagicMethods($magicMethods, $class->getName());
foreach ($methods as $method) {
$magicExamples = $this->examples(
$method['doc'],
$class->getName() .'::'. $method['name'],
$class->getFileName(),
$class->getStartLine()
);
foreach ($magicExamples as $ex) {
$magic[$ex->identifier()] = $ex;
}
}
}
return $this->examples(
$doc,
$class->getName(),
$class->getFileName(),
$class->getStartLine(),
$magic
);
}
/**
* Retrieve all examples from a method's Doc Block.
*
* Example:
* ```
* $examples = $parser->examplesFromMethod($parser, 'examplesFromMethod');
* ```
*
* @param object $class An instance of the class to parse examples from.
* @param string|ReflectionMethod $method The name of the method to parse
* examples from.
* @return array
*/
public function examplesFromMethod($class, $method)
{
if (!($method instanceof ReflectionMethod)) {
$method = new ReflectionMethod($class, $method);
}
if (!$method->isPublic()) {
return [];
}
$doc = new DocBlock($method);
$parent = $method->getDeclaringClass();
$class = $parent->getName();
return $this->examples(
$doc,
$class .'::'. $method->getName(),
$method->getFileName(),
$method->getStartLine()
);
}
/**
* Retrieve all examples from a class and its methods.
*
* Example:
* ```
* $examples = $parser->allExamples($parser);
* ```
*
* @param object|ReflectionClass An instance or reflector of the class to
* parse.
* @return array
*/
public function allExamples($class)
{
if (!($class instanceof ReflectionClass)) {
$class = new ReflectionClass($class);
}
$snippets = $this->examplesFromClass($class);
$methods = $class->getMethods();
foreach ($methods as $method) {
$snippets = array_merge($snippets, $this->examplesFromMethod($class, $method));
}
return $snippets;
}
/**
* Parse examples from a DocBlock object.
*
* Example:
* ```
* // Yeah, this example is pretty useless.
* $examples = $parser->examples($docBlock);
* ```
*
* @param DocBlock $docBlock The DocBlock to parse
* @param string $file The filename the docblock is in
* @param int $line The line where the tested method or class is declared.
* @return array
*/
public function examples(DocBlock $docBlock, $fullyQualifiedName, $file, $line, array $magicMethods = [])
{
$text = $docBlock->getText();
// $return = $docBlock->getTagsByName('return');
// if (!empty($return)) {
// print_r($return[0]->getTypes());exit;
// }
$parts = explode('Example:', $text);
if (strpos($text, 'Example:') === false) {
return [];
}
$converter = new Parsedown;
$document = new DOMDocument;
$parsedText = $converter->text($parts[1]);
$document->loadHTML($parsedText);
$examples = $document->getElementsByTagName('code');
$index = 0;
$res = [];
foreach ($examples as $example) {
$name = $this->extractSnippetName($example->textContent);
$indexOrName = $name;
if (!$name) {
$indexOrName = $index;
}
$identifier = $this->createIdentifier($fullyQualifiedName, $indexOrName);
$snippet = new Snippet($identifier, [
'content' => $example->textContent,
'fqn' => $fullyQualifiedName,
'index' => $index,
'name' => $name,
'file' => $file,
'line' => $line
]);
$res[$identifier] = $snippet;
$index++;
}
$res = array_merge($res, $magicMethods);
return $res;
}
public function createIdentifier($fqn, $indexOrName)
{
return sha1($fqn . $indexOrName);
}
private function extractSnippetName($content)
{
$matches = [];
if (!preg_match(self::SNIPPET_NAME_REGEX, $content, $matches)) {
return null;
}
return $matches[1];
}
private function buildMagicMethods($magicMethods, $className)
{
$res = [];
foreach ($magicMethods as $method) {
$description = $method->getDescription();
if (is_null($description)) {
continue;
}
$doc = new DocBlockStripSpaces(substr($method->getDescription(), 1, -1));
$res[] = [
'name' => $method->getMethodName(),
'doc' => $doc
];
}
return $res;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment