12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace NModbus.Extensions
- {
- using System;
- using Logging;
- internal static class ModbusFactoryExtensions
- {
- private const int MinRequestFrameLength = 3;
- public static IModbusMessage CreateModbusRequest(this IModbusFactory factory, byte[] frame)
- {
- if (frame.Length < MinRequestFrameLength)
- {
- string msg = $"Argument 'frame' must have a length of at least {MinRequestFrameLength} bytes.";
- throw new FormatException(msg);
- }
- byte functionCode = frame[1];
- var functionService = factory.GetFunctionService(functionCode);
- return functionService.CreateRequest(frame);
- }
- public static IModbusFunctionService GetFunctionServiceOrThrow(this IModbusFactory factory, byte functionCode)
- {
- IModbusFunctionService service = factory.GetFunctionService(functionCode);
- if (service == null)
- {
- string msg = $"Function code {functionCode} not supported.";
- factory.Logger.Warning(msg);
- throw new NotImplementedException(msg);
- }
- return service;
- }
- }
- }
|