114 lines
3.4 KiB
C
114 lines
3.4 KiB
C
/*
|
|
* mms_client_example.c
|
|
*
|
|
* Copyright 2013 Michael Zillgith
|
|
*
|
|
* This file is part of libIEC61850.
|
|
*
|
|
* libIEC61850 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* libIEC61850 is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with libIEC61850. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* See COPYING file for the complete license text.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "mms_client_connection.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
char* hostname;
|
|
int tcpPort = 102;
|
|
|
|
if (argc > 1)
|
|
hostname = argv[1];
|
|
else
|
|
hostname = "localhost";
|
|
|
|
if (argc > 2)
|
|
tcpPort = atoi(argv[2]);
|
|
|
|
MmsConnection con = MmsConnection_create();
|
|
|
|
MmsError mmsError;
|
|
|
|
char* password = "testpw";
|
|
|
|
/* use authentication */
|
|
AcseAuthenticationParameter auth = (AcseAuthenticationParameter) calloc(1, sizeof(struct sAcseAuthenticationParameter));
|
|
auth->mechanism = ACSE_AUTH_PASSWORD;
|
|
auth->value.password.octetString= (uint8_t*) password;
|
|
auth->value.password.passwordLength = strlen(password);
|
|
|
|
IsoConnectionParameters connectionParameters =
|
|
MmsConnection_getIsoConnectionParameters(con);
|
|
|
|
IsoConnectionParameters_setAcseAuthenticationParameter(connectionParameters, auth);
|
|
|
|
if (!MmsConnection_connect(con, &mmsError, hostname, tcpPort)) {
|
|
printf("MMS connect failed!\n");
|
|
goto exit;
|
|
}
|
|
else
|
|
printf("MMS connected.\n\n");
|
|
|
|
printf("Domains present on server:\n--------------------------\n");
|
|
LinkedList nameList = MmsConnection_getDomainNames(con, &mmsError);
|
|
LinkedList_printStringList(nameList);
|
|
LinkedList_destroy(nameList);
|
|
printf("\n");
|
|
|
|
|
|
printf("Named variables for domain SampleIEDDevice1:\n--------------------------------------------\n");
|
|
nameList = MmsConnection_getDomainVariableNames(con, &mmsError, "SampleIEDDevice1");
|
|
LinkedList_printStringList(nameList);
|
|
LinkedList_destroy(nameList);
|
|
printf("\n");
|
|
|
|
printf("Data sets for domain SampleIEDDevice1:\n--------------------------------------------\n");
|
|
nameList = MmsConnection_getDomainVariableListNames(con, &mmsError, "SampleIEDDevice1");
|
|
LinkedList_printStringList(nameList);
|
|
LinkedList_destroy(nameList);
|
|
printf("\n");
|
|
|
|
|
|
// MmsValue* value;
|
|
//
|
|
// MmsConnection_getVariableAccessAttributes(con, "SampleIEDDevice1", "MMXU2$MX$TotW");
|
|
//
|
|
// value = MmsConnection_readVariable(con, "SampleIEDDevice1", "MMXU2$MX$TotW$mag$f");
|
|
//
|
|
// printf("Read variable with value: %f\n", MmsValue_toFloat(value));
|
|
//
|
|
// MmsValue_setFloat(value, 1.234f);
|
|
//
|
|
// MmsConnection_writeVariable(con, "SampleIEDDevice1", "MMXU2$MX$TotW$mag$f", value);
|
|
//
|
|
// MmsValue_delete(value);
|
|
//
|
|
// value = MmsConnection_readVariable(con, "SampleIEDDevice1", "MMXU2$MX$TotW$mag$f");
|
|
//
|
|
// printf("Read variable with value: %f\n", MmsValue_toFloat(value));
|
|
//
|
|
// MmsValue_delete(value);
|
|
//
|
|
// value = MmsConnection_readVariable(con, "SampleIEDDevice1", "DGEN1$ST$Beh$stVal");
|
|
//
|
|
// printf("Read integer variable with value: %i\n", MmsValue_toInt32(value));
|
|
//
|
|
// MmsValue_delete(value);
|
|
|
|
exit:
|
|
MmsConnection_destroy(con);
|
|
}
|
|
|