You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
310 lines
9.3 KiB
310 lines
9.3 KiB
using Mirle.Component.MPLC.DataBlocks.DeviceRange.Interfaces;
|
|
using Mirle.Component.MPLC.DataBlocks.Interfaces;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
|
|
namespace Mirle.Component.MPLC.DataBlocks
|
|
{
|
|
/// <summary>
|
|
/// 資料區塊
|
|
/// </summary>
|
|
public class DataBlock : IDataBlock, IDisposable
|
|
{
|
|
/// <summary>
|
|
/// 建構式
|
|
/// </summary>
|
|
/// <param name="deviceRange">設備範圍介面</param>
|
|
public DataBlock(ITypeDeviceRange deviceRange)
|
|
{
|
|
DeviceRange = deviceRange;
|
|
_rawData = new byte[deviceRange.ByteArrayLength];
|
|
}
|
|
/// <summary>
|
|
/// 原始資料
|
|
/// </summary>
|
|
private readonly byte[] _rawData = new byte[1];
|
|
/// <summary>
|
|
/// 原始資料物件鎖定
|
|
/// </summary>
|
|
private readonly ReaderWriterLockSlim _rwLock = new ReaderWriterLockSlim();
|
|
/// <summary>
|
|
/// 設備範圍介面
|
|
/// </summary>
|
|
public ITypeDeviceRange DeviceRange { get; }
|
|
/// <summary>
|
|
/// 設置原始資料
|
|
/// </summary>
|
|
/// <param name="newRawData">原始資料</param>
|
|
public void SetRawData(byte[] newRawData)
|
|
{
|
|
try
|
|
{
|
|
_rwLock.EnterWriteLock();
|
|
Array.Resize(ref newRawData, _rawData.Length);
|
|
Array.Copy(newRawData, _rawData, _rawData.Length);
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitWriteLock();
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 取得原始資料
|
|
/// </summary>
|
|
/// <returns>原始資料</returns>
|
|
public byte[] GetRawData()
|
|
{
|
|
byte[] data = new byte[_rawData.Length];
|
|
try
|
|
{
|
|
_rwLock.EnterReadLock();
|
|
Array.Copy(_rawData, data, _rawData.Length);
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitReadLock();
|
|
}
|
|
return data;
|
|
}
|
|
/// <summary>
|
|
/// 取得位元
|
|
/// </summary>
|
|
/// <param name="address">位置</param>
|
|
/// <param name="value">是否成功取得</param>
|
|
/// <returns>True/False</returns>
|
|
public bool TryGetBit(string address, out bool value)
|
|
{
|
|
value = false;
|
|
try
|
|
{
|
|
_rwLock.EnterReadLock();
|
|
if (DeviceRange.TryGetByteArrayOffset(address, out int offset) && DeviceRange.TryGetByteArrayBitIndex(address, out int index))
|
|
{
|
|
ushort word = BitConverter.ToUInt16(_rawData, offset);
|
|
BitArray bitArray = new BitArray(BitConverter.GetBytes(word));
|
|
value = bitArray.Get(index);
|
|
return true;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Debug.WriteLine($"{ex}");
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitReadLock();
|
|
}
|
|
return false;
|
|
}
|
|
/// <summary>
|
|
/// 設置位元開啟
|
|
/// </summary>
|
|
/// <param name="address"></param>
|
|
/// <returns>True/False</returns>
|
|
public bool TrySetBitOn(string address)
|
|
{
|
|
return SetBit(address, true);
|
|
}
|
|
/// <summary>
|
|
/// 設置位元
|
|
/// </summary>
|
|
/// <param name="address">位元</param>
|
|
/// <param name="IsOn">是否開啟</param>
|
|
/// <returns>True/False</returns>
|
|
private bool SetBit(string address, bool IsOn)
|
|
{
|
|
try
|
|
{
|
|
_rwLock.EnterWriteLock();
|
|
if (DeviceRange.TryGetByteArrayOffset(address, out int offset) && DeviceRange.TryGetByteArrayBitIndex(address, out int index))
|
|
{
|
|
ushort word = BitConverter.ToUInt16(_rawData, offset);
|
|
BitArray bitArray = new BitArray(BitConverter.GetBytes(word));
|
|
bitArray.Set(index, IsOn);
|
|
byte[] tmpBytes = new byte[2];
|
|
bitArray.CopyTo(tmpBytes, 0);
|
|
_rawData[offset] = tmpBytes[0];
|
|
_rawData[offset + 1] = tmpBytes[1];
|
|
return true;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Debug.WriteLine($"{ex}");
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitWriteLock();
|
|
}
|
|
return false;
|
|
}
|
|
/// <summary>
|
|
/// 設置位元關閉
|
|
/// </summary>
|
|
/// <param name="address">位置</param>
|
|
/// <returns>True/False</returns>
|
|
public bool TrySetBitOff(string address)
|
|
{
|
|
return SetBit(address, false);
|
|
}
|
|
/// <summary>
|
|
/// 取得字元
|
|
/// </summary>
|
|
/// <param name="address">位置</param>
|
|
/// <param name="value">值</param>
|
|
/// <returns>True/False</returns>
|
|
public bool TryGetWord(string address, out int value)
|
|
{
|
|
value = 0;
|
|
try
|
|
{
|
|
_rwLock.EnterReadLock();
|
|
if (DeviceRange.TryGetByteArrayOffset(address, out int offset))
|
|
{
|
|
value = BitConverter.ToUInt16(_rawData, offset);
|
|
return true;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Debug.WriteLine($"{ex}");
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitReadLock();
|
|
}
|
|
return false;
|
|
}
|
|
/// <summary>
|
|
/// 設置字元
|
|
/// </summary>
|
|
/// <param name="address">位置</param>
|
|
/// <param name="value">值</param>
|
|
/// <returns>True/False</returns>
|
|
public bool TrySetWord(string address, int value)
|
|
{
|
|
try
|
|
{
|
|
_rwLock.EnterWriteLock();
|
|
if (DeviceRange.TryGetByteArrayOffset(address, out int offset))
|
|
{
|
|
byte[] tmpBytes = BitConverter.GetBytes(value);
|
|
_rawData[offset] = tmpBytes[0];
|
|
_rawData[offset + 1] = tmpBytes[1];
|
|
return true;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Debug.WriteLine($"{ex}");
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitWriteLock();
|
|
}
|
|
return false;
|
|
}
|
|
/// <summary>
|
|
/// 取得多個字元
|
|
/// </summary>
|
|
/// <param name="address">位置</param>
|
|
/// <param name="data">資料集</param>
|
|
/// <param name="length">長度</param>
|
|
/// <returns>True/False</returns>
|
|
public bool TryGetWords(string address, out int[] data, int length)
|
|
{
|
|
data = new int[length];
|
|
try
|
|
{
|
|
_rwLock.EnterReadLock();
|
|
if (DeviceRange.TryGetByteArrayOffset(address, out int offset))
|
|
{
|
|
for (int i = 0; i < length; i++)
|
|
{
|
|
data[i] = BitConverter.ToUInt16(_rawData, offset + i * 2);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Debug.WriteLine($"{ex}");
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitReadLock();
|
|
}
|
|
return false;
|
|
}
|
|
/// <summary>
|
|
/// 設置多個字元
|
|
/// </summary>
|
|
/// <param name="address">位置</param>
|
|
/// <param name="data">資料集</param>
|
|
/// <returns>True/False</returns>
|
|
public bool TrySetWords(string address, int[] data)
|
|
{
|
|
try
|
|
{
|
|
_rwLock.EnterWriteLock();
|
|
if (DeviceRange.TryGetByteArrayOffset(address, out int offset))
|
|
{
|
|
for (int i = 0; i < data.Length; i++)
|
|
{
|
|
byte[] tmpBytes = BitConverter.GetBytes(data[i]);
|
|
_rawData[offset + i * 2] = tmpBytes[0];
|
|
_rawData[offset + i * 2 + 1] = tmpBytes[1];
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Debug.WriteLine($"{ex}");
|
|
}
|
|
finally
|
|
{
|
|
_rwLock.ExitWriteLock();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
#region IDisposable Support
|
|
|
|
private bool disposedValue = false;
|
|
/// <summary>
|
|
/// 釋放資源
|
|
/// </summary>
|
|
/// <param name="disposing"></param>
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!disposedValue)
|
|
{
|
|
if (disposing)
|
|
{
|
|
_rwLock?.Dispose();
|
|
}
|
|
disposedValue = true;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 解構式
|
|
/// </summary>
|
|
~DataBlock()
|
|
{
|
|
Dispose(false);
|
|
}
|
|
/// <summary>
|
|
/// 釋放資源
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|