allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
190
vendor/thecodingmachine/safe/generated/8.2/rrd.php
vendored
Normal file
190
vendor/thecodingmachine/safe/generated/8.2/rrd.php
vendored
Normal file
@@ -0,0 +1,190 @@
|
||||
<?php
|
||||
|
||||
namespace Safe;
|
||||
|
||||
use Safe\Exceptions\RrdException;
|
||||
|
||||
/**
|
||||
* Creates the rdd database file.
|
||||
*
|
||||
* @param string $filename Filename for newly created rrd file.
|
||||
* @param array $options Options for rrd create - list of strings. See man page of rrd create
|
||||
* for whole list of options.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_create(string $filename, array $options): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_create($filename, $options);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns the first data sample from the specified RRA of the RRD file.
|
||||
*
|
||||
* @param string $file RRD database file name.
|
||||
* @param int $raaindex The index number of the RRA that is to be examined. Default value is 0.
|
||||
* @return int Integer number of unix timestamp.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_first(string $file, int $raaindex = 0): int
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_first($file, $raaindex);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Creates image for a particular data from RRD file.
|
||||
*
|
||||
* @param string $filename The filename to output the graph to. This will generally end in either
|
||||
* .png, .svg or
|
||||
* .eps, depending on the format you want to output.
|
||||
* @param array $options Options for generating image. See man page of rrd graph for all
|
||||
* possible options. All options (data definitions, variable definitions, etc.)
|
||||
* are allowed.
|
||||
* @return array Array with information about generated image is returned.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_graph(string $filename, array $options): array
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_graph($filename, $options);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns information about particular RRD database file.
|
||||
*
|
||||
* @param string $filename RRD database file name.
|
||||
* @return array Array with information about requested RRD file.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_info(string $filename): array
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_info($filename);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gets array of the UNIX timestamp and the values stored for each date in the
|
||||
* most recent update of the RRD database file.
|
||||
*
|
||||
* @param string $filename RRD database file name.
|
||||
* @return array Array of information about last update.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_lastupdate(string $filename): array
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_lastupdate($filename);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Restores the RRD file from the XML dump.
|
||||
*
|
||||
* @param string $xml_file XML filename with the dump of the original RRD database file.
|
||||
* @param string $rrd_file Restored RRD database file name.
|
||||
* @param array $options Array of options for restoring. See man page for rrd restore.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_restore(string $xml_file, string $rrd_file, ?array $options = null): void
|
||||
{
|
||||
error_clear_last();
|
||||
if ($options !== null) {
|
||||
$safeResult = \rrd_restore($xml_file, $rrd_file, $options);
|
||||
} else {
|
||||
$safeResult = \rrd_restore($xml_file, $rrd_file);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Change some options in the RRD dabase header file. E.g. renames the source for
|
||||
* the data etc.
|
||||
*
|
||||
* @param string $filename RRD database file name.
|
||||
* @param array $options Options with RRD database file properties which will be changed. See
|
||||
* rrd tune man page for details.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_tune(string $filename, array $options): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_tune($filename, $options);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Updates the RRD database file. The input data is time interpolated according to the
|
||||
* properties of the RRD database file.
|
||||
*
|
||||
* @param string $filename RRD database file name. This database will be updated.
|
||||
* @param array $options Options for updating the RRD database. This is list of strings. See man page of rrd update
|
||||
* for whole list of options.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_update(string $filename, array $options): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_update($filename, $options);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Exports the information about RRD database file. This data can be converted
|
||||
* to XML file via user space PHP script and then restored back as RRD database
|
||||
* file.
|
||||
*
|
||||
* @param array $options Array of options for the export, see rrd xport man page.
|
||||
* @return array Array with information about RRD database file.
|
||||
* @throws RrdException
|
||||
*
|
||||
*/
|
||||
function rrd_xport(array $options): array
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \rrd_xport($options);
|
||||
if ($safeResult === false) {
|
||||
throw RrdException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
Reference in New Issue
Block a user