npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sheepcs/pg5-global-symbol-file-converter

v1.0.2

Published

NPM module that converts PG5 Global Symbol files into JSON

Downloads

9

Readme

PG5GlobalSymbolFileConverter

CI NPM Version NPM Downloads GitHub node-lts Donate

NPM module that converts PG5 Global Symbol files into JSON

Install

To install this npm module, follow these steps: bash npm install @sheepcs/pg5-global-symbol-file-converter

  1. Once the installation is complete, you can import the module:

    To import this module using the require statement, add the following code to your JavaScript file:

const { convertGlobalSymbolFileToMediaDefinition } = require('@sheepcs/pg5-global-symbol-file-converter');

To import this module using the import statement (ES6 module syntax), add the following code to your JavaScript file:

import { convertGlobalSymbolFileToMediaDefinition } from '@sheepcs/pg5-global-symbol-file-converter';

Make sure that you have the necessary environment and configuration set up to support ES6 modules.

Usage

Convert to Media Definition

Call the function convertGlobalSymbolFileToMediaDefinition and pass the PG5 Global Symbol file path as a parameter. This function will convert the file into a JSON representation of media definitions.

const filePath = '/path/to/your/_Global.sy5';
const mediaDefinitions = convertGlobalSymbolFileToMediaDefinition({filePath});

The function will return an object of media definitions. You can then use this data in your application as needed. The singleLineSymbols option is used in the convertGlobalSymbolFileToMediaDefinition function to specify whether the media definitions should be generated as single-line symbols.

When singleLineSymbols is set to true, each media definition will be represented as a single line of code. This can be useful when you want a compact representation of the media definitions.

When singleLineSymbols is set to false or not provided, each media definition will be represented as a separate object (nested), allowing for more detailed and structured representation of the media definitions.

To use the singleLineSymbols option, you can pass it as a second parameter to the convertGlobalSymbolFileToMediaDefinition function:

const mediaDefinitions = convertGlobalSymbolFileToMediaDefinition({filePath, singleLineSymbols: true});

Convert to Address Definition

Call the function shiftToAddressDefinition and pass the PG5 Global Symbol file path and the media definition as parameters. This function will convert the media definition into an address definition.

const filePath = '/path/to/your/_Global.sy5';
const mediaDefinitionCollection = convertGlobalSymbolFileToMediaDefinition({filePath});

const addressDefinitionCollection = shiftToAddressDefinition({mediaDefinitionCollection});

The function will return an array of address definitions. You can then use this data in your application as needed.

[!NOTE] ValueDefintions like UntypedSymbol will be removed with this function.

Remember to replace "/path/to/your/_Global.sy5" with the actual path to your PG5 Global Symbol file.

Output Format

The JS Object representation of the "mediaDefinitionCollection" is an object that contains media definitions. Each media definition is represented as a key-value pair, where the key is the name of the media definition and the value is an object that contains the properties of the media definition.

Here is an example of the JS Object representation of the "mediaDefinitionCollection":

Nested Example:

{
	"A": {
		"Alarm": {
			"Alarmliste": {
				"MyName": {
				"address": 3049,
				"arrayRange": 2,
				"comment": "",
				"mediaType": "TEXT",
				},
				"Texts": {
				"address": 0,
				"arrayRange": 1000,
				"comment": "",
				"mediaType": "TEXT",
				},
			},
			"DDC_Alarmliste": {
				"comment": ";Alarmliste",
				"mediaType": "UntypedSymbol",
				"value": "1",
			},
		},
	}
}

Single Line Symbols Example:

{
	"A.Alarm.Alarmliste.MyName": {
		address: 3049,
		arrayRange: 2,
		comment: "",
		mediaType: "TEXT",
	},
	"A.Alarm.Alarmliste.Texts": {
		address: 0,
		arrayRange: 1000,
		comment: "",
		mediaType: "TEXT",
	},
	"A.Alarm.DDC_Alarmliste": {
		comment: ";Alarmliste",
		mediaType: "UntypedSymbol",
		value: "1",
	},
  }

Address Definition Example:

{
	"TEXT": {
		"0": {
			symbol: 'A.Alarm.Alarmliste.Texts',
			arrayRange: 1000,
			comment: "",
		}
		"3049": {
			symbol: 'A.Alarm.Alarmliste.MyName',
			arrayRange: 2,
			comment: "",
		}
	},
}