Visibility Control

Visibility modifiers also none as access modifiers can be applied to some elements of CODESYS project or library. CODESYS will provide two groups of these modifiers.

  1. Attributes for decorating POU's

    Attributes will control the visibility of some elements in a way that a user of CODESYS will not able to see this element. The CODESYS compiler is still able to use these elements. An application which is using a element decorated with one of these attributes will not present an compile error.

  2. Special Keywords like PUBLIC, PROTECTED, INTERNAL, PRIVATE for decorating Programs, Function Blocks, Properties and Methods

    With the help of these special keywords it is possible to define the access rights for a specific element. An application which is using a element decorated with one of these keywords will present an compile error if the access to this element is not allowed by the related keyword.

Attributes for Controlling the Visibility

 

In the CODESYS library template, concrete examples for the usage of some attributes regarding the visibility of symbols are provided:

Decorating elements with the attributes {attribute 'hide_all_locals'} or {attribute 'hide'} are useful for securing the encapsulated knowledge. These attributes hiding the related elements without any condition. The related elements can not handled properly by CODESYS features like Refactoring or Cross Reference.

The elements decorated with {attribute 'conditional show_all locals' := 'SomeText'} or {attribute 'conditional show' := 'Some Text'} are hidden for the end user, but visible for the library developer.

Calling CODESYS with the command line parameter --conditional­showsymbols="SomeText" activates the visibility of the special marked parts of a library for the end user.

Keywords for Controlling the Visibility

The main difference between controlling visibility with attributes to the method of using keywords is that these keywords will not simply hide symbols. The related symbols are really not accessible.

To encapsulate parts of your application has naturally some pros and cons.

Pros

Cons

PUBLIC:

This is the default. If no access modifier or the keyword PUBLIC is used, no access limitation is defined.

PROTECTED:

Access is only allowed for the own members or members of func­tion blocks which extends the current function block.

INTERNAL:

Access is only allowed for the members of the current library. Symbols which are decorated with this keyword are not accessible and not visible from outside of the library.

PRIVATE:

Access is only allowed for the own members of a function blocks.