libiec61850  1.2.0
mms_client_connection.h
Go to the documentation of this file.
1 /*
2  * mms_client_connection.h
3  *
4  * Copyright 2013-2016 Michael Zillgith
5  *
6  * This file is part of libIEC61850.
7  *
8  * libIEC61850 is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * libIEC61850 is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with libIEC61850. If not, see <http://www.gnu.org/licenses/>.
20  *
21  * See COPYING file for the complete license text.
22  */
23 
24 #ifndef MMS_CLIENT_CONNECTION_H_
25 #define MMS_CLIENT_CONNECTION_H_
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
36 #include "libiec61850_common_api.h"
37 
38 #include "mms_common.h"
39 #include "mms_type_spec.h"
40 #include "mms_value.h"
42 #include "linked_list.h"
43 
44 #include "tls_api.h"
45 
49 typedef struct sMmsConnectionParameters {
53  int maxPduSize; /* local detail */
54  uint8_t servicesSupported[11];
56 
57 typedef struct {
58  char* vendorName;
59  char* modelName;
60  char* revision;
62 
63 typedef void (*MmsInformationReportHandler) (void* parameter, char* domainName,
64  char* variableListName, MmsValue* value, bool isVariableListName);
65 
69 typedef struct sMmsConnection* MmsConnection;
70 
71 
72 /*******************************************************************************
73  * Connection management functions
74  *******************************************************************************/
75 
81 MmsConnection
83 
91 MmsConnection
92 MmsConnection_createSecure(TLSConfiguration tlsConfig);
93 
105 typedef void (*MmsRawMessageHandler) (void* parameter, uint8_t* message, int messageLength, bool received);
106 
118 void
119 MmsConnection_setRawMessageHandler(MmsConnection self, MmsRawMessageHandler handler, void* parameter);
120 
131 void
132 MmsConnection_setFilestoreBasepath(MmsConnection self, const char* basepath);
133 
140 void
141 MmsConnection_setRequestTimeout(MmsConnection self, uint32_t timeoutInMs);
142 
149 void
150 MmsConnection_setConnectTimeout(MmsConnection self, uint32_t timeoutInMs);
151 
163 void
165  void* parameter);
166 
173 IsoConnectionParameters
174 MmsConnection_getIsoConnectionParameters(MmsConnection self);
175 
183 MmsConnection_getMmsConnectionParameters(MmsConnection self);
184 
191 typedef void (*MmsConnectionLostHandler) (MmsConnection connection, void* parameter);
192 
199 void
200 MmsConnection_setConnectionLostHandler(MmsConnection self, MmsConnectionLostHandler handler, void* handlerParameter);
201 
208 void
209 MmsConnection_setIsoConnectionParameters(MmsConnection self, IsoConnectionParameters* params);
210 
216 void
217 MmsConnection_destroy(MmsConnection self);
218 
219 /*******************************************************************************
220  * Blocking functions for connection establishment and data access
221  *******************************************************************************/
222 
223 
236 bool
237 MmsConnection_connect(MmsConnection self, MmsError* mmsError, const char* serverName, int serverPort);
238 
247 void
248 MmsConnection_close(MmsConnection self);
249 
261 void
262 MmsConnection_abort(MmsConnection self, MmsError* mmsError);
263 
275 void
276 MmsConnection_conclude(MmsConnection self, MmsError* mmsError);
277 
278 
289 LinkedList /* <char*> */
290 MmsConnection_getVMDVariableNames(MmsConnection self, MmsError* mmsError);
291 
303 LinkedList /* <char*> */
304 MmsConnection_getDomainNames(MmsConnection self, MmsError* mmsError);
305 
317 LinkedList /* <char*> */
318 MmsConnection_getDomainVariableNames(MmsConnection self, MmsError* mmsError, const char* domainId);
319 
331 LinkedList /* <char*> */
332 MmsConnection_getDomainVariableListNames(MmsConnection self, MmsError* mmsError, const char* domainId);
333 
345 LinkedList /* <char*> */
346 MmsConnection_getDomainJournals(MmsConnection self, MmsError* mmsError, const char* domainId);
347 
358 LinkedList /* <char*> */
360 
361 
374 MmsValue*
375 MmsConnection_readVariable(MmsConnection self, MmsError* mmsError, const char* domainId, const char* itemId);
376 
391 MmsValue*
392 MmsConnection_readArrayElements(MmsConnection self, MmsError* mmsError, const char* domainId, const char* itemId,
393  uint32_t startIndex, uint32_t numberOfElements);
394 
407 MmsValue*
408 MmsConnection_readMultipleVariables(MmsConnection self, MmsError* mmsError, const char* domainId,
409  LinkedList /*<char*>*/ items);
410 
425 MmsConnection_writeVariable(MmsConnection self, MmsError* mmsError,
426  const char* domainId, const char* itemId, MmsValue* value);
427 
447 MmsConnection_writeArrayElements(MmsConnection self, MmsError* mmsError,
448  const char* domainId, const char* itemId, int index, int numberOfElements,
449  MmsValue* value);
450 
468 void
469 MmsConnection_writeMultipleVariables(MmsConnection self, MmsError* mmsError, const char* domainId,
470  LinkedList /*<char*>*/ items, LinkedList /* <MmsValue*> */ values,
471  LinkedList* /* <MmsValue*> */ accessResults);
472 
489 void
490 MmsConnection_writeNamedVariableList(MmsConnection self, MmsError* mmsError, bool isAssociationSpecific,
491  const char* domainId, const char* itemId, LinkedList /* <MmsValue*> */values,
492  /* OUTPUT */LinkedList* /* <MmsValue*> */accessResults);
493 
504 MmsVariableSpecification*
505 MmsConnection_getVariableAccessAttributes(MmsConnection self, MmsError* mmsError,
506  const char* domainId, const char* itemId);
507 
524 MmsValue*
525 MmsConnection_readNamedVariableListValues(MmsConnection self, MmsError* mmsError, const char* domainId,
526  const char* listName, bool specWithResult);
527 
528 
541 MmsValue*
543  const char* listName, bool specWithResult);
544 
558 void
559 MmsConnection_defineNamedVariableList(MmsConnection self, MmsError* mmsError, const char* domainId,
560  const char* listName, LinkedList variableSpecs);
561 
562 
572 void
574  const char* listName, LinkedList variableSpecs);
575 
591 LinkedList /* <MmsVariableAccessSpecification*> */
592 MmsConnection_readNamedVariableListDirectory(MmsConnection self, MmsError* mmsError,
593  const char* domainId, const char* listName, bool* deletable);
594 
595 
596 
606 LinkedList /* <MmsVariableAccessSpecification*> */
608  const char* listName, bool* deletable);
609 
623 bool
624 MmsConnection_deleteNamedVariableList(MmsConnection self, MmsError* mmsError, const char* domainId, const char* listName);
625 
635 bool
637  const char* listName);
638 
651 MmsVariableAccessSpecification_create(char* domainId, char* itemId);
652 
670 MmsVariableAccessSpecification_createAlternateAccess(char* domainId, char* itemId, int32_t index,
671  char* componentName);
672 
678 void
680 
690 void
691 MmsConnection_setLocalDetail(MmsConnection self, int32_t localDetail);
692 
693 int32_t
694 MmsConnection_getLocalDetail(MmsConnection self);
695 
706 MmsConnection_identify(MmsConnection self, MmsError* mmsError);
707 
708 void
710 
723 void
724 MmsConnection_getServerStatus(MmsConnection self, MmsError* mmsError, int* vmdLogicalStatus, int* vmdPhysicalStatus,
725  bool extendedDerivation);
726 
727 /*******************************************************************************
728  * functions for MMS file services
729  *******************************************************************************/
730 
731 typedef void
732 (*MmsFileDirectoryHandler) (void* parameter, char* filename, uint32_t size, uint64_t lastModified);
733 
734 typedef void
735 (*MmsFileReadHandler) (void* parameter, int32_t frsmId, uint8_t* buffer, uint32_t bytesReceived);
736 
737 
746 int32_t
747 MmsConnection_fileOpen(MmsConnection self, MmsError* mmsError, const char* filename, uint32_t initialPosition,
748  uint32_t* fileSize, uint64_t* lastModified);
749 
761 bool
762 MmsConnection_fileRead(MmsConnection self, MmsError* mmsError, int32_t frsmId, MmsFileReadHandler handler, void* handlerParameter);
763 
771 void
772 MmsConnection_fileClose(MmsConnection self, MmsError* mmsError, int32_t frsmId);
773 
781 void
782 MmsConnection_fileDelete(MmsConnection self, MmsError* mmsError, const char* fileName);
783 
792 void
793 MmsConnection_fileRename(MmsConnection self, MmsError* mmsError, const char* currentFileName, const char* newFileName);
794 
795 
804 void
805 MmsConnection_obtainFile(MmsConnection self, MmsError* mmsError, const char* sourceFile, const char* destinationFile);
806 
823 bool
824 MmsConnection_getFileDirectory(MmsConnection self, MmsError* mmsError, const char* fileSpecification, const char* continueAfter,
825  MmsFileDirectoryHandler handler, void* handlerParameter);
826 
827 typedef struct sMmsJournalEntry* MmsJournalEntry;
828 
829 typedef struct sMmsJournalVariable* MmsJournalVariable;
830 
832  MmsValue* entryID; /* type MMS_OCTET_STRING */
833  MmsValue* occurenceTime; /* type MMS_BINARY_TIME */
834  LinkedList journalVariables;
835 };
836 
838  char* tag;
840 };
841 
855 void
856 MmsJournalEntry_destroy(MmsJournalEntry self);
857 
858 const MmsValue*
859 MmsJournalEntry_getEntryID(MmsJournalEntry self);
860 
861 const MmsValue*
862 MmsJournalEntry_getOccurenceTime(MmsJournalEntry self);
863 
864 const LinkedList /* <MmsJournalVariable> */
865 MmsJournalEntry_getJournalVariables(MmsJournalEntry self);
866 
867 const char*
868 MmsJournalVariable_getTag(MmsJournalVariable self);
869 
870 const MmsValue*
871 MmsJournalVariable_getValue(MmsJournalVariable self);
872 
873 
874 LinkedList
875 MmsConnection_readJournalTimeRange(MmsConnection self, MmsError* mmsError, const char* domainId, const char* itemId,
876  MmsValue* startingTime, MmsValue* endingTime, bool* moreFollows);
877 
878 LinkedList
879 MmsConnection_readJournalStartAfter(MmsConnection self, MmsError* mmsError, const char* domainId, const char* itemId,
880  MmsValue* timeSpecification, MmsValue* entrySpecification, bool* moreFollows);
881 
887 void
889 
892 #ifdef __cplusplus
893 }
894 #endif
895 
896 #endif /* MMS_CLIENT_CONNECTION_H_ */
MmsServerIdentity * MmsConnection_identify(MmsConnection self, MmsError *mmsError)
get the identity of the connected server
MmsConnectionParameters MmsConnection_getMmsConnectionParameters(MmsConnection self)
Get the MMS specific connection parameters for an MmsConnection instance.
const MmsValue * MmsJournalVariable_getValue(MmsJournalVariable self)
void(* MmsInformationReportHandler)(void *parameter, char *domainName, char *variableListName, MmsValue *value, bool isVariableListName)
Definition: mms_client_connection.h:63
void MmsConnection_close(MmsConnection self)
Close the connection - not recommended.
MmsValue * MmsConnection_readArrayElements(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId, uint32_t startIndex, uint32_t numberOfElements)
Read an element of a single array variable from the server.
int32_t MmsConnection_fileOpen(MmsConnection self, MmsError *mmsError, const char *filename, uint32_t initialPosition, uint32_t *fileSize, uint64_t *lastModified)
open a file for read
Definition: mms_client_connection.h:837
void MmsConnection_obtainFile(MmsConnection self, MmsError *mmsError, const char *sourceFile, const char *destinationFile)
Send an obtainFile request to the server (used to initiate file download to server) ...
MmsDataAccessError MmsConnection_writeVariable(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId, MmsValue *value)
Write a single variable to the server.
char * tag
Definition: mms_client_connection.h:838
Definition: mms_client_connection.h:831
void MmsConnection_conclude(MmsConnection self, MmsError *mmsError)
Uses the MMS conclude service to close the connection to the server.
void MmsConnection_setConnectionLostHandler(MmsConnection self, MmsConnectionLostHandler handler, void *handlerParameter)
Install a callback function that will be called by the client stack if the MMS connection to the serv...
void MmsConnection_setRawMessageHandler(MmsConnection self, MmsRawMessageHandler handler, void *parameter)
Set the callback handler to intercept the raw MMS messages of the connection.
struct sMmsConnection * MmsConnection
Definition: mms_client_connection.h:69
IsoConnectionParameters MmsConnection_getIsoConnectionParameters(MmsConnection self)
Get the ISO connection parameters for an MmsConnection instance.
void(* MmsFileDirectoryHandler)(void *parameter, char *filename, uint32_t size, uint64_t lastModified)
Definition: mms_client_connection.h:732
char * vendorName
Definition: mms_client_connection.h:58
int maxServOutstandingCalled
Definition: mms_client_connection.h:51
void MmsJournalEntry_destroy(MmsJournalEntry self)
Destroy a single MmsJournalEntry instance.
void MmsConnection_setConnectTimeout(MmsConnection self, uint32_t timeoutInMs)
Set the connect timeout in ms for this connection instance.
void MmsConnection_destroy(MmsConnection self)
Destroy an MmsConnection instance and release all resources.
void MmsServerIdentity_destroy(MmsServerIdentity *self)
Destroy (free) an MmsServerIdentity object.
void MmsConnection_getServerStatus(MmsConnection self, MmsError *mmsError, int *vmdLogicalStatus, int *vmdPhysicalStatus, bool extendedDerivation)
get the VMD status of the connected server (is MMS status service)
void MmsConnection_setLocalDetail(MmsConnection self, int32_t localDetail)
Get the MMS local detail parameter (local detail means maximum MMS PDU size).
bool MmsConnection_deleteNamedVariableList(MmsConnection self, MmsError *mmsError, const char *domainId, const char *listName)
Delete a named variable list at the server.
void MmsVariableAccessSpecification_destroy(MmsVariableAccessSpecification *self)
Delete the MmsVariableAccessSpecification data structure.
MmsValue * occurenceTime
Definition: mms_client_connection.h:833
LinkedList MmsConnection_getVariableListNamesAssociationSpecific(MmsConnection self, MmsError *mmsError)
Get the names of all named variable lists associated with this client connection. ...
Definition: mms_common.h:147
MmsVariableSpecification * MmsConnection_getVariableAccessAttributes(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId)
Get the variable access attributes of a MMS named variable of the server.
int dataStructureNestingLevel
Definition: mms_client_connection.h:52
const char * MmsJournalVariable_getTag(MmsJournalVariable self)
char * revision
Definition: mms_client_connection.h:60
int32_t MmsConnection_getLocalDetail(MmsConnection self)
void MmsConnection_fileDelete(MmsConnection self, MmsError *mmsError, const char *fileName)
delete the file with the specified name
int maxPduSize
Definition: mms_client_connection.h:53
bool MmsConnection_connect(MmsConnection self, MmsError *mmsError, const char *serverName, int serverPort)
Connect to an MMS server.
LinkedList journalVariables
Definition: mms_client_connection.h:834
void MmsConnection_setFilestoreBasepath(MmsConnection self, const char *basepath)
Set the virtual filestore basepath for the MMS obtain file services.
void MmsConnection_fileRename(MmsConnection self, MmsError *mmsError, const char *currentFileName, const char *newFileName)
rename the file with the specified name
MmsValue * MmsConnection_readVariable(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId)
Read a single variable from the server.
MmsValue * MmsConnection_readNamedVariableListValuesAssociationSpecific(MmsConnection self, MmsError *mmsError, const char *listName, bool specWithResult)
Read the values of a association specific named variable list.
MmsConnection MmsConnection_createSecure(TLSConfiguration tlsConfig)
Create a new secure (TLS enabled) MmsConnection instance.
bool MmsConnection_fileRead(MmsConnection self, MmsError *mmsError, int32_t frsmId, MmsFileReadHandler handler, void *handlerParameter)
read the next data block from the file
void MmsConnection_setInformationReportHandler(MmsConnection self, MmsInformationReportHandler handler, void *parameter)
Install a handler function for MMS information reports (unsolicited messages from the server)...
MmsValue * MmsConnection_readMultipleVariables(MmsConnection self, MmsError *mmsError, const char *domainId, LinkedListitems)
Read multiple variables of a domain from the server with one request message.
const MmsValue * MmsJournalEntry_getEntryID(MmsJournalEntry self)
LinkedList MmsConnection_getDomainVariableNames(MmsConnection self, MmsError *mmsError, const char *domainId)
Get the names of all variables present in a MMS domain of the server.
MmsValue * entryID
Definition: mms_client_connection.h:832
Definition: mms_client_connection.h:49
LinkedList MmsConnection_readNamedVariableListDirectoryAssociationSpecific(MmsConnection self, MmsError *mmsError, const char *listName, bool *deletable)
Read the entry list of an association specific named variable list at the server. ...
MmsVariableAccessSpecification * MmsVariableAccessSpecification_createAlternateAccess(char *domainId, char *itemId, int32_t index, char *componentName)
Create a new MmsVariableSpecification that can be used to define named variable lists.
void MmsConnection_setIsoConnectionParameters(MmsConnection self, IsoConnectionParameters *params)
Set the ISO connection parameters for a MmsConnection instance.
void(* MmsRawMessageHandler)(void *parameter, uint8_t *message, int messageLength, bool received)
Callback function to intercept raw MMS messages.
Definition: mms_client_connection.h:105
void MmsConnection_writeNamedVariableList(MmsConnection self, MmsError *mmsError, bool isAssociationSpecific, const char *domainId, const char *itemId, LinkedList values, LinkedList *accessResults)
Write named variable list values to the server.
LinkedList MmsConnection_getDomainNames(MmsConnection self, MmsError *mmsError)
Get the domains names for all domains of the server.
MmsDataAccessError
Definition: mms_value.h:47
Definition: mms_client_connection.h:57
void MmsConnection_fileClose(MmsConnection self, MmsError *mmsError, int32_t frsmId)
close the file with the specified frsmID
void MmsConnection_defineNamedVariableListAssociationSpecific(MmsConnection self, MmsError *mmsError, const char *listName, LinkedList variableSpecs)
Define a new association specific named variable list at the server.
void MmsConnection_abort(MmsConnection self, MmsError *mmsError)
Uses the MMS/ACSE abort service to close the connection to the server.
MmsConnection MmsConnection_create(void)
Create a new MmsConnection instance.
bool MmsConnection_getFileDirectory(MmsConnection self, MmsError *mmsError, const char *fileSpecification, const char *continueAfter, MmsFileDirectoryHandler handler, void *handlerParameter)
get the file directory of the server.
void MmsConnection_writeMultipleVariables(MmsConnection self, MmsError *mmsError, const char *domainId, LinkedListitems, LinkedListvalues, LinkedList *accessResults)
Write multiple variables to the server.
LinkedList MmsConnection_getDomainVariableListNames(MmsConnection self, MmsError *mmsError, const char *domainId)
Get the names of all named variable lists present in a MMS domain or VMD scope of the server...
MmsValue * MmsConnection_readNamedVariableListValues(MmsConnection self, MmsError *mmsError, const char *domainId, const char *listName, bool specWithResult)
Read the values of a domain specific named variable list.
const LinkedList MmsJournalEntry_getJournalVariables(MmsJournalEntry self)
LinkedList MmsConnection_readJournalStartAfter(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId, MmsValue *timeSpecification, MmsValue *entrySpecification, bool *moreFollows)
LinkedList MmsConnection_getVMDVariableNames(MmsConnection self, MmsError *mmsError)
Get the names of all VMD scope variables of the server.
void MmsConnection_defineNamedVariableList(MmsConnection self, MmsError *mmsError, const char *domainId, const char *listName, LinkedList variableSpecs)
Define a new VMD or domain scoped named variable list at the server.
bool MmsConnection_deleteAssociationSpecificNamedVariableList(MmsConnection self, MmsError *mmsError, const char *listName)
Delete an association specific named variable list at the server.
MmsDataAccessError MmsConnection_writeArrayElements(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId, int index, int numberOfElements, MmsValue *value)
Write a single array element or a sub array to an array type variable.
LinkedList MmsConnection_readJournalTimeRange(MmsConnection self, MmsError *mmsError, const char *domainId, const char *itemId, MmsValue *startingTime, MmsValue *endingTime, bool *moreFollows)
int maxServOutstandingCalling
Definition: mms_client_connection.h:50
const MmsValue * MmsJournalEntry_getOccurenceTime(MmsJournalEntry self)
void(* MmsConnectionLostHandler)(MmsConnection connection, void *parameter)
User provided handler function that will be called if the connection to the server is lost...
Definition: mms_client_connection.h:191
LinkedList MmsConnection_getDomainJournals(MmsConnection self, MmsError *mmsError, const char *domainId)
Get the names of all journals present in a MMS domain of the server.
MmsVariableAccessSpecification * MmsVariableAccessSpecification_create(char *domainId, char *itemId)
Create a new MmsVariableSpecification that can be used to define named variable lists.
char * modelName
Definition: mms_client_connection.h:59
void MmsConnection_setRequestTimeout(MmsConnection self, uint32_t timeoutInMs)
Set the request timeout in ms for this connection.
void(* MmsFileReadHandler)(void *parameter, int32_t frsmId, uint8_t *buffer, uint32_t bytesReceived)
Definition: mms_client_connection.h:735
LinkedList MmsConnection_readNamedVariableListDirectory(MmsConnection self, MmsError *mmsError, const char *domainId, const char *listName, bool *deletable)
Read the entry list of a named variable list at the server.
MmsValue * value
Definition: mms_client_connection.h:839
MmsError
Definition: mms_common.h:38
struct sMmsValue MmsValue
Definition: mms_value.h:68