CDP's fork of the open62541 OPC UA stack (https://github.com/open62541/open62541)

Jens Reimann 76aea27156 fix interpreter locations hace 6 años
.github a0ddf1ba9b Reformat to hopefully get more people to follow the template hace 7 años
deps 4b300b69d6 Update mdnsd to include memory defines hace 6 años
doc 45ed4fc455 Set _XOPEN_SOURCE to 600 if not defined hace 6 años
examples e5cd74750a use default node attributes in the server example hace 6 años
include 45ed4fc455 Set _XOPEN_SOURCE to 600 if not defined hace 6 años
plugins bd97f9a482 Set client to error state if disconnected. Add example for reconnect (#1172) hace 6 años
src 6ef0909d4c fix a shadowed variable in the amalgamation hace 6 años
tests 215f2ed078 Add unit test for access control and extend client subscription tests hace 6 años
tools 76aea27156 fix interpreter locations hace 6 años
.gitignore 5c939bd176 more code groups for Visual Studio; more gitignore definitions hace 6 años
.gitmodules 14df336430 Code review: @Pro's MDNS implementation (#732) hace 7 años
.travis-apt-pin.preferences 5b2b18b376 Use simpler clang setup for fuzzing. hace 6 años
.travis.yml bd91014f37 Reenable fail on error hace 6 años
AUTHORS f2988da120 Added myself to the authors file... overdue for about 18 month's ^^ hace 7 años
CHANGELOG 9c4faf8551 add changelog entries for the recent changes to the public API hace 6 años
CMakeLists.txt b585a4c5cf Fix dependency of namespace0 to avoid executing the generator simultaneously hace 6 años
Dockerfile 7e08e6dbc2 Fix docker file copy command hace 7 años
FEATURES.md 550b0e5b78 Correct url hace 7 años
LICENSE e5865742fc Update LICENSE hace 7 años
LICENSE-CC0 f8265df738 clean up include structure hace 9 años
README.md a8012d3040 endpoints in the server config; new/delete functions for the server config hace 6 años
TinyDockerfile 7e08e6dbc2 Fix docker file copy command hace 7 años
appveyor.yml c30426f18a Disable multicore build hace 6 años

README.md

open62541

open62541 (http://open62541.org) is an open source and free implementation of OPC UA (OPC Unified Architecture) written in the common subset of the C99 and C++98 languages. The library is usable with all major compilers and provides the necessary tools to implement dedicated OPC UA clients and servers, or to integrate OPC UA-based communication into existing applications. open62541 library is platform independent. All platform-specific functionality is implemented via exchangeable plugins. Plugin implementations are provided for the major operating systems.

open62541 is licensed under the Mozilla Public License v2.0. So the open62541 library can be used in projects that are not open source. Only changes to the open62541 library itself need to published under the same license. The plugins, as well as the server and client examples are in the public domain (CC0 license). They can be reused under any license and changes do not have to be published.

The library is available in standard source and binary form. In addition, the single-file source distribution merges the entire library into a single .c and .h file that can be easily added to existing projects. Example server and client implementations can be found in the /examples directory or further down on this page.

Ohloh Project Status Build Status MSVS build status Coverity Scan Build Status Coverage Status Overall Downloads

Features

For a complete list of features check: open62541 Features

open62541 implements the OPC UA binary protocol stack as well as a client and server SDK. It currently supports the Micro Embedded Device Server Profile plus some additional features. The final server binaries can be well under 100kb, depending on the size of the information model.

  • Communication Stack
    • OPC UA binary protocol
    • Chunking (splitting of large messages)
    • Exchangeable network layer (plugin) for using custom networking APIs (e.g. on embedded targets)
  • Information model
    • Support for all OPC UA node types (including method nodes)
    • Support for adding and removing nodes and references also at runtime.
    • Support for inheritance and instantiation of object- and variable-types (custom constructor/destructor, instantiation of child nodes)
  • Subscriptions
    • Support for subscriptions/monitoreditems for data change notifications
    • Very low resource consumption for each monitored value (event-based server architecture)
  • Code-Generation
    • Support for generating data types from standard XML definitions
    • Support for generating server-side information models (nodesets) from standard XML definitions

Features still missing in the 0.2 release are:

  • Encryption
  • Access control for individual nodes
  • Events (notifications emitted by objects, data change notifications are implemented)
  • Event-loop (background tasks) and asynchronous service requests in the client

Using open62541

A general introduction to OPC UA and the open62541 documentation can be found at http://open62541.org/doc/current. Past releases of the library can be downloaded at https://github.com/open62541/open62541/releases. To use the latest improvements, download a nightly build of the single-file distribution (the entire library merged into a single source and header file) from http://open62541.org/releases. Nightly builds of MSVC binaries of the library are available here.

For discussion and help, you can use

Development

Besides the general open62541 community, a group of core maintainers jointly steers the long-term development. The current core maintainers are (as of Mai 2017, in alphabetical order):

  • Chris-Paul Iatrou (Dresden University of Technology, Chair for Process Control Systems Engineering)
  • Florian Palm (RWTH Aachen University, Chair of Process Control Engineering)
  • Julius Pfrommer (Fraunhofer IOSB, Karlsruhe)
  • Stefan Profanter (fortiss, Munich)

As an open source project, we encourage new contributors to help improve open62541. There are ways to begin contributing without deep knowledge of the OPC UA standard:

Example Server Implementation

Compile the examples with the single-file distribution open62541.h/.c header and source file. Using the GCC compiler, just run gcc -std=c99 <server.c> open62541.c -o server (under Windows you may need to add -lws2_32).

#include <signal.h>
#include "open62541.h"

UA_Boolean running = true;
void signalHandler(int sig) {
    running = false;
}

int main(int argc, char** argv)
{
    signal(SIGINT, signalHandler); /* catch ctrl-c */

    /* Create a server listening on port 4840 */
    UA_ServerConfig *config = UA_ServerConfig_new_default();
    UA_Server *server = UA_Server_new(config);

    /* Add a variable node */
    /* 1) Define the node attributes */
    UA_VariableAttributes attr = UA_VariableAttributes_default;
    attr.displayName = UA_LOCALIZEDTEXT("en_US", "the answer");
    UA_Int32 myInteger = 42;
    UA_Variant_setScalar(&attr.value, &myInteger, &UA_TYPES[UA_TYPES_INT32]);

    /* 2) Define where the node shall be added with which browsename */
    UA_NodeId newNodeId = UA_NODEID_STRING(1, "the.answer");
    UA_NodeId parentNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER);
    UA_NodeId parentReferenceNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES);
    UA_NodeId variableType = UA_NODEID_NULL; /* take the default variable type */
    UA_QualifiedName browseName = UA_QUALIFIEDNAME(1, "the answer");

    /* 3) Add the node */
    UA_Server_addVariableNode(server, newNodeId, parentNodeId, parentReferenceNodeId,
                              browseName, variableType, attr, NULL, NULL);

    /* Run the server loop */
    UA_StatusCode status = UA_Server_run(server, &running);
    UA_Server_delete(server);
    UA_ServerConfig_delete(config);
    return status;
}

Example Client Implementation

#include <stdio.h>
#include "open62541.h"

int main(int argc, char *argv[])
{
    /* Create a client and connect */
    UA_Client *client = UA_Client_new(UA_ClientConfig_default);
    UA_StatusCode status = UA_Client_connect(client, "opc.tcp://localhost:4840");
    if(status != UA_STATUSCODE_GOOD) {
        UA_Client_delete(client);
        return status;
    }

    /* Read the value attribute of the node. UA_Client_readValueAttribute is a
     * wrapper for the raw read service available as UA_Client_Service_read. */
    UA_Variant value; /* Variants can hold scalar values and arrays of any type */
    UA_Variant_init(&value);
    status = UA_Client_readValueAttribute(client, UA_NODEID_STRING(1, "the.answer"), &value);
    if(status == UA_STATUSCODE_GOOD &&
       UA_Variant_hasScalarType(&value, &UA_TYPES[UA_TYPES_INT32])) {
        printf("the value is: %i\n", *(UA_Int32*)value.data);
    }

    /* Clean up */
    UA_Variant_deleteMembers(&value);
    UA_Client_delete(client); /* Disconnects the client internally */
    return status;
}