-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathReadFile.cs
79 lines (65 loc) · 2.11 KB
/
ReadFile.cs
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
#region Copyright
//
// 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.
//
#endregion Copyright
using Iec61131.Engineering.Prototypes.Common;
using Iec61131.Engineering.Prototypes.Methods;
using Iec61131.Engineering.Prototypes.Types;
using Iec61131.Engineering.Prototypes.Variables;
using System;
using System.Iec61131Lib;
using System.IO;
namespace ExampleLib
{
[FunctionBlock]
public class READ_FILE
{
[Input]
public bool EXECUTE;
[Output]
public bool DONE;
[Output]
public IecString80 DATA1;
[InOut, DataType("ANY")]
public Any DATA2;
private bool ExecutePreviousState; // used for rising edge detection
// Files are stored by default in the /opt/plcnext folder
private const string TextFileName = "TextFile.txt";
private const string BinaryFileName = "BinaryFile.bin";
[Initialization]
public void __Init()
{
DATA1.ctor();
}
[Execution]
public void __Process()
{
if (EXECUTE && (EXECUTE != ExecutePreviousState))
{
try
{
// read data from files
byte[] binaryData = File.ReadAllBytes(BinaryFileName);
string textData = File.ReadAllText(TextFileName);
// Put data to parameters
// ... for IecString
DATA1.s.Init(textData);
// ... for binary data
Utils.CopyByteArrayToAny(binaryData, ref DATA2);
DONE = true;
}
catch (Exception ex)
{
Console.WriteLine("Error reading a file: {0}", ex.ToString());
}
}
if (!EXECUTE)
{
DONE = false;
}
ExecutePreviousState = EXECUTE;
}
}
}