X-Git-Url: http://git.datanom.net/omvzfs.git/blobdiff_plain/91f56fbc20bd2ca8e2766787596f43b7e02ea2bc..bcf5fe520db7b8e44012d46856011752918196f5:/src/Zvol.php diff --git a/src/Zvol.php b/src/Zvol.php index a262241..8b65ac0 100644 --- a/src/Zvol.php +++ b/src/Zvol.php @@ -1,4 +1,7 @@ name; + public function __construct($name) { + $zvol_exists = true; + $this->name = $name; + $cmd = "zfs list -H -t volume " . $name . " 2>&1"; + try { + $this->exec($cmd, $out, $res); + $this->updateAllProperties(); + $this->size = $this->properties["volsize"]["value"]; + } + catch (OMVModuleZFSException $e) { + $zvol_exists = false; + } + if ($zvol_exists) { + $cmd = "zfs list -r -d 1 -o name -H -t snapshot " . $name . " 2>&1"; + $this->exec($cmd, $out2, $res2); + foreach ($out2 as $line2) { + $this->snapshots[$line2] = new OMVModuleZFSSnapshot($line2); + } + } + } /** - * Get the mountpoint of the Zvol + * Return name of the Zvol * - * @return string $mountPoint + * @return string $name * @access public */ - public function getMountPoint() { - return $this->mountPoint; + public function getName() { + return $this->name; } /** @@ -88,26 +111,202 @@ class OMVModuleZFSZvol { return $this->properties; } - /** - * XXX + * Get the total size of the Zvol * - * @return int XXX + * @return string $size * @access public */ public function getSize() { - trigger_error('Not Implemented!', E_USER_WARNING); + return $this->size; } /** - * XXX - * - * @param $list XXX - * @return void XXX + * Get all Snapshots associated with the Zvol + * + * @return array $snapshots + * @access public + */ + public function getSnapshots() { + if (isset($this->snapshots)) { + return $this->snapshots; + } else { + return array(); + } + } + + /** + * Sets a number of Zvol properties. If a property is already set it will be updated with the new value. + * + * @param array $properties An associative array with properties to set + * @return void * @access public */ public function setProperties($properties) { - trigger_error('Not Implemented!', E_USER_WARNING); + foreach ($properties as $newpropertyk => $newpropertyv) { + $cmd = "zfs set " . $newpropertyk . "=" . $newpropertyv . " " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + $this->updateProperty($newpropertyk); + } + } + + /** + * Get all Zvol properties from commandline and update object properties attribute + * + * @return void + * @access private + */ + private function updateAllProperties() { + $cmd = "zfs get -H all " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + unset($this->properties); + foreach ($out as $line) { + $tmpary = preg_split('/\t+/', $line); + $this->properties["$tmpary[1]"] = array("value" => $tmpary[2], "source" => $tmpary[3]); + } + } + + /** + * Get single Datset property from commandline and update object property attribute + * + * @param string $property Name of the property to update + * @return void + * @access private + */ + private function updateProperty($property) { + $cmd = "zfs get -H " . $property . " " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + $tmpary = preg_split('/\t+/', $out[0]); + $this->properties["$tmpary[1]"] = array("value" => $tmpary[2], "source" => $tmpary[3]); + } + + /** + * Create a Zvol on commandline. Optionally provide a number of properties to set. + * + * @param string $size Size of the Zvol that should be created + * @param array $properties Properties to set when creatiing the dataset. + * @param boolean $sparse Defines if a sparse volume should be created. + * @return void + * @access public + */ + public function create($size, array $properties = null, $sparse = null) { + $cmd = "zfs create -p "; + if ((isset($sparse)) && ($sparse == true)) { + $cmd .= "-s "; + } + $cmd .= "-V " . $size . " " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + $this->updateAllProperties(); + $this->setProperties($properties); + $this->size = $this->properties["volsize"]["value"]; + } + + /** + * Destroy the Zvol. + * + * @return void + * @access public + */ + public function destroy() { + $cmd = "zfs destroy " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + } + + /** + * Renames a Zvol + * + * @param string $newname New name of the Dataset + * @return void + * @access public + */ + public function rename($newname) { + $cmd = "zfs rename -p " . $this->name . " " . $newname . " 2>&1"; + $this->exec($cmd,$out,$res); + $this->name = $newname; + } + + /** + * Clears a previously set proporty and specifies that it should be + * inherited from it's parent. + * + * @param string $property Name of the property to inherit. + * @return void + * @access public + */ + public function inherit($property) { + $cmd = "zfs inherit " . $property . " " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + $this->updateProperty($property); + } + + /** + * Creates a Snapshot and adds it to the existing list of snapshots associated + * with the Zvol. + * + * @param string $snap_name Name of the Snapshot to create. + * @param array $properties Optional array of properties to set on Snapshot + * @return void + * @access public + */ + public function addSnapshot($snap_name, array $properties = null) { + $snap = new OMVModuleZFSSnapshot($snap_name); + $snap->create($properties); + $this->snapshots[$snap_name] = $snap; + } + + /** + * Destroys a Snapshot on commandline and removes it from the Zvol. + * + * @param string $snap_name Name of the Snapshot to delete. + * @return void + * @access public + */ + public function deleteSnapshot($snap_name) { + $this->snapshots[$snap_name]->destroy(); + unset($this->snapshots[$snap_name]); + } + + /** + * Check if the Volume is a clone or not. + * + * @return bool + * @access public + */ + public function isClone() { + $origin = $this->getProperty("origin"); + if (strlen($origin["value"]) > 0) { + return true; + } else { + return false; + } + } + + /** + * Get the origin of the Volume if it's a clone. + * + * @return string The name of the origin if it exists. Otherwise an empty string. + * @access public + */ + public function getOrigin() { + if ($this->isClone()) { + $origin = $this->getProperty("origin"); + return $origin['value']; + } else { + return ""; + } + } + + /** + * Promotes the Volume if it's a clone. + * + * @return void + * @access public + */ + public function promote() { + if ($this->isClone()) { + $cmd = "zfs promote " . $this->name . " 2>&1"; + $this->exec($cmd,$out,$res); + } } /** @@ -128,7 +327,6 @@ class OMVModuleZFSZvol { } return $tmp; } - } ?>