]>
git.datanom.net - omvzfs.git/blob - src/Snapshot.php
2 require_once("Exception.php");
3 require_once("openmediavault/util.inc");
6 * XXX detailed description
12 class OMVModuleZFSSnapshot
{
15 * Name of the Snapshot
23 * Properties associated with the Snaphost
25 * @var array $properties
34 * Constructor. If the Snapshot already exists in the system the object will be updated with all
35 * associated properties from commandline.
37 * @param string $name Name of the new Snapshot
41 public function __construct($name) {
43 $qname = preg_quote($name, '/');
44 $cmd = "zfs list -H -t snapshot";
45 $this->exec($cmd, $out, $res);
46 foreach ($out as $line) {
47 if (preg_match('/^' . $qname . '\t.*$/', $line)) {
48 $this->updateAllProperties();
55 * Return name of the Snapshot
57 * @return string Nameof the Snapshot
60 public function getName() {
67 * @return list<Feature> XXX
70 public function getFeatures() {
71 trigger_error('Not Implemented!', E_USER_WARNING
);
77 * @param $list<Feature> XXX
81 public function setFeatures($list) {
82 trigger_error('Not Implemented!', E_USER_WARNING
);
86 * Get all Snapshot properties from commandline and update object properties attribute
91 private function updateAllProperties() {
92 $cmd = "zfs get -H all " . $this->name
;
93 $this->exec($cmd,$out,$res);
94 unset($this->properties
);
95 foreach ($out as $line) {
96 $tmpary = preg_split('/\t+/', $line);
97 $this->properties
["$tmpary[1]"] = array("value" => $tmpary[2], "source" => $tmpary[3]);
102 * Helper function to execute a command and throw an exception on error
103 * (requires stderr redirected to stdout for proper exception message).
105 * @param string $cmd Command to execute
106 * @param array &$out If provided will contain output in an array
107 * @param int &$res If provided will contain Exit status of the command
108 * @return string Last line of output when executing the command
109 * @throws OMVModuleZFSException
112 private function exec($cmd, &$out = null, &$res = null) {
113 $tmp = OMVUtil
::exec($cmd, $out, $res);
115 throw new OMVModuleZFSException(implode("\n", $out));
This page took 0.118538 seconds and 6 git commands to generate.