forked from PLCnext/CppExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCppDataTypeTestProgram.hpp
290 lines (228 loc) · 7.73 KB
/
CppDataTypeTestProgram.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/******************************************************************************
*
* Copyright (c) Phoenix Contact GmbH & Co. KG. All rights reserved.
* Licensed under the MIT. See LICENSE file in the project root for full license information.
*
* CppDataTypeTestProgram.hpp
*
* Created on: 21.02.2019
* Author: Eduard Münz, Oliver Warneke, Martin Boers
*
******************************************************************************/
/******************************************************************************/
/* INCLUDES */
/******************************************************************************/
#pragma once
#include "Arp/System/Core/Arp.h"
#include "Arp/Plc/Commons/Esm/ProgramBase.hpp"
#include "Arp/System/Commons/Logging.h"
#include "CppDataTypeTestComponent.hpp"
namespace CppDataTypeTest
{
using namespace Arp;
using namespace Arp::System::Commons::Diagnostics::Logging;
using namespace Arp::Plc::Commons::Esm;
//#program
//#component(CppDataTypeTest::CppDataTypeTestComponent)
class CppDataTypeTestProgram : public ProgramBase, private Loggable<CppDataTypeTestProgram>
{
public: // typedefs
struct s_alltypes{
int8 outInt8 = 0; //SINT
uint8 outUint8 = 0; //USINT
int16 outInt16 = 0; //INT
uint16 outUint16 = 0; //UINT
int32 outInt32 = 0; //DINT
uint32 outUint32 = 0; //UDINT
int64 outInt64 = 0; //LINT
uint64 outUint64 = 0; //ULINT
boolean outBoolean = false; // BOOL
uint8 outByte = 0; //Byte
uint16 outWord = 0; //Word
uint32 outDword = 0; //DWORD
uint64 outLword = 0; //LWORD
float32 outFloat32 = 0.0; //Real
float64 outFloat64 = 0.0; //LREAL
StaticString<80> outString = ""; // String
StaticWString<80> outWString; // WString
// Structs containing custom-length strings are currently not supported by PLCnext Engineer (version 2020.6).
};
public: // construction/destruction
CppDataTypeTestProgram(CppDataTypeTest::CppDataTypeTestComponent& cppDataTypeTestComponentArg, const String& name);
CppDataTypeTestProgram(const CppDataTypeTestProgram& arg) = delete;
virtual ~CppDataTypeTestProgram() = default;
public: // operators
CppDataTypeTestProgram& operator=(const CppDataTypeTestProgram& arg) = delete;
public: // properties
public: // operations
void Execute() override;
public: /* Ports
=====
Ports are defined in the following way:
//#port
//#attributes(Input|Retain)
//#name(NameOfPort)
boolean portField;
The attributes comment define the port attributes and is optional.
The name comment defines the name of the port and is optional. Default is the name of the field.
*/
//#port
//#attributes(Output|Retain)
//#name(outBoolean)
boolean outBoolean = false; //BOOL
//#port
//#attributes(Output|Retain)
//#name(outInt8)
int8 outInt8 = 0; //SINT
//#port
//#attributes(Output|Retain)
//#name(outUint8)
uint8 outUint8 = 0; //USINT
//#port
//#attributes(Output|Retain)
//#name(outInt16)
int16 outInt16 = 0; //INT
//#port
//#attributes(Output|Retain)
//#name(outUint16)
uint16 outUint16 = 0; //UINT
//#port
//#attributes(Output|Retain)
//#name(outInt32)
int32 outInt32 = 0; //DINT
//#port
//#attributes(Output|Retain)
//#name(outUint32)
uint32 outUint32 = 0; //UDINT
//#port
//#attributes(Output|Retain)
//#name(outInt64)
int64 outInt64 = 0; //LINT
//#port
//#attributes(Output|Retain)
//#name(outUint64)
uint64 outUint64 = 0; //ULINT
//#port
//#attributes(Output|Retain)
//#name(outByte)
uint8 outByte = 0; //Byte
//#port
//#attributes(Output|Retain)
//#name(outWord)
uint16 outWord = 0; //Word
//#port
//#attributes(Output|Retain)
//#name(outDword)
uint32 outDword = 0; //DWORD
//#port
//#attributes(Output|Retain)
//#name(outLword)
uint64 outLword = 0; //LWORD
//#port
//#attributes(Output|Retain)
//#name(outFloat32)
float32 outFloat32 = 0.0; //Real
//#port
//#attributes(Output|Retain)
//#name(outFloat64)
float64 outFloat64 = 0.0; //LREAL
//#port
//#attributes(Output|Retain)
//#name(outString)
StaticString<80> outString = ""; // String
//#port
//#attributes(Output|Retain)
//#name(outWString)
StaticWString<80> outWString; // WString
//#port
//#attributes(Output|Retain)
//#name(outString420)
StaticString<420> outString420 = ""; // Custom-length string
//#port
//#attributes(Output|Retain)
//#name(outWString420)
StaticWString<420> outWString420; // Custom-length wide string
//#port
//#attributes(Output|Retain)
//#name(outStruct)
s_alltypes outStruct;
//#port
//#attributes(Output|Retain)
//#name(outarrayBoolean)
boolean outarrayBoolean [10] = {false}; //BOOL
//#port
//#attributes(Output|Retain)
//#name(outarrayInt8)
int8 outarrayInt8[10] = {0}; //SINT
//#port
//#attributes(Output|Retain)
//#name(outarrayUint8)
uint8 outarrayUint8[10] = {0}; //USINT
//#port
//#attributes(Output|Retain)
//#name(outarrayInt16)
int16 outarrayInt16[10] = {0}; //INT
//#port
//#attributes(Output|Retain)
//#name(outarrayUint16)
uint16 outarrayUint16[10] = {0}; //UINT
//#port
//#attributes(Output|Retain)
//#name(outarrayInt32)
int32 outarrayInt32[10] = {0}; //DINT
//#port
//#attributes(Output|Retain)
//#name(outarrayUint32)
uint32 outarrayUint32[10] = {0}; //UDINT
//#port
//#attributes(Output|Retain)
//#name(outarrayInt64)
int64 outarrayInt64[10] = {0}; //LINT
//#port
//#attributes(Output|Retain)
//#name(outarrayUint64)
uint64 outarrayUint64[10] = {0}; //ULINT
//#port
//#attributes(Output|Retain)
//#name(outarrayByte)
uint8 outarrayByte[10] = {0}; //Byte
//#port
//#attributes(Output|Retain)
//#name(outarrayWord)
uint16 outarrayWord[10] = {0}; //Word
//#port
//#attributes(Output|Retain)
//#name(outarrayDword)
uint32 outarrayDword[10] = {0}; //DWORD
//#port
//#attributes(Output|Retain)
//#name(outarrayLword)
uint64 outarrayLword[10] = {0}; //LWORD
//#port
//#attributes(Output|Retain)
//#name(outarrayFloat32)
float32 outarrayFloat32[10] = {0.0};//Real
//#port
//#attributes(Output|Retain)
//#name(outarrayFloat64)
float64 outarrayFloat64[10] = {0.0};//LREAL
//#port
//#attributes(Output|Retain)
//#name(outarrayString)
StaticString<80> outarrayString[10] = {""}; // String
//#port
//#attributes(Output|Retain)
//#name(outarrayWString)
StaticWString<80> outarrayWString[10]; // WString
// Array of custom-length strings are currently not supported by PLCnext Engineer (version 2020.6).
private: // fields
CppDataTypeTest::CppDataTypeTestComponent& cppDataTypeTestComponent;
};
///////////////////////////////////////////////////////////////////////////////
// inline methods of class ProgramBase
inline CppDataTypeTestProgram::CppDataTypeTestProgram(CppDataTypeTest::CppDataTypeTestComponent& cppDataTypeTestComponentArg, const String& name)
: ProgramBase(name)
, cppDataTypeTestComponent(cppDataTypeTestComponentArg)
{
}
} // end of namespace CppDataTypeTest