mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
41e3c091e1
- Add todo to StringHashParser git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1523 48356398-32a2-884e-a903-53898d9a118a
72 lines
2.0 KiB
PHP
72 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Parses string hash files. File format is as such:
|
|
*
|
|
* DefaultKeyValue
|
|
* KEY: Value
|
|
* KEY2: Value2
|
|
* --MULTILINE-KEY--
|
|
* Multiline
|
|
* value.
|
|
*
|
|
* Which would output something similar to:
|
|
*
|
|
* array(
|
|
* 'ID' => 'DefaultKeyValue',
|
|
* 'KEY' => 'Value',
|
|
* 'KEY2' => 'Value2',
|
|
* 'MULTILINE-KEY' => "Multiline\nvalue.\n",
|
|
* )
|
|
*
|
|
* We use this as an easy to use file-format for configuration schema
|
|
* files.
|
|
*
|
|
* @todo
|
|
* Put this in its own class hierarchy or something; this class
|
|
* is usage agnostic.
|
|
*/
|
|
class ConfigSchema_StringHashParser
|
|
{
|
|
|
|
public $default = 'ID';
|
|
|
|
public function parseFile($file) {
|
|
if (is_string($file)) $file = new FSTools_File($file);
|
|
if (!$file->exists()) throw new Exception('File does not exist');
|
|
$file->open('r');
|
|
$state = false;
|
|
$single = false;
|
|
$ret = array();
|
|
while (($line = $file->getLine()) !== false) {
|
|
$line = rtrim($line, "\n\r");
|
|
if (!$state && $line === '') continue;
|
|
if (strncmp('--', $line, 2) === 0) {
|
|
// Multiline declaration
|
|
$state = trim($line, '- ');
|
|
continue;
|
|
} elseif (!$state) {
|
|
$single = true;
|
|
if (strpos($line, ':') !== false) {
|
|
// Single-line declaration
|
|
list($state, $line) = explode(': ', $line, 2);
|
|
} else {
|
|
// Use default declaration
|
|
$state = $this->default;
|
|
}
|
|
}
|
|
if ($single) {
|
|
$ret[$state] = $line;
|
|
$single = false;
|
|
$state = false;
|
|
} else {
|
|
if (!isset($ret[$state])) $ret[$state] = '';
|
|
$ret[$state] .= "$line\n";
|
|
}
|
|
}
|
|
$file->close();
|
|
return $ret;
|
|
}
|
|
|
|
}
|