5 use Shaarli\Exceptions\IOException
;
10 * Utility class for file manipulation.
17 protected static $phpPrefix = '<?php /* ';
22 protected static $phpSuffix = ' */ ?>';
25 * Write data into a file (Shaarli database format).
26 * The data is stored in a PHP file, as a comment, in compressed base64 format.
28 * The file will be created if it doesn't exist.
30 * @param string $file File path.
31 * @param mixed $content Content to write.
33 * @return int|bool Number of bytes written or false if it fails.
35 * @throws IOException The destination file can't be written.
37 public static function writeFlatDB($file, $content)
39 if (is_file($file) && !is_writeable($file)) {
40 // The datastore exists but is not writeable
41 throw new IOException($file);
42 } elseif (!is_file($file) && !is_writeable(dirname($file))) {
43 // The datastore does not exist and its parent directory is not writeable
44 throw new IOException(dirname($file));
47 return file_put_contents(
49 self
::$phpPrefix . base64_encode(gzdeflate(serialize($content))) . self
::$phpSuffix
54 * Read data from a file containing Shaarli database format content.
56 * If the file isn't readable or doesn't exist, default data will be returned.
58 * @param string $file File path.
59 * @param mixed $default The default value to return if the file isn't readable.
61 * @return mixed The content unserialized, or default if the file isn't readable, or false if it fails.
63 public static function readFlatDB($file, $default = null)
65 // Note that gzinflate is faster than gzuncompress.
66 // See: http://www.php.net/manual/en/function.gzdeflate.php#96439
67 if (!is_readable($file)) {
71 $data = file_get_contents($file);
79 substr($data, strlen(self
::$phpPrefix), -strlen(self
::$phpSuffix))