protobuf interface cleanup (#244)

* Repeated field cleanup

* Renaming

* Added DEVICE_TYPES_INFO

* Comment update

* Added -y option to rasctl

* Updated rasctl help message
This commit is contained in:
Uwe Seimet
2021-09-19 23:27:47 +02:00
committed by GitHub
parent f782156e51
commit 6b082447c5
5 changed files with 200 additions and 143 deletions

View File

@@ -7,6 +7,7 @@ rasctl \- Sends management commands to the rascsi process
\fB\-k\fR | \fB\-k\fR |
\fB\-l\fR | \fB\-l\fR |
\fB\-s\fR | \fB\-s\fR |
\fB\-y\fR |
[\fB\-d\fR \fIIMAGE_FOLDER\fR] [\fB\-d\fR \fIIMAGE_FOLDER\fR]
[\fB\-g\fR \fILOG_LEVEL\fR] [\fB\-g\fR \fILOG_LEVEL\fR]
[\fB\-h\fR \fIHOST\fR] [\fB\-h\fR \fIHOST\fR]
@@ -64,6 +65,9 @@ Comma-separated list of IDs to reserve.
.BR \-s\fI .BR \-s\fI
Display server-side settings like available images or supported device types. Display server-side settings like available images or supported device types.
.TP .TP
.BR \-y\fI
Display all device types and their properties.
.TP
.BR \-v\fI " " \fI .BR \-v\fI " " \fI
Display the rascsi version. Display the rascsi version.
.TP .TP

View File

@@ -6,9 +6,9 @@ NAME
rasctl - Sends management commands to the rascsi process rasctl - Sends management commands to the rascsi process
SYNOPSIS SYNOPSIS
rasctl -e | -k | -l | -s | [-d IMAGE_FOLDER] [-g LOG_LEVEL] [-h HOST] rasctl -e | -k | -l | -s | -y | [-d IMAGE_FOLDER] [-g LOG_LEVEL] [-h
[-p PORT] [-r RESERVED_IDS] [-v] -i ID [-c CMD] [-f FILE|PARAM] [-n HOST] [-p PORT] [-r RESERVED_IDS] [-v] -i ID [-c CMD] [-f FILE|PARAM]
NAME] [-t TYPE] [-u UNIT] [-n NAME] [-t TYPE] [-u UNIT]
DESCRIPTION DESCRIPTION
rasctl Sends commands to the rascsi process to make configuration ad rasctl Sends commands to the rascsi process to make configuration ad
@@ -56,6 +56,8 @@ OPTIONS
-s Display server-side settings like available images or supported -s Display server-side settings like available images or supported
device types. device types.
-y Display all device types and their properties.
-v Display the rascsi version. -v Display the rascsi version.
-w FILENAME -w FILENAME

View File

@@ -506,24 +506,24 @@ PbDeviceProperties *GetDeviceProperties(const Device *device)
return properties; return properties;
} }
void GetDeviceTypeProperties(PbServerInfo& server_info, PbDeviceType type) void GetDeviceTypeProperties(PbDeviceTypesInfo& device_types_info, PbDeviceType type)
{ {
PbDeviceTypeProperties *types_properties = server_info.add_types_properties(); PbDeviceTypeProperties *type_properties = device_types_info.add_properties();
types_properties->set_type(type); type_properties->set_type(type);
Device *device = device_factory.CreateDevice(type, "", ""); Device *device = device_factory.CreateDevice(type, "", "");
types_properties->set_allocated_properties(GetDeviceProperties(device)); type_properties->set_allocated_properties(GetDeviceProperties(device));
delete device; delete device;
} }
void GetAllDeviceTypeProperties(PbServerInfo& server_info) void GetAllDeviceTypeProperties(PbDeviceTypesInfo& device_types_info)
{ {
GetDeviceTypeProperties(server_info, SAHD); GetDeviceTypeProperties(device_types_info, SAHD);
GetDeviceTypeProperties(server_info, SCHD); GetDeviceTypeProperties(device_types_info, SCHD);
GetDeviceTypeProperties(server_info, SCRM); GetDeviceTypeProperties(device_types_info, SCRM);
GetDeviceTypeProperties(server_info, SCMO); GetDeviceTypeProperties(device_types_info, SCMO);
GetDeviceTypeProperties(server_info, SCCD); GetDeviceTypeProperties(device_types_info, SCCD);
GetDeviceTypeProperties(server_info, SCBR); GetDeviceTypeProperties(device_types_info, SCBR);
GetDeviceTypeProperties(server_info, SCDP); GetDeviceTypeProperties(device_types_info, SCDP);
} }
void GetAvailableImages(PbServerInfo& server_info) void GetAvailableImages(PbServerInfo& server_info)
@@ -608,15 +608,15 @@ void GetDevice(const Device *device, PbDevice *pb_device)
void GetDevices(PbServerInfo& serverInfo) void GetDevices(PbServerInfo& serverInfo)
{ {
for (const Device *device : devices) { for (const Device *device : devices) {
// skip if unit does not exist or is not assigned // Skip if unit does not exist or is not assigned
if (device) { if (device) {
PbDevice *pb_device = serverInfo.add_devices(); PbDevice *pb_device = serverInfo.mutable_devices()->add_devices();
GetDevice(device, pb_device); GetDevice(device, pb_device);
} }
} }
} }
void GetDeviceInfo(const PbCommand& command, PbResult& result) void GetDevicesInfo(const PbCommand& command, PbResult& result)
{ {
set<id_set> id_sets; set<id_set> id_sets;
if (!command.devices_size()) { if (!command.devices_size()) {
@@ -650,6 +650,14 @@ void GetDeviceInfo(const PbCommand& command, PbResult& result)
} }
} }
void GetDeviceTypesInfo(const PbCommand& command, PbResult& result)
{
PbDeviceTypesInfo *device_types_info = new PbDeviceTypesInfo();
GetAllDeviceTypeProperties(*device_types_info);
result.set_allocated_device_types_info(device_types_info);
}
void GetServerInfo(PbResult& result) void GetServerInfo(PbResult& result)
{ {
PbServerInfo *server_info = new PbServerInfo(); PbServerInfo *server_info = new PbServerInfo();
@@ -659,7 +667,7 @@ void GetServerInfo(PbResult& result)
server_info->set_patch_version(rascsi_patch_version); server_info->set_patch_version(rascsi_patch_version);
GetLogLevels(*server_info); GetLogLevels(*server_info);
server_info->set_current_log_level(current_log_level); server_info->set_current_log_level(current_log_level);
GetAllDeviceTypeProperties(*server_info); GetAllDeviceTypeProperties(*server_info->mutable_device_types_info());
GetAvailableImages(*server_info); GetAvailableImages(*server_info);
PbNetworkInterfacesInfo * network_interfaces_info = new PbNetworkInterfacesInfo(); PbNetworkInterfacesInfo * network_interfaces_info = new PbNetworkInterfacesInfo();
server_info->set_allocated_network_interfaces_info(network_interfaces_info); server_info->set_allocated_network_interfaces_info(network_interfaces_info);
@@ -1659,7 +1667,7 @@ bool ParseArgument(int argc, char* argv[], int& port)
// Display and log the device list // Display and log the device list
PbServerInfo server_info; PbServerInfo server_info;
GetDevices(server_info); GetDevices(server_info);
const list<PbDevice>& devices = { server_info.devices().begin(), server_info.devices().end() }; const list<PbDevice>& devices = { server_info.devices().devices().begin(), server_info.devices().devices().end() };
const string device_list = ListDevices(devices); const string device_list = ListDevices(devices);
LogDevices(device_list); LogDevices(device_list);
cout << device_list << endl; cout << device_list << endl;
@@ -1760,12 +1768,12 @@ static void *MonThread(void *param)
break; break;
} }
case DEVICE_INFO: { case DEVICES_INFO: {
LOGTRACE(string("Received " + PbOperation_Name(command.operation()) + " command").c_str()); LOGTRACE(string("Received " + PbOperation_Name(command.operation()) + " command").c_str());
PbResult result; PbResult result;
result.set_status(true); result.set_status(true);
GetDeviceInfo(command, result); GetDevicesInfo(command, result);
SerializeMessage(fd, result); SerializeMessage(fd, result);
const list<PbDevice>& devices ={ result.device_info().devices().begin(), result.device_info().devices().end() }; const list<PbDevice>& devices ={ result.device_info().devices().begin(), result.device_info().devices().end() };
@@ -1776,6 +1784,17 @@ static void *MonThread(void *param)
break; break;
} }
case DEVICE_TYPES_INFO: {
LOGTRACE(string("Received " + PbOperation_Name(command.operation()) + " command").c_str());
PbResult result;
result.set_status(true);
GetDeviceTypesInfo(command, result);
SerializeMessage(fd, result);
break;
}
case SERVER_INFO: { case SERVER_INFO: {
LOGTRACE(string("Received " + PbOperation_Name(command.operation()) + " command").c_str()); LOGTRACE(string("Received " + PbOperation_Name(command.operation()) + " command").c_str());

View File

@@ -67,64 +67,67 @@ enum PbOperation {
SERVER_INFO = 10; SERVER_INFO = 10;
// Gets information on attached devices. Returns data for all attached devices if empty. // Gets information on attached devices. Returns data for all attached devices if empty.
DEVICE_INFO = 11; DEVICES_INFO = 11;
// Device properties by device type
DEVICE_TYPES_INFO = 12;
// Gets information on available image files. A lightweight alternative to getting the complete server info. // Gets information on available image files. A lightweight alternative to getting the complete server info.
IMAGE_FILES_INFO = 12; IMAGE_FILES_INFO = 13;
// Gets the names of the available network interfaces. Only lists interfaces that are up. // Gets the names of the available network interfaces. Only lists interfaces that are up.
NETWORK_INTERFACES_INFO = 13; NETWORK_INTERFACES_INFO = 14;
// Set the default folder for image files. // Set the default folder for image files.
// Parameters: // Parameters:
// "folder": The default folder name. // "folder": The default folder name.
DEFAULT_FOLDER = 14; DEFAULT_FOLDER = 15;
// Set server log level. // Set server log level.
// Parameters: // Parameters:
// "level": The new log level // "level": The new log level
LOG_LEVEL = 15; LOG_LEVEL = 16;
// Block IDs from being used, usually the IDs of the initiators (computers) in the SCSI chain. // Block IDs from being used, usually the IDs of the initiators (computers) in the SCSI chain.
// Parameters: // Parameters:
// "ids": A comma-separated list of IDs to reserve, or an empty string in order not to reserve any ID. // "ids": A comma-separated list of IDs to reserve, or an empty string in order not to reserve any ID.
RESERVE = 16; RESERVE = 17;
// Create an image file. The image file must not yet exist. // Create an image file. The image file must not yet exist.
// Parameters: // Parameters:
// "file": The filename, relative to the default image folder. It must not contain a slash. // "file": The filename, relative to the default image folder. It must not contain a slash.
// "size": The file size in bytes, must be a multiple of 512 // "size": The file size in bytes, must be a multiple of 512
// "read_only": "true" (case-insensitive) in order to create a read-only file, otherwise "false" // "read_only": "true" (case-insensitive) in order to create a read-only file, otherwise "false"
CREATE_IMAGE = 17; CREATE_IMAGE = 18;
// Delete an image file. // Delete an image file.
// Parameters: // Parameters:
// "file": The filename, relative to the default image folder. It must not contain a slash. // "file": The filename, relative to the default image folder. It must not contain a slash.
DELETE_IMAGE = 18; DELETE_IMAGE = 19;
// Rename an image file. // Rename an image file.
// Parameters: // Parameters:
// "from": The old filename, relative to the default image folder. It must not contain a slash. // "from": The old filename, relative to the default image folder. It must not contain a slash.
// "to": The new filename, relative to the default image folder. It must not contain a slash. // "to": The new filename, relative to the default image folder. It must not contain a slash.
// The new filename must not yet exist. // The new filename must not yet exist.
RENAME_IMAGE = 19; RENAME_IMAGE = 20;
// Copy an image file. // Copy an image file.
// Parameters: // Parameters:
// "from": The source filename, relative to the default image folder. It must not contain a slash. // "from": The source filename, relative to the default image folder. It must not contain a slash.
// "to": The destination filename, relative to the default image folder. It must not contain a slash. // "to": The destination filename, relative to the default image folder. It must not contain a slash.
// The destination filename must not yet exist. // The destination filename must not yet exist.
COPY_IMAGE = 20; COPY_IMAGE = 21;
// Write-protect an image file. // Write-protect an image file.
// Parameters: // Parameters:
// "file": The filename, relative to the default image folder. It must not contain a slash. // "file": The filename, relative to the default image folder. It must not contain a slash.
PROTECT_IMAGE = 21; PROTECT_IMAGE = 22;
// Make an image file writable. // Make an image file writable.
// Parameters: // Parameters:
// "file": The filename, relative to the default image folder. It must not contain a slash. // "file": The filename, relative to the default image folder. It must not contain a slash.
UNPROTECT_IMAGE = 22; UNPROTECT_IMAGE = 23;
} }
// The properties supported by a device // The properties supported by a device
@@ -171,6 +174,10 @@ message PbDeviceTypeProperties {
PbDeviceProperties properties = 2; PbDeviceProperties properties = 2;
} }
message PbDeviceTypesInfo {
repeated PbDeviceTypeProperties properties = 1;
}
// The image file data // The image file data
message PbImageFile { message PbImageFile {
string name = 1; string name = 1;
@@ -251,10 +258,12 @@ message PbResult {
PbServerInfo server_info = 3; PbServerInfo server_info = 3;
// The result of a DEVICE_INFO command // The result of a DEVICE_INFO command
PbDevices device_info = 4; PbDevices device_info = 4;
// The result of a DEVICE_TYPES_INFO command
PbDeviceTypesInfo device_types_info = 5;
// The result of an IMAGE_FILES_INFO command // The result of an IMAGE_FILES_INFO command
PbImageFilesInfo image_files_info = 5; PbImageFilesInfo image_files_info = 6;
// The result of a NETWORK_INTERFACES_INFO command // The result of a NETWORK_INTERFACES_INFO command
PbNetworkInterfacesInfo network_interfaces_info = 6; PbNetworkInterfacesInfo network_interfaces_info = 7;
} }
} }
@@ -268,12 +277,14 @@ message PbServerInfo {
// List of available log levels, ordered by increasing by severity // List of available log levels, ordered by increasing by severity
repeated string log_levels = 4; repeated string log_levels = 4;
string current_log_level = 5; string current_log_level = 5;
// Supported device types and their properties // Supported device types and their properties, also available separately
repeated PbDeviceTypeProperties types_properties = 6; PbDeviceTypesInfo device_types_info = 6;
// The image files in the default folder, also available separately
PbImageFilesInfo image_files_info = 7; PbImageFilesInfo image_files_info = 7;
// The available (up) network interfaces, also available separately
PbNetworkInterfacesInfo network_interfaces_info = 8; PbNetworkInterfacesInfo network_interfaces_info = 8;
// The attached devices // The attached devices, also available separately
repeated PbDevice devices = 9; PbDevices devices = 9;
// The unsorted list of reserved IDs // The unsorted list of reserved IDs
repeated uint32 reserved_ids = 10; repeated uint32 reserved_ids = 10;
} }

View File

@@ -154,6 +154,104 @@ void DisplayDeviceInfo(const PbDevice& pb_device)
cout << endl; cout << endl;
} }
void DisplayDeviceTypesInfo(const PbDeviceTypesInfo& device_types_info)
{
cout << "Supported device types and their properties:" << endl;
for (auto it = device_types_info.properties().begin(); it != device_types_info.properties().end(); ++it) {
cout << " " << PbDeviceType_Name(it->type());
const PbDeviceProperties& properties = it->properties();
cout << " Supported LUNs: " << properties.luns() << endl;
if (properties.read_only() || properties.protectable() || properties.stoppable() || properties.read_only()
|| properties.lockable()) {
cout << " Properties: ";
bool has_property = false;
if (properties.read_only()) {
cout << "read-only";
has_property = true;
}
if (properties.protectable()) {
cout << (has_property ? ", " : "") << "protectable";
has_property = true;
}
if (properties.stoppable()) {
cout << (has_property ? ", " : "") << "stoppable";
has_property = true;
}
if (properties.removable()) {
cout << (has_property ? ", " : "") << "removable";
has_property = true;
}
if (properties.lockable()) {
cout << (has_property ? ", " : "") << "lockable";
}
cout << endl;
}
if (properties.supports_file()) {
cout << " Image file support" << endl;
}
else if (properties.supports_params()) {
cout << " Parameter support" << endl;
}
if (properties.supports_params() && properties.default_params_size()) {
map<string, string> params = { properties.default_params().begin(), properties.default_params().end() };
cout << " Default parameters: ";
bool isFirst = true;
for (const auto& param : params) {
if (!isFirst) {
cout << ", ";
}
cout << param.first << "=" << param.second;
isFirst = false;
}
cout << endl;
}
if (properties.block_sizes_size()) {
list<uint32_t> block_sizes = { properties.block_sizes().begin(), properties.block_sizes().end() };
block_sizes.sort([](const auto& a, const auto& b) { return a < b; });
cout << " Configurable block sizes in bytes: ";
bool isFirst = true;
for (const auto& block_size : block_sizes) {
if (!isFirst) {
cout << ", ";
}
cout << block_size;
isFirst = false;
}
cout << endl;
}
if (properties.capacities_size()) {
list<uint64_t> capacities = { properties.capacities().begin(), properties.capacities().end() };
capacities.sort([](const auto& a, const auto& b) { return a < b; });
cout << " Media capacities in bytes: ";
bool isFirst = true;
for (const auto& capacity : capacities) {
if (!isFirst) {
cout << ", ";
}
cout << capacity;
isFirst = false;
}
cout << endl;
}
}
}
void DisplayImageFiles(const list<PbImageFile> image_files, const string& default_image_folder) void DisplayImageFiles(const list<PbImageFile> image_files, const string& default_image_folder)
{ {
cout << "Default image file folder: " << default_image_folder << endl; cout << "Default image file folder: " << default_image_folder << endl;
@@ -201,7 +299,7 @@ void DisplayNetworkInterfaces(list<string> interfaces)
void CommandList(const string& hostname, int port) void CommandList(const string& hostname, int port)
{ {
PbCommand command; PbCommand command;
command.set_operation(DEVICE_INFO); command.set_operation(DEVICES_INFO);
PbResult result; PbResult result;
SendCommand(hostname.c_str(), port, command, result); SendCommand(hostname.c_str(), port, command, result);
@@ -310,6 +408,14 @@ void CommandDeviceInfo(const PbCommand& command, const string& hostname, int por
} }
} }
void CommandDeviceTypesInfo(const PbCommand& command, const string& hostname, int port)
{
PbResult result;
SendCommand(hostname.c_str(), port, command, result);
DisplayDeviceTypesInfo(result.device_types_info());
}
void CommandServerInfo(PbCommand& command, const string& hostname, int port) void CommandServerInfo(PbCommand& command, const string& hostname, int port)
{ {
PbResult result; PbResult result;
@@ -346,100 +452,7 @@ void CommandServerInfo(PbCommand& command, const string& hostname, int port)
{ server_info.network_interfaces_info().name().begin(), server_info.network_interfaces_info().name().end() }; { server_info.network_interfaces_info().name().begin(), server_info.network_interfaces_info().name().end() };
DisplayNetworkInterfaces(network_interfaces); DisplayNetworkInterfaces(network_interfaces);
cout << "Supported device types and their properties:" << endl; DisplayDeviceTypesInfo(server_info.device_types_info());
for (auto it = server_info.types_properties().begin(); it != server_info.types_properties().end(); ++it) {
cout << " " << PbDeviceType_Name(it->type());
const PbDeviceProperties& properties = it->properties();
cout << " Supported LUNs: " << properties.luns() << endl;
if (properties.read_only() || properties.protectable() || properties.stoppable() || properties.read_only()
|| properties.lockable()) {
cout << " Properties: ";
bool has_property = false;
if (properties.read_only()) {
cout << "read-only";
has_property = true;
}
if (properties.protectable()) {
cout << (has_property ? ", " : "") << "protectable";
has_property = true;
}
if (properties.stoppable()) {
cout << (has_property ? ", " : "") << "stoppable";
has_property = true;
}
if (properties.removable()) {
cout << (has_property ? ", " : "") << "removable";
has_property = true;
}
if (properties.lockable()) {
cout << (has_property ? ", " : "") << "lockable";
}
cout << endl;
}
if (properties.supports_file()) {
cout << " Image file support" << endl;
}
else if (properties.supports_params()) {
cout << " Parameter support" << endl;
}
if (properties.supports_params() && properties.default_params_size()) {
map<string, string> params = { properties.default_params().begin(), properties.default_params().end() };
cout << " Default parameters: ";
bool isFirst = true;
for (const auto& param : params) {
if (!isFirst) {
cout << ", ";
}
cout << param.first << "=" << param.second;
isFirst = false;
}
cout << endl;
}
if (properties.block_sizes_size()) {
list<uint32_t> block_sizes = { properties.block_sizes().begin(), properties.block_sizes().end() };
block_sizes.sort([](const auto& a, const auto& b) { return a < b; });
cout << " Configurable block sizes in bytes: ";
bool isFirst = true;
for (const auto& block_size : block_sizes) {
if (!isFirst) {
cout << ", ";
}
cout << block_size;
isFirst = false;
}
cout << endl;
}
if (properties.capacities_size()) {
list<uint64_t> capacities = { properties.capacities().begin(), properties.capacities().end() };
capacities.sort([](const auto& a, const auto& b) { return a < b; });
cout << " Media capacities in bytes: ";
bool isFirst = true;
for (const auto& capacity : capacities) {
if (!isFirst) {
cout << ", ";
}
cout << capacity;
isFirst = false;
}
cout << endl;
}
}
if (server_info.reserved_ids_size()) { if (server_info.reserved_ids_size()) {
cout << "Reserved device IDs: "; cout << "Reserved device IDs: ";
@@ -452,8 +465,8 @@ void CommandServerInfo(PbCommand& command, const string& hostname, int port)
cout <<endl; cout <<endl;
} }
if (server_info.devices_size()) { if (server_info.devices().devices_size()) {
list<PbDevice> sorted_devices = { server_info.devices().begin(), server_info.devices().end() }; list<PbDevice> sorted_devices = { server_info.devices().devices().begin(), server_info.devices().devices().end() };
sorted_devices.sort([](const auto& a, const auto& b) { return a.id() < b.id(); }); sorted_devices.sort([](const auto& a, const auto& b) { return a.id() < b.id(); });
cout << "Attached devices:" << endl; cout << "Attached devices:" << endl;
@@ -506,7 +519,7 @@ PbOperation ParseOperation(const char *optarg)
return UNPROTECT; return UNPROTECT;
case 's': case 's':
return DEVICE_INFO; return DEVICES_INFO;
default: default:
return NONE; return NONE;
@@ -564,7 +577,7 @@ int main(int argc, char* argv[])
cerr << "Usage: " << argv[0] << " -i ID [-u UNIT] [-c CMD] [-t TYPE] [-b BLOCK_SIZE] [-n NAME] [-f FILE|PARAM] "; cerr << "Usage: " << argv[0] << " -i ID [-u UNIT] [-c CMD] [-t TYPE] [-b BLOCK_SIZE] [-n NAME] [-f FILE|PARAM] ";
cerr << "[-d IMAGE_FOLDER] [-g LOG_LEVEL] [-h HOST] [-p PORT] [-r RESERVED_IDS] "; cerr << "[-d IMAGE_FOLDER] [-g LOG_LEVEL] [-h HOST] [-p PORT] [-r RESERVED_IDS] ";
cerr << "[-a FILENAME:FILESIZE] [-w FILENAME] [-m CURRENT_NAME:NEW_NAME] [-x CURRENT_NAME:NEW_NAME] "; cerr << "[-a FILENAME:FILESIZE] [-w FILENAME] [-m CURRENT_NAME:NEW_NAME] [-x CURRENT_NAME:NEW_NAME] ";
cerr << "[-e] [-k] [-l] [-v]" << endl; cerr << "[-e] [-k] [-l] [-v] [-y]" << endl;
cerr << " where ID := {0-7}" << endl; cerr << " where ID := {0-7}" << endl;
cerr << " UNIT := {0|1}, default is 0" << endl; cerr << " UNIT := {0|1}, default is 0" << endl;
cerr << " CMD := {attach|detach|insert|eject|protect|unprotect|show}" << endl; cerr << " CMD := {attach|detach|insert|eject|protect|unprotect|show}" << endl;
@@ -600,7 +613,7 @@ int main(int argc, char* argv[])
opterr = 1; opterr = 1;
int opt; int opt;
while ((opt = getopt(argc, argv, "a:b:c:d:f:g:h:i:m:n:p:r:t:u:x:w:eklsv")) != -1) { while ((opt = getopt(argc, argv, "a:b:c:d:f:g:h:i:m:n:p:r:t:u:x:w:eklsvy")) != -1) {
switch (opt) { switch (opt) {
case 'i': case 'i':
device->set_id(optarg[0] - '0'); device->set_id(optarg[0] - '0');
@@ -730,6 +743,10 @@ int main(int argc, char* argv[])
image_params = optarg; image_params = optarg;
break; break;
case 'y':
command.set_operation(DEVICE_TYPES_INFO);
break;
case 'w': case 'w':
command.set_operation(DELETE_IMAGE); command.set_operation(DELETE_IMAGE);
image_params = optarg; image_params = optarg;
@@ -770,10 +787,14 @@ int main(int argc, char* argv[])
CommandCopyImage(command, hostname, port, image_params); CommandCopyImage(command, hostname, port, image_params);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
case DEVICE_INFO: case DEVICES_INFO:
CommandDeviceInfo(command, hostname, port); CommandDeviceInfo(command, hostname, port);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
case DEVICE_TYPES_INFO:
CommandDeviceTypesInfo(command, hostname, port);
exit(EXIT_SUCCESS);
case SERVER_INFO: case SERVER_INFO:
CommandServerInfo(command, hostname, port); CommandServerInfo(command, hostname, port);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);