Skip to content

iterativ/openopc2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

LinuxSetup

PyPI version PyPI - Python Version

OpenOPC 2 is a Python Library for OPC DA. It is Open source and free for everyone. It allows you to use OPC Classic (OPC Data Access) in modern Python environments. OPC Classic is a pure Windows technology by design, but this library includes a Gateway Server that lets you use OPC Classic on any architecture (Linux, MacOS, Windows, Docker). So this Library creates a gateway between 2022 and the late 90ties. Like cruising into the sunset with Marty McFly in a Tesla.

OpenOPC 2 is based on the OpenOPC Library that was initially created by Barry Barnleitner and hosted on Source Forge, but It was completely refactorerd and migrated to Python 3.8+

πŸ”₯ Features

  • An OpenOPC Gateway Service (a Windows service providing remote access to the OpenOPC library, which is useful to avoid DCOM issues).
  • Command Line Interface (CLI)
  • Enables you to use OPC Classic with any Platform
  • CLI and Gateway are independent Executables that do not require Python
  • A system check module (allows you to check the health of your system)
  • A free OPC automation wrapper (required DLL file).
  • General documentation with updated procedures (this file).

🐍 OpenOPC vs OpenOPC 2

Open OPC 2 is based on OpenOPC and should be seen as a successor. If you already have an application that is based on OpenOPC, you can migrate with a minimal effort. Our main motivation to build this new version was to improve the developer experience and create a base for other developers that is easier to maintain, test and work with...

  • Simpler installation
  • Mostly the same api (but we take the freedom to not be compatible)
  • No memory leak in the OpenOpcService πŸŽ‰
  • Python 3.8+ (tested with 3.10)
  • Typings
  • Pyro5, increased security
  • We added tests 😎
  • Refactoring for increased readablity
  • Nicer CLI
  • Pipy Package

πŸš€ Getting started

Windows local installation

The quickest way to start is the cli application. Start your OPC server and use the openopc2.exe cli application for test (no python installation required).

Now you know that your OPC server is talking to OpenOPC 2. Then lets get started with python. If you use OpenOPC 2 with Python in windows directly you are limited to a 32bit Python installation. This is because the dlls of OPC are 32bit. If you prefer working with a 64bit Python version you can simply use the With OpenOPC Gateway.

WindowsSetup

You must install the gbda_aut.dll (in /lib) which is the GrayboxOpcDa wrapper.

http://gray-box.net/daawrapper.php?lang=en

python -m openopc2 list-servers

Multi platform installation

One of the main benefits of OpenOPC 2 is the OpenOPC gateway. This enables you to use any modern platform for developing your application. Start the OpenOPC service in the Windows environment where the OPC server is running. The Service starts a server (Pyro5) that lets you use the OpenOPC2 OpcDaClient on another machine. Due to the magic of Pyro (Python Remote Objects) the developer experience and usage of the Library remains the same as if you work in the local Windows setup.

(Download the executables here)

LinuxSetup

On the Windows Machine open the console as administrator.

openopcservice install
openopcservice start

On your Linux machine

pip install openopc2

python

from openopc2.da_client import OpcDaClient

βš™οΈ Configuration

The configuration of the OpenOpc 2 library and the OpenOpcGateway is done via environment variables.

OPC_CLASS=Graybox.OPC.DAWrapper
OPC_CLIENT=OpenOPC
OPC_GATE_HOST=192.168.1.96    # IMPORTANT: Replace with your IP address
OPC_GATE_PORT=7766
OPC_HOST=localhost
OPC_MODE=dcom
OPC_SERVER=Matrikon.OPC.Simulation
  • If they are not set, open a command prompt window (cmd) and type:
C:\>set ENV_VAR=VALUE
C:\>set OPC_GATE_HOST=172.16.4.22    # this is an example
  • Alternately, Windows OS system or user environment variables work. Note that user environment variables take precedent over system environment variables.

  • Make sure the firewall is allowed to keep the port 7766 open. If in doubt, and you're doing a quick test, just turn off your firewall completely.

  • For easy testing, make sure an OPC server is installed in your Windows box (i.e. Matrikon OPC Simulation Server).

  • The work environment for testing these changes was a remote MacOs with Window10 64bit host and the Matrikon simulation server.

  • Register the OPC automation wrapper ( gbda_aut.dll ) by typing this in the command line:

C:\openopc2\lib>regsvr32 gbda_aut.dll
  • If, for any reason, you want to uninstall this file and remove it from your system registry later, type this in the command line:
C:\openopc2\lib>regsvr32 gbda_aut.dll -u

CLI

The CLI (Command Line Interface) lets you use OpenOPC2 in the shell and offers you a quick way to explore your opc server and the OpenOPC DA client without the need of writing Python code.

The documentation of the CLI can be found here

WindowsSetup

WindowsSetup

WindowsSetup

WindowsSetup

OpenOPC Gateway

This task can be completed from one of two ways (make sure to have it installed first):

  • By clicking the Start link on the "OpenOPC Gateway Service" from the "Services" window (Start -> Control Panel -> System and Security -> Administrative Tools).
  • By running the net start SERVICE command like this:
C:\openopc2\bin> zzzOpenOPCService
  • If you have problems starting the service, you can also try to start this in "debug" mode:
C:\openopc2\src>python OpenOPCService.py debug
C:\openopc2\>net stop zzzOpenOPCService

Configure the way the OpenOPC Gateway Service starts

If you are going to use this service frequently, it would be better to configure it to start in "automatic" mode. To do this:

  • Select the "OpenOPC Gateway Service" from the "Services" window (Start -> Control Panel -> System and Security -> Administrative Tools).
  • Right-click and choose "Properties".
  • Change the startup mode to "Automatic". Click "Apply" and "OK" buttons.
  • Start the service (if not already started).

πŸ™ Credits

OpenOPC 2 is based on the OpenOPC python library that was originally created by Barry Barnleitner and its many Forks on Github. Without the great work of all the contributors, this would not be possible. Contribution is open for everyone.

The authors of the var package are:

Years Name User
2008-2012 πŸ‡ΊπŸ‡Έ Barry Barnreiter barry_b@users.sourceforge.net
2014 πŸ‡·πŸ‡Ί Anton D. Kachalov https://github.com/ya-mouse
2017 πŸ‡»πŸ‡ͺ JosΓ© A. Maita https://github.com/joseamaita
2022 πŸ‡¨πŸ‡­ Lorenz Padberg https://github.com/renzop
2022 πŸ‡¨πŸ‡­ Elia Bieri https://github.com/eliabieri

πŸ“œ License

This software is licensed under the terms of the GNU GPL v2 license plus a special linking exception for portions of the package. This license is available in the LICENSE.txt file.