This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/zendframework/zf2 into cach…
…e_filesystemSpeedup
- Loading branch information
55 parents
be11776
+
6bcfccb
+
0b2a1a9
+
7974490
+
f3ba45e
+
4357e80
+
7d43d02
+
421a0f4
+
e7aa329
+
6d05bfe
+
f27c5e2
+
6cb3b21
+
1ecb5ed
+
b66b0e2
+
0b91e40
+
6bda391
+
b932fa5
+
a431b75
+
9ce83ec
+
a35dff6
+
60e4965
+
0f071e9
+
3fe17b4
+
196ca18
+
17cbc64
+
8f4a51f
+
88ec12d
+
31ab35e
+
59c83c4
+
d50da4c
+
01af50b
+
6a46af5
+
4308adc
+
1c3d629
+
18a268d
+
1987408
+
abc72db
+
175f7ab
+
8a85704
+
7706019
+
cc5d38c
+
fbaa5aa
+
0555415
+
20ae04b
+
0680687
+
e65301c
+
424e30a
+
d36a7f1
+
64bb794
+
c74649b
+
b14bb6b
+
4e73e4e
+
0ee93d0
+
e887bfd
+
1c0577b
commit 717175b
Showing
26 changed files
with
866 additions
and
38 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?php | ||
/** | ||
* Zend Framework | ||
* | ||
* LICENSE | ||
* | ||
* This source file is subject to the new BSD license that is bundled | ||
* with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://framework.zend.com/license/new-bsd | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @subpackage Reader | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace Zend\Config\Reader; | ||
|
||
use Zend\Config\Reader, | ||
Zend\Config\Exception, | ||
Zend\Json\Json as JsonFormat; | ||
|
||
/** | ||
* Json config reader. | ||
* | ||
* @category Zend | ||
* @package Zend_Config | ||
* @subpackage Reader | ||
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
class Json implements Reader | ||
{ | ||
/** | ||
* Directory of the JSON file | ||
* | ||
* @var string | ||
*/ | ||
protected $directory; | ||
/** | ||
* fromFile(): defined by Reader interface. | ||
* | ||
* @see Reader::fromFile() | ||
* @param string $filename | ||
* @return array | ||
*/ | ||
public function fromFile($filename) | ||
{ | ||
if (!file_exists($filename)) { | ||
throw new Exception\RuntimeException("The file $filename doesn't exists."); | ||
} | ||
|
||
$this->directory = dirname($filename); | ||
|
||
try { | ||
$config = JsonFormat::decode(file_get_contents($filename), JsonFormat::TYPE_ARRAY); | ||
} catch (\Zend\Json\Exception\RuntimeException $e) { | ||
throw new Exception\RuntimeException($e->getMessage()); | ||
} | ||
|
||
return $this->process($config); | ||
} | ||
|
||
/** | ||
* fromString(): defined by Reader interface. | ||
* | ||
* @see Reader::fromString() | ||
* @param string $string | ||
* @return array | ||
*/ | ||
public function fromString($string) | ||
{ | ||
if (empty($string)) { | ||
return array(); | ||
} | ||
$this->directory = null; | ||
|
||
try { | ||
$config = JsonFormat::decode($string, JsonFormat::TYPE_ARRAY); | ||
} catch (\Zend\Json\Exception\RuntimeException $e) { | ||
throw new Exception\RuntimeException($e->getMessage()); | ||
} | ||
|
||
return $this->process($config); | ||
} | ||
/** | ||
* Process the array for @include | ||
* | ||
* @param array $data | ||
* @return array | ||
*/ | ||
protected function process(array $data) { | ||
foreach ($data as $key => $value) { | ||
if (is_array($value)) { | ||
$data[$key] = $this->process($value); | ||
} | ||
if (trim($key)==='@include') { | ||
if ($this->directory === null) { | ||
throw new Exception\RuntimeException('Cannot process @include statement for a json string'); | ||
} | ||
$reader = clone $this; | ||
unset($data[$key]); | ||
$data = array_replace_recursive($data, $reader->fromFile($this->directory . '/' . $value)); | ||
} | ||
} | ||
return $data; | ||
} | ||
} |
Oops, something went wrong.