mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 11:11:23 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cdae9a60fb | ||
|
|
b1c2cdb70e | ||
|
|
95bfcf94de | ||
|
|
0a93df287d | ||
|
|
18384ff964 | ||
|
|
e4ddad685a |
@@ -10,6 +10,9 @@ namespace Examples {
|
|||||||
[Register(1000, RegisterType.R)]
|
[Register(1000, RegisterType.R)]
|
||||||
public bool TestBool1 { get; private set; }
|
public bool TestBool1 { get; private set; }
|
||||||
|
|
||||||
|
[Register(1000)]
|
||||||
|
public int TestDuplicate { get; private set; }
|
||||||
|
|
||||||
//corresponds to a XD input of the PLC
|
//corresponds to a XD input of the PLC
|
||||||
[Register(RegisterType.X, SpecialAddress.D)]
|
[Register(RegisterType.X, SpecialAddress.D)]
|
||||||
public bool TestBoolInputXD { get; private set; }
|
public bool TestBoolInputXD { get; private set; }
|
||||||
|
|||||||
@@ -76,9 +76,11 @@ namespace MewtocolNet {
|
|||||||
while (ContinousReaderRunning) {
|
while (ContinousReaderRunning) {
|
||||||
|
|
||||||
//do priority tasks first
|
//do priority tasks first
|
||||||
if (PriorityTasks.Count > 0) {
|
if (PriorityTasks != null && PriorityTasks.Count > 0) {
|
||||||
|
|
||||||
await PriorityTasks.FirstOrDefault(x => !x.IsCompleted);
|
try {
|
||||||
|
await PriorityTasks?.FirstOrDefault(x => !x.IsCompleted);
|
||||||
|
} catch (NullReferenceException) { }
|
||||||
|
|
||||||
} else if (getPLCinfoCycleCount > 25) {
|
} else if (getPLCinfoCycleCount > 25) {
|
||||||
|
|
||||||
@@ -87,9 +89,7 @@ namespace MewtocolNet {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var registerPair in Registers) {
|
foreach (var reg in Registers) {
|
||||||
|
|
||||||
var reg = registerPair.Value;
|
|
||||||
|
|
||||||
if (reg is NRegister<short> shortReg) {
|
if (reg is NRegister<short> shortReg) {
|
||||||
var lastVal = shortReg.Value;
|
var lastVal = shortReg.Value;
|
||||||
@@ -208,7 +208,7 @@ namespace MewtocolNet {
|
|||||||
toAdd = new BRegister(_address, _type, _name);
|
toAdd = new BRegister(_address, _type, _name);
|
||||||
}
|
}
|
||||||
|
|
||||||
Registers.Add(_address, toAdd);
|
Registers.Add(toAdd);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,7 +238,7 @@ namespace MewtocolNet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
toAdd.collectionType = _colType;
|
toAdd.collectionType = _colType;
|
||||||
Registers.Add(_address, toAdd);
|
Registers.Add(toAdd);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -259,7 +259,7 @@ namespace MewtocolNet {
|
|||||||
public void AddRegister (SpecialAddress _spAddress, RegisterType _type, string _name = null) {
|
public void AddRegister (SpecialAddress _spAddress, RegisterType _type, string _name = null) {
|
||||||
|
|
||||||
//as bool registers
|
//as bool registers
|
||||||
Registers.Add((int)_spAddress, new BRegister(_spAddress, _type, _name));
|
Registers.Add(new BRegister(_spAddress, _type, _name));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -270,7 +270,7 @@ namespace MewtocolNet {
|
|||||||
reg.collectionType = _colType;
|
reg.collectionType = _colType;
|
||||||
|
|
||||||
//as bool registers
|
//as bool registers
|
||||||
Registers.Add((int)_spAddress, reg);
|
Registers.Add(reg);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -299,32 +299,35 @@ namespace MewtocolNet {
|
|||||||
throw new NotSupportedException($"_lenght parameter only allowed for register of type string");
|
throw new NotSupportedException($"_lenght parameter only allowed for register of type string");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Registers.Any(x => x.Key == _address)) {
|
Register toAdd;
|
||||||
throw new NotSupportedException($"Cannot add a register multiple times, " +
|
|
||||||
$"make sure that all register attributes or AddRegister assignments have different adresses.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (regType == typeof(short)) {
|
if (regType == typeof(short)) {
|
||||||
Registers.Add(_address, new NRegister<short>(_address, _name));
|
toAdd = new NRegister<short>(_address, _name);
|
||||||
} else if (regType == typeof(ushort)) {
|
} else if (regType == typeof(ushort)) {
|
||||||
Registers.Add(_address, new NRegister<ushort>(_address, _name));
|
toAdd = new NRegister<ushort>(_address, _name);
|
||||||
} else if (regType == typeof(int)) {
|
} else if (regType == typeof(int)) {
|
||||||
Registers.Add(_address, new NRegister<int>(_address, _name));
|
toAdd = new NRegister<int>(_address, _name);
|
||||||
} else if (regType == typeof(uint)) {
|
} else if (regType == typeof(uint)) {
|
||||||
Registers.Add(_address, new NRegister<uint>(_address, _name));
|
toAdd = new NRegister<uint>(_address, _name);
|
||||||
} else if (regType == typeof(float)) {
|
} else if (regType == typeof(float)) {
|
||||||
Registers.Add(_address, new NRegister<float>(_address, _name));
|
toAdd = new NRegister<float>(_address, _name);
|
||||||
} else if (regType == typeof(string)) {
|
} else if (regType == typeof(string)) {
|
||||||
Registers.Add(_address, new SRegister(_address, _length, _name));
|
toAdd = new SRegister(_address, _length, _name);
|
||||||
} else if (regType == typeof(TimeSpan)) {
|
} else if (regType == typeof(TimeSpan)) {
|
||||||
Registers.Add(_address, new NRegister<TimeSpan>(_address, _name));
|
toAdd = new NRegister<TimeSpan>(_address, _name);
|
||||||
} else if (regType == typeof(bool)) {
|
} else if (regType == typeof(bool)) {
|
||||||
Registers.Add(_address, new BRegister(_address, RegisterType.R, _name));
|
toAdd = new BRegister(_address, RegisterType.R, _name);
|
||||||
} else {
|
} else {
|
||||||
throw new NotSupportedException($"The type {regType} is not allowed for Registers \n" +
|
throw new NotSupportedException($"The type {regType} is not allowed for Registers \n" +
|
||||||
$"Allowed are: short, ushort, int, uint, float and string");
|
$"Allowed are: short, ushort, int, uint, float and string");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (Registers.Any(x => x.GetRegisterPLCName() == toAdd.GetRegisterPLCName())) {
|
||||||
|
throw new NotSupportedException($"Cannot add a register multiple times, " +
|
||||||
|
$"make sure that all register attributes or AddRegister assignments have different adresses.");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void AddRegister<T> (Type _colType, int _address, int _length = 1, string _name = null, bool _isBitwise = false, Type _enumType = null) {
|
internal void AddRegister<T> (Type _colType, int _address, int _length = 1, string _name = null, bool _isBitwise = false, Type _enumType = null) {
|
||||||
@@ -335,12 +338,7 @@ namespace MewtocolNet {
|
|||||||
throw new NotSupportedException($"_lenght parameter only allowed for register of type string");
|
throw new NotSupportedException($"_lenght parameter only allowed for register of type string");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Registers.Any(x => x.Key == _address) && !_isBitwise) {
|
if (Registers.Any(x => x.MemoryAdress == _address) && _isBitwise) {
|
||||||
throw new NotSupportedException($"Cannot add a register multiple times, " +
|
|
||||||
$"make sure that all register attributes or AddRegister assignments have different adresses.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Registers.Any(x => x.Key == _address) && _isBitwise) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -364,15 +362,19 @@ namespace MewtocolNet {
|
|||||||
reg = new BRegister(_address, RegisterType.R, _name);
|
reg = new BRegister(_address, RegisterType.R, _name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (reg == null) {
|
if (reg == null) {
|
||||||
throw new NotSupportedException($"The type {regType} is not allowed for Registers \n" +
|
throw new NotSupportedException($"The type {regType} is not allowed for Registers \n" +
|
||||||
$"Allowed are: short, ushort, int, uint, float and string");
|
$"Allowed are: short, ushort, int, uint, float and string");
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
reg.collectionType = _colType;
|
|
||||||
|
|
||||||
Registers.Add(_address, reg);
|
if (Registers.Any(x => x.GetRegisterPLCName() == reg.GetRegisterPLCName()) && !_isBitwise) {
|
||||||
|
throw new NotSupportedException($"Cannot add a register multiple times, " +
|
||||||
|
$"make sure that all register attributes or AddRegister assignments have different adresses.");
|
||||||
|
}
|
||||||
|
|
||||||
|
reg.collectionType = _colType;
|
||||||
|
Registers.Add(reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -387,7 +389,7 @@ namespace MewtocolNet {
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public Register GetRegister (string name) {
|
public Register GetRegister (string name) {
|
||||||
|
|
||||||
return Registers.FirstOrDefault(x => x.Value.Name == name).Value;
|
return Registers.FirstOrDefault(x => x.Name == name);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -398,8 +400,8 @@ namespace MewtocolNet {
|
|||||||
/// <returns>A casted register or the <code>default</code> value</returns>
|
/// <returns>A casted register or the <code>default</code> value</returns>
|
||||||
public T GetRegister<T> (string name) where T : Register {
|
public T GetRegister<T> (string name) where T : Register {
|
||||||
try {
|
try {
|
||||||
var reg = Registers.FirstOrDefault(x => x.Value.Name == name);
|
var reg = Registers.FirstOrDefault(x => x.Name == name);
|
||||||
return reg.Value as T;
|
return reg as T;
|
||||||
} catch (InvalidCastException) {
|
} catch (InvalidCastException) {
|
||||||
return default(T);
|
return default(T);
|
||||||
}
|
}
|
||||||
@@ -414,7 +416,7 @@ namespace MewtocolNet {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public List<Register> GetAllRegisters () {
|
public List<Register> GetAllRegisters () {
|
||||||
|
|
||||||
return Registers.Values.ToList();
|
return Registers;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ namespace MewtocolNet {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The registered data registers of the PLC
|
/// The registered data registers of the PLC
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Dictionary<int, Register> Registers { get; set; } = new Dictionary<int, Register>();
|
public List<Register> Registers { get; set; } = new List<Register>();
|
||||||
|
|
||||||
private string ip;
|
private string ip;
|
||||||
private int port;
|
private int port;
|
||||||
@@ -101,6 +101,8 @@ namespace MewtocolNet {
|
|||||||
|
|
||||||
internal List<Task> PriorityTasks { get; set; } = new List<Task>();
|
internal List<Task> PriorityTasks { get; set; } = new List<Task>();
|
||||||
|
|
||||||
|
internal int SendExceptionsInRow = 0;
|
||||||
|
|
||||||
#region Initialization
|
#region Initialization
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -193,6 +195,20 @@ namespace MewtocolNet {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Closes all permanent polling
|
||||||
|
/// </summary>
|
||||||
|
public void Disconnect () {
|
||||||
|
|
||||||
|
if (!IsConnected)
|
||||||
|
return;
|
||||||
|
|
||||||
|
OnMajorSocketException();
|
||||||
|
|
||||||
|
PriorityTasks.Clear();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attaches a poller to the interface that continously
|
/// Attaches a poller to the interface that continously
|
||||||
/// polls the registered data registers and writes the values to them
|
/// polls the registered data registers and writes the values to them
|
||||||
@@ -384,6 +400,10 @@ namespace MewtocolNet {
|
|||||||
foundToUpdate.SetValue(collection, ((NRegister<int>)reg).Value);
|
foundToUpdate.SetValue(collection, ((NRegister<int>)reg).Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (foundToUpdate.PropertyType == typeof(TimeSpan)) {
|
||||||
|
foundToUpdate.SetValue(collection, ((NRegister<TimeSpan>)reg).Value);
|
||||||
|
}
|
||||||
|
|
||||||
//setting back strings
|
//setting back strings
|
||||||
|
|
||||||
if (foundToUpdate.PropertyType == typeof(string)) {
|
if (foundToUpdate.PropertyType == typeof(string)) {
|
||||||
@@ -526,7 +546,6 @@ namespace MewtocolNet {
|
|||||||
/// Calculates checksum and sends a command to the PLC then awaits results
|
/// Calculates checksum and sends a command to the PLC then awaits results
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="_msg">MEWTOCOL Formatted request string ex: %01#RT</param>
|
/// <param name="_msg">MEWTOCOL Formatted request string ex: %01#RT</param>
|
||||||
/// <param name="_close">Auto close of frame [true]%01#RT01\r [false]%01#RT</param>
|
|
||||||
/// <returns>Returns the result</returns>
|
/// <returns>Returns the result</returns>
|
||||||
public async Task<CommandResult> SendCommandAsync (string _msg) {
|
public async Task<CommandResult> SendCommandAsync (string _msg) {
|
||||||
|
|
||||||
@@ -543,7 +562,7 @@ namespace MewtocolNet {
|
|||||||
|
|
||||||
var awaittask = SendSingleBlock(_msg);
|
var awaittask = SendSingleBlock(_msg);
|
||||||
PriorityTasks.Add(awaittask);
|
PriorityTasks.Add(awaittask);
|
||||||
awaittask.Wait();
|
await awaittask;
|
||||||
|
|
||||||
PriorityTasks.Remove(awaittask);
|
PriorityTasks.Remove(awaittask);
|
||||||
response = awaittask.Result;
|
response = awaittask.Result;
|
||||||
@@ -600,9 +619,12 @@ namespace MewtocolNet {
|
|||||||
await client.ConnectAsync(ip, port);
|
await client.ConnectAsync(ip, port);
|
||||||
|
|
||||||
using (NetworkStream stream = client.GetStream()) {
|
using (NetworkStream stream = client.GetStream()) {
|
||||||
|
|
||||||
var message = _blockString.ToHexASCIIBytes();
|
var message = _blockString.ToHexASCIIBytes();
|
||||||
var messageAscii = BitConverter.ToString(message).Replace("-", " ");
|
var messageAscii = BitConverter.ToString(message).Replace("-", " ");
|
||||||
|
|
||||||
//send request
|
//send request
|
||||||
|
try {
|
||||||
using (var sendStream = new MemoryStream(message)) {
|
using (var sendStream = new MemoryStream(message)) {
|
||||||
await sendStream.CopyToAsync(stream);
|
await sendStream.CopyToAsync(stream);
|
||||||
Logger.Log($"OUT MSG: {_blockString}", LogLevel.Critical, this);
|
Logger.Log($"OUT MSG: {_blockString}", LogLevel.Critical, this);
|
||||||
@@ -610,33 +632,44 @@ namespace MewtocolNet {
|
|||||||
ASCIIEncoding enc = new ASCIIEncoding();
|
ASCIIEncoding enc = new ASCIIEncoding();
|
||||||
string characters = enc.GetString(message);
|
string characters = enc.GetString(message);
|
||||||
}
|
}
|
||||||
|
} catch (IOException) {
|
||||||
|
Logger.Log($"Critical IO exception on send", LogLevel.Critical, this);
|
||||||
|
return null;
|
||||||
|
} catch (SocketException) {
|
||||||
|
OnMajorSocketException();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
//await result
|
//await result
|
||||||
StringBuilder response = new StringBuilder();
|
StringBuilder response = new StringBuilder();
|
||||||
|
try {
|
||||||
byte[] responseBuffer = new byte[256];
|
byte[] responseBuffer = new byte[256];
|
||||||
do {
|
do {
|
||||||
int bytes = stream.Read(responseBuffer, 0, responseBuffer.Length);
|
int bytes = stream.Read(responseBuffer, 0, responseBuffer.Length);
|
||||||
response.Append(Encoding.UTF8.GetString(responseBuffer, 0, bytes));
|
response.Append(Encoding.UTF8.GetString(responseBuffer, 0, bytes));
|
||||||
}
|
}
|
||||||
while (stream.DataAvailable);
|
while (stream.DataAvailable);
|
||||||
|
} catch (IOException) {
|
||||||
|
Logger.Log($"Critical IO exception on receive", LogLevel.Critical, this);
|
||||||
|
return null;
|
||||||
|
} catch (SocketException) {
|
||||||
|
OnMajorSocketException();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
sw.Stop();
|
sw.Stop();
|
||||||
var curCycle = (int)sw.ElapsedMilliseconds;
|
var curCycle = (int)sw.ElapsedMilliseconds;
|
||||||
if (Math.Abs(CycleTimeMs - curCycle) > 2) {
|
if (Math.Abs(CycleTimeMs - curCycle) > 2) {
|
||||||
CycleTimeMs = curCycle;
|
CycleTimeMs = curCycle;
|
||||||
}
|
}
|
||||||
Logger.Log($"IN MSG ({(int)sw.Elapsed.TotalMilliseconds}ms): {_blockString}", LogLevel.Critical, this);
|
|
||||||
|
Logger.Log($"IN MSG ({(int)sw.Elapsed.TotalMilliseconds}ms): {response}", LogLevel.Critical, this);
|
||||||
return response.ToString();
|
return response.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception) {
|
} catch (SocketException) {
|
||||||
|
|
||||||
if (IsConnected) {
|
OnMajorSocketException();
|
||||||
CycleTimeMs = 0;
|
|
||||||
IsConnected = false;
|
|
||||||
Disconnected?.Invoke();
|
|
||||||
}
|
|
||||||
|
|
||||||
KillPoller();
|
|
||||||
Logger.Log("The PLC connection was closed", LogLevel.Error, this);
|
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -645,6 +678,19 @@ namespace MewtocolNet {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OnMajorSocketException () {
|
||||||
|
|
||||||
|
if (IsConnected) {
|
||||||
|
|
||||||
|
Logger.Log("The PLC connection was closed", LogLevel.Error, this);
|
||||||
|
CycleTimeMs = 0;
|
||||||
|
IsConnected = false;
|
||||||
|
Disconnected?.Invoke();
|
||||||
|
KillPoller();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<PackageId>MewtocolNet</PackageId>
|
<PackageId>MewtocolNet</PackageId>
|
||||||
<Version>0.4.0</Version>
|
<Version>0.4.3</Version>
|
||||||
<Authors>Felix Weiss</Authors>
|
<Authors>Felix Weiss</Authors>
|
||||||
<Company>Womed</Company>
|
<Company>Womed</Company>
|
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ Where is the RS232/Serial support?
|
|||||||
|
|
||||||
Install this package by using [Nuget](https://www.nuget.org/packages/MewtocolNet/) or reference
|
Install this package by using [Nuget](https://www.nuget.org/packages/MewtocolNet/) or reference
|
||||||
```XML
|
```XML
|
||||||
<PackageReference Include="MewtocolNet" Version="0.3.0" />
|
<PackageReference Include="MewtocolNet" Version="0.4.2" />
|
||||||
```
|
```
|
||||||
in your dependencies.
|
in your dependencies.
|
||||||
Alternatively use the dotnet CLI and run
|
Alternatively use the dotnet CLI and run
|
||||||
|
|||||||
Reference in New Issue
Block a user