Created
February 26, 2021 04:44
-
-
Save tstarling/00673536191e70dc666f2fcc2a8bfb12 to your computer and use it in GitHub Desktop.
PECL package <contents> tag generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define( 'INDENT', ' ' ); | |
$files = shell_exec( | |
'git -C ' . escapeshellarg( __DIR__ ) . | |
' ls-tree --name-only -r HEAD' | |
); | |
if ( !$files ) { | |
fwrite( STDERR, "Error running git ls-tree\n" ); | |
exit( 1 ); | |
} | |
$dirs = []; | |
foreach ( explode( "\n", $files ) as $file ) { | |
if ( $file === '' ) { | |
continue; | |
} | |
$parts = explode( '/', $file ); | |
$cursor =& $dirs; | |
for ( $i = 0; $i < count( $parts ) - 1; $i++ ) { | |
$part = $parts[$i]; | |
if ( substr( $part, 0, 1 ) === '.' ) { | |
continue 2; | |
} | |
if ( !isset( $cursor[$part] ) ) { | |
$cursor[$part] = []; | |
} | |
$cursor =& $cursor[$part]; | |
} | |
$part = $parts[$i]; | |
if ( substr( $part, 0, 1 ) === '.' ) { | |
continue; | |
} | |
if ( $part === 'package.xml' ) { | |
continue; | |
} | |
$cursor['.'][] = $part; | |
} | |
echo INDENT . "<contents>\n"; | |
writeDir( '', $dirs, INDENT . INDENT ); | |
echo INDENT . "</contents>\n"; | |
function writeFiles( $files, $indent ) { | |
foreach ( $files as $file ) { | |
$dotPos = strrpos( $file, '.' ); | |
$ext = $dotPos === false ? '' : substr( $file, $dotPos + 1 ); | |
if ( $ext === 'phpt' ) { | |
$role = 'test'; | |
} elseif ( | |
$ext === 'c' || | |
$ext === 'h' || | |
$ext === 'cpp' || | |
$ext === 'hpp' || | |
$ext === 'm4' || | |
$ext === 'ini' | |
) { | |
$role = 'src'; | |
} else { | |
$role = 'doc'; | |
} | |
echo "$indent<file name=\"" . htmlspecialchars( $file ) . "\" " . | |
"role=\"" . htmlspecialchars( $role ) . "\"/>\n"; | |
} | |
} | |
function writeDir( $name, $contents, $indent ) { | |
if ( $name === '' ) { | |
$outName = '/'; | |
} else { | |
$outName = $name; | |
} | |
echo "$indent<dir name=\"" . htmlspecialchars( $outName ) . "\">\n"; | |
foreach ( $contents as $name => $subdirOrFiles ) { | |
if ( $name === '.' ) { | |
writeFiles( $subdirOrFiles, $indent . INDENT, ); | |
} else { | |
writeDir( $name, $subdirOrFiles, $indent . INDENT ); | |
} | |
} | |
echo "$indent</dir>\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment