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](https://github.com/open62541/open62541/releases) 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](examples/) directory or further down on this page.
[](https://www.ohloh.net/p/open62541)
[](https://travis-ci.org/open62541/open62541)
[](https://ci.appveyor.com/project/open62541/open62541/branch/master)
[](https://scan.coverity.com/projects/open62541-open62541)
[](https://coveralls.io/r/open62541/open62541?branch=master)
[](https://github.com/open62541/open62541/releases)
### Features
For a complete list of features check: [open62541 Features](FEATURES.md)
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 currently being implemented:
- Target 0.3 release (to be released in the coming weeks):
- Secure communication with encrypted messages (Done)
- Access control for individual nodes (Done)
- Asynchronous service requests in the client (Done)
- Target 0.4 release:
- Events (notifications emitted by objects, data change notifications are implemented), WIP by @Pro
- Event-loop (background tasks) in the client
- Publish/Subscribe based on UDP (Specification Part 14), WIP @ Fraunhofer IOSB
### Dependencies
On most systems, open62541 requires the C standard library only. For dependencies during the build process, see the following list and the [build documentation](https://open62541.org/doc/current/building.html) for details.
- Core Library: The core library has no dependencies besides the C99 standard headers.
- Default Plugins: The default plugins use the POSIX interfaces for networking and accessing the system clock. Ports to different (embedded) architectures are achieved by customizing the plugins.
- Building and Code Generation: The build environment is generated via CMake. Some code is auto-generated from XML definitions that are part of the OPC UA standard. The code generation scripts run with both Python 2 and 3.
### Code Quality
We emphasize code quality. The following quality metrics are continuously checked and are ensured to hold before an official release is made:
- Zero errors indicated by the Compliance Testing Tool (CTT) of the OPC Foundation for the supported features
- Zero compiler warnings from GCC/Clang/MSVC with very strict compilation flags
- Zero issues indicated by unit tests (more than 80% coverage)
- Zero issues indicated by clang-analyzer, clang-tidy, cpp-check and the Coverity static code analysis tools
- Zero unresolved issues from fuzzing the library in Google's oss-fuzz infrastructure
- Zero issues indicated by Valgrind (Linux), DrMemory (Windows) and Clang AddressSanitizer / MemorySanitizer for the CTT tests, unit tests and fuzzing
### Documentation and Support
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](https://ci.appveyor.com/project/open62541/open62541/build/artifacts).
For individual discussion and support, use the following channels
- the [mailing list](https://groups.google.com/d/forum/open62541)
- our [IRC channel](http://webchat.freenode.net/?channels=%23open62541)
- the [bugtracker](https://github.com/open62541/open62541/issues)
or contact a member of the core development group (see below).
### 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. The following are good starting points for new contributors:
- [Report bugs](https://github.com/open62541/open62541/issues)
- Improve the [documentation](http://open62541.org/doc/current)
- Work on issues marked as "[good first issue](https://github.com/open62541/open62541/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)"
### 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```).
```c
#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 att


毕业设计方案专家
- 粉丝: 7644
最新资源
- 华盈恒信华美集团—蛇口华海机械冶金工程有限公司新薪酬体系实施细则.doc
- 集团化办学下的教育信息化研究.docx
- 电气工程自动化中的人工智能技术探讨.docx
- 习题集-医学细胞生物学-20080619.doc.doc
- 基于Nodejs的石墨文档自动化导出工具-通过配置Cookie和文件路径实现批量文档导出-用于将石墨文档内容转换为CSV格式并保存到本地-支持ES6模块和Yarn包管理器的命令行.zip
- 八大作业安全作业票证汇总.doc
- 项目部应急预案.doc
- 深度学习在推荐系统中的应用.pdf
- 提升交通运输经济信息化管理水平的措施.docx
- 大学计算机基础A(计算机、软件工程、网络工程)模拟.doc
- 中建吊顶工程施工工艺标准(附图多).pptx
- 住宅室外排水工程施工组织设计.doc
- 基于无线网络的智能环境艺术照明控制系统解决措施.doc
- 高中计算机课堂的互动教学策略.docx
- 小班语言游戏捉迷藏.doc
- 大数据时代计算机网络信息安全探讨.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



- 1
- 2
- 3
前往页