183 lines
4.2 KiB
C
183 lines
4.2 KiB
C
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include "string_utilities.h"
|
|
#include "mms_client_connection.h"
|
|
|
|
static void
|
|
print_help()
|
|
{
|
|
|
|
printf("MMS utility (libiec61850 " LIBIEC61850_VERSION ") options:\n");
|
|
printf("-h <hostname> specify hostname\n");
|
|
printf("-p <port> specify port\n");
|
|
printf("-l <max_pdu_size> specify maximum PDU size\n");
|
|
printf("-d show list of MMS domains\n");
|
|
printf("-i show server identity\n");
|
|
printf("-t <domain_name> show domain directory\n");
|
|
printf("-r <variable_name> read domain variable\n");
|
|
printf("-a <domain_name> specify domain for read or write command\n");
|
|
printf("-f show file list\n");
|
|
}
|
|
|
|
static void
|
|
mmsFileDirectoryHandler (void* parameter, char* filename, uint32_t size, uint64_t lastModified)
|
|
{
|
|
char* lastName = (char*) parameter;
|
|
|
|
strcpy (lastName, filename);
|
|
|
|
printf("%s\n", filename);
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
char* hostname = copyString("localhost");
|
|
int tcpPort = 102;
|
|
int maxPduSize = 65000;
|
|
|
|
char* domainName = NULL;
|
|
char* variableName = NULL;
|
|
|
|
int readDeviceList = 0;
|
|
int getDeviceDirectory = 0;
|
|
int identifyDevice = 0;
|
|
int readWriteHasDomain = 0;
|
|
int readVariable = 0;
|
|
int showFileList = 0;
|
|
|
|
|
|
int c;
|
|
|
|
while ((c = getopt(argc, argv, "ifdh:p:l:t:a:r:")) != -1)
|
|
switch (c) {
|
|
case 'h':
|
|
hostname = copyString(optarg);
|
|
break;
|
|
case 'p':
|
|
tcpPort = atoi(optarg);
|
|
break;
|
|
case 'l':
|
|
maxPduSize = atoi(optarg);
|
|
break;
|
|
case 'd':
|
|
readDeviceList = 1;
|
|
break;
|
|
case 'i':
|
|
identifyDevice = 1;
|
|
break;
|
|
case 't':
|
|
getDeviceDirectory = 1;
|
|
domainName = copyString(optarg);
|
|
break;
|
|
case 'a':
|
|
readWriteHasDomain = 1;
|
|
domainName = copyString(optarg);
|
|
break;
|
|
case 'r':
|
|
readVariable = 1;
|
|
variableName = copyString(optarg);
|
|
break;
|
|
case 'f':
|
|
showFileList = 1;
|
|
break;
|
|
|
|
default:
|
|
print_help();
|
|
return 0;
|
|
}
|
|
|
|
MmsConnection con = MmsConnection_create();
|
|
|
|
MmsError error;
|
|
|
|
/* Set maximum MMS PDU size (local detail) to 2000 byte */
|
|
MmsConnection_setLocalDetail(con, maxPduSize);
|
|
|
|
if (!MmsConnection_connect(con, &error, hostname, tcpPort)) {
|
|
printf("MMS connect failed!\n");
|
|
goto exit;
|
|
}
|
|
else
|
|
printf("MMS connected.\n");
|
|
|
|
if (identifyDevice) {
|
|
MmsServerIdentity* identity =
|
|
MmsConnection_identify(con, &error);
|
|
|
|
if (identity != NULL) {
|
|
printf("\nServer identity:\n----------------\n");
|
|
printf(" vendor:\t%s\n", identity->vendorName);
|
|
printf(" model:\t%s\n", identity->modelName);
|
|
printf(" revision:\t%s\n", identity->revision);
|
|
}
|
|
else
|
|
printf("Reading server identity failed!\n");
|
|
}
|
|
|
|
if (readDeviceList) {
|
|
printf("\nDomains present on server:\n--------------------------\n");
|
|
LinkedList nameList = MmsConnection_getDomainNames(con, &error);
|
|
LinkedList_printStringList(nameList);
|
|
LinkedList_destroy(nameList);
|
|
}
|
|
|
|
if (getDeviceDirectory) {
|
|
LinkedList variableList = MmsConnection_getDomainVariableNames(con, &error,
|
|
domainName);
|
|
|
|
LinkedList element = variableList;
|
|
|
|
printf("\nMMS domain variables for domain %s\n", domainName);
|
|
|
|
while ((element = LinkedList_getNext(element)) != NULL) {
|
|
char* name = (char*) element->data;
|
|
|
|
printf(" %s\n", name);
|
|
}
|
|
|
|
}
|
|
|
|
if (readVariable) {
|
|
if (readWriteHasDomain) {
|
|
MmsValue* result = MmsConnection_readVariable(con, &error, domainName, variableName);
|
|
|
|
if (error != MMS_ERROR_NONE) {
|
|
printf("Reading variable failed: (ERROR %i)\n", error);
|
|
}
|
|
else {
|
|
printf("Read SUCCESS\n");
|
|
|
|
|
|
if (result != NULL) {
|
|
char outbuf[1024];
|
|
|
|
MmsValue_printToBuffer(result, outbuf, 1024);
|
|
|
|
printf("%s\n", outbuf);
|
|
}
|
|
else
|
|
printf("result: NULL\n");
|
|
}
|
|
|
|
}
|
|
else
|
|
printf("Reading VMD scope variable not yet supported!\n");
|
|
}
|
|
|
|
if (showFileList) {
|
|
char lastName[300];
|
|
lastName[0] = 0;
|
|
|
|
char* continueAfter = NULL;
|
|
|
|
while (MmsConnection_getFileDirectory(con, &error, "", continueAfter, mmsFileDirectoryHandler, lastName)) {
|
|
continueAfter = lastName;
|
|
}
|
|
}
|
|
|
|
exit:
|
|
MmsConnection_destroy(con);
|
|
}
|
|
|