This plugin is intended to allow a user to carry out later-binding subscriptions for IEC 61850 GOOSE and SMV.
-
This is a plugin for open-scd-core, the core editor engine for OpenSCD.
-
This plugin is a web component and follows the open-wc recommendations.
-
This plugin uses the Apache License and is intended for you to use, study, share and improve.
It offers a publisher and subscriber view to allow efficient and intuitive use.
This demo also includes some add-on plugins to provide specific functionality for Siemens, SEL and NR Electric IEDs. To use this, enable it first by opening the menu plugin and checking "Enable".
Feel free to log issues to request fixes, improvements or new features.
-
Supports GOOSE and SMV
-
Allows subscriptions from either a publisher or subscriber view
-
Will instantiate supervisions if possible (if
valImport=true
andvalKind=RO
orvalKind=Conf
on the first LGOS/LSVS instance or the datatype) -
Will show basic type and common data class on hover of FCDA elements or ExtRef elements (if available via preconfigured types)
-
Supports preferred/pre-configured types
-
Allows filtering to only used/unused subscriptions
-
Provides copy-to-clipboard in Markdown format
Open SCD core allows plugins to be loaded from a URL.
You can click on this link to trial this plugin.
In this view it is without theming and only presents this plugin along with the open and save plugins.
-
The latest core is available at https://openscd.github.io/open-scd/.
-
Go to Menu › Add plugins…
-
Select Cancel - this is an editor plugin.
-
Select OK to required a loaded document.
-
Choose a plugin name of 'Subscriber Later Binding'.
-
Choose a plugin icon of 'link'
-
Provide a plugin source URI of: https://danyill.github.io/oscd-subscriber-later-binding/oscd-subscriber-later-binding.js
-
Click OK on the summary, it should like similar to that shown below:
-
Open a file and enjoy!
Note
|
OpenSCD is transitioning to use of open-scd-core , these instructions will require updating at the end of this transition.
|
-
Open your OpenSCD distribution or use https://openscd.github.io.
-
Create a custom extension by going to menu › Extensions › Add Custom Extension.
-
Enter the name 'Subscriber Later Binding', select 'Editor tab' and enter https://danyill.github.io/oscd-subscriber-later-binding/oscd-subscriber-later-binding.js as the URL.
This is the URL of the bundle built by CI and is always the latest alpha version of this plugin.
-
Click on Add.
-
Until OpenSCD is fully transitioned to open-scd-core, a conversion plugin is also required to interface between the old and new APIs.
-
Create another custom extension by going to menu › Extensions › Add Custom Extension.
-
Enter the name 'Action Translate', select 'Menu entry' and enter https://jakobvogelsang.github.io/oscd-action-translate/oscd-action-translate.js as the URL.
This is the URL of the bundle built by CI and is always the latest alpha version of this plugin.
-
You should now be able to scroll across in the menu-bar and find a tab, "Subscriber Later Binding"
TipIf there are too many editor plugin, hold down shift and wheel-mouse up and down to scroll them easily.
-
Within the current OpenSCD distribution, plugins are stored in the
public/js/plugins.js
folder. Each plugin appears in the following form:{ name: 'Subscriber Later Binding', // (1) src: 'https://danyill.github.io/oscd-subscriber-later-binding/oscd-subscriber-later-binding.js', // (2) icon: 'link', // (3) default: true, // (4) kind: 'editor', // (5) requireDoc: true, // (6) position: 'middle' // (7) }
-
Name of the plugin which appears in the editor menu at top of screen
-
URL which can be a local or remote resource. For a local resource, begins without a forward slash, e.g.
plugins/oscd-subscriber-later-binding/dist/oscd-subscriber-later-binding.js
. In this case what is shown is loading a plugin from the build process. -
A material icon, see others at Material Symbols and Icons
-
Whether the plugin is enabled by default or has to be enabled in the plugins menu
-
The type of plugin, either
menu
oreditor
. This is aneditor
plugin. -
Whether a document must be loaded for this plugin to be available
-
A string, either
top
,middle
orbottom
to give a location in the menu. Otherwise inferred from the order in the file relative to other plugins.
-
-
You need to copy an entry like the above, ensure the
src
URL resolves and the plugin should be loaded when the distribution is built. -
If you are building locally you likely need to run an
npm run bundle
command in each plugin to make thedist
folder, containing a single JavaScript file with the plugin available to OpenSCD.
Within an OpenSCD core distribution, plugins are also loaded from a json file with a slightly different schema.
-
Typically the distribution will be served from a static web page and within the web page there will be a plugins property declared on an
open-scd
object, for instance:<open-scd plugins='{ "menu": [ {"name": "Open File", "translations": {"de": "Datei öffnen"}, "icon": "folder_open", "active": true, "src": "https://openscd.github.io/oscd-open/oscd-open.js"}, {"name": "Save File", "translations": {"de": "Datei speichern"}, "icon": "save", "active": true, "src": "https://openscd.github.io/oscd-save/oscd-save.js"} ], "editor": [ {"name": "Subscriber Later Binding", "translations": {"de": "Späte Bindung des Abonnenten", "pt": "Associação Tardia de Assinante"}, "icon": "link", "active": true, "requireDoc": true, "src": "/plugins/oscd-subscriber-later-binding/dist/oscd-subscriber-later-binding.js"} ] }' ></open-scd>
-
This plugin is an editor plugin, editor plugins are an array of JSON of the following form:
{ "name": "Subscriber Later Binding", // (1) "translations": { // (2) "de": "Späte Bindung des Abonnenten", "pt": "Associação Tardia de Assinante" }, "icon": "link", // (3) "active": true, // (4) "requireDoc": true, // (5) "src": "https://danyill.github.io/oscd-subscriber-later-binding/oscd-subscriber-later-binding.js" // (6) }
-
Name of the plugin which appears in the editor menu at top of screen
-
Translations of the plugin name as required using standard locale names.
-
A material icon, see others at Material Symbols and Icons
-
Whether the plugin is enabled by default or has to be enabled in the plugins menu
-
Whether a document must be loaded for this plugin to be available
-
URL which can be a local or remote resource. For a local resource, begins without a forward slash, e.g.
plugins/oscd-subscriber-later-binding/dist/oscd-subscriber-later-binding.js
. In this case what is shown is loading a plugin from the internet using the continuous integration build process.
-
-
You need to copy an entry like the above, ensure the
src
URL resolves and the plugin should be loaded when the distribution is built. -
If you are building locally you likely need to run an
npm run bundle
command in each plugin to make thedist
folder, containing a single JavaScript file with the plugin available to OpenSCD.
This plugin uses Node.js and the npm package ecosystem and is verified to work on Linux.
For development, you’ll need Node.js (including npm, which is bundled with Node.js) on your system.
To check whether you have Node.js installed, and which version, open a terminal and type:
$ node -v
A good way to install Node.js is to use nvm (Node Version Manager), however system-wide installations may also work.
If you’re using Linux or macOS, follow the nvm installation instructions to set up nvm on your machine.
Once you’ve installed nvm, open a new terminal and install the active Node.js LTS release using:
$ nvm install --lts
Now that you have Node.js installed, you can install this plugin.
Tip
|
This repository uses Git LFS so ensure this is is installed on your system prior
(on Debian based systems sudo apt install git-lfs ).
Then clone this repository using:
|
$ git clone https://github.com/danyill/oscd-subscriber-later-binding
Now, install dependencies
$ npm i
Start up a demo server
$ npm run start
Now open in your browser locally to http://localhost:8000/demo/ to use the plugin.
To scan the project for linting and formatting errors, run
$ npm run lint
To automatically fix linting and formatting errors, run
$ npm run format
To execute a single test run:
$ npm run test
To run the tests in interactive watch mode run:
$ npm run test:watch
For most of the tools, the configuration is in the package.json
to reduce the number of files in your project.
If you customize the configuration a lot, you can consider moving them to individual files.
This plugin was refactored from base code in OpenSCD and relies on the code, architecture and review effort of multiple people other than the authors of this plugin, including:
-
Rob Tjalma
-
Dennis Labordus
-
Jakob Vogelsang
-
Juan Munoz
© 2023 OpenSCD Daniel Mulholland, Christian Dinkel