From d3bd1db8633928e52d3cad4704b987d2c3de3929 Mon Sep 17 00:00:00 2001 From: Gavin Rigsby Date: Wed, 8 Nov 2023 10:57:01 -0800 Subject: [PATCH] Added CapabilitiesExt.cs to handle custom capabilities if present in CapSupportedCaps --- src/NTwain/Capabilities.cs | 5 ++ src/NTwain/CapabilitiesExt.cs | 137 ++++++++++++++++++++++++++++++++++ src/NTwain/DataSource.cs | 4 +- 3 files changed, 144 insertions(+), 2 deletions(-) create mode 100644 src/NTwain/CapabilitiesExt.cs diff --git a/src/NTwain/Capabilities.cs b/src/NTwain/Capabilities.cs index fcc9f23..0bf9e1d 100644 --- a/src/NTwain/Capabilities.cs +++ b/src/NTwain/Capabilities.cs @@ -21,6 +21,7 @@ namespace NTwain { if (source == null) { throw new ArgumentNullException("source"); } _source = source; + } @@ -37,7 +38,9 @@ namespace NTwain using (TWCapability cap = new TWCapability(capabilityId)) { cap.ContainerType = ContainerType.OneValue; + var rc = _source.DGControl.Capability.QuerySupport(cap); + if (rc == ReturnCode.Success) { var read = CapabilityReader.ReadValue(cap); @@ -46,6 +49,8 @@ namespace NTwain { retVal = read.OneValue.ConvertToEnum(); } + + //ICapWrapper cw = new CapWrapper(_source, capabilityId, ValueExtensions.ConvertToEnum, false); } } return retVal; diff --git a/src/NTwain/CapabilitiesExt.cs b/src/NTwain/CapabilitiesExt.cs new file mode 100644 index 0000000..c6c6aa7 --- /dev/null +++ b/src/NTwain/CapabilitiesExt.cs @@ -0,0 +1,137 @@ +using NTwain.Data; +using System; +using System.Collections.Generic; + +namespace NTwain +{ + public class CapabilitiesExt : Capabilities + { + private IDataSource _source; + public CapabilitiesExt(IDataSource dataSource) : base(dataSource) { _source = dataSource; } + + private List _custom; + + public List CustomCapabilities + { + get + { + return _custom ?? LoadCustomCapabilities(); + } + } + + private List LoadCustomCapabilities() + { + List custom = new List(); + foreach (CapabilityId capId in CapSupportedCaps.GetValues()) + { + var capName = capId.ToString(); + var wrapper = GetType().GetProperty(capName); + + // not defined in Capabilites + if (wrapper == null) + { + custom.Add(capId); + } + } + return custom; + } + + + private Func boolFunc = value => new TWOneValue + { + Item = (uint)value, + ItemType = ItemType.Bool + }; + + private Func intFunc = value => new TWOneValue + { + Item = (uint)value, + ItemType = ItemType.UInt16 + }; + + private Func byteFunc = value => new TWOneValue + { + Item = value, + ItemType = ItemType.UInt8 + }; + + private Func uintFunc = value => new TWOneValue + { + Item = value, + ItemType = ItemType.UInt32 + }; + + + public object GetCap (CapabilityId Capability) + { + QuerySupports? s = QuerySupport(Capability); + bool readOnly = true; + byte b = 0; + if (s != null) + { + b = (byte)s; + if ((b & (1 << 2)) != 0) + { + readOnly = false; + } + } + + if (typeof(TValue) == typeof(string)) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToString, readOnly); + } + else if (typeof(TValue) == typeof(int)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, intFunc); + } + else if (typeof(TValue) == typeof(byte)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, byteFunc); + } + else if (typeof(TValue) == typeof(uint)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, uintFunc); + } + else if (typeof(TValue) == typeof(TWFrame)) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToFrame, readOnly); + } + else if (typeof(TValue) == typeof(BoolType)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, boolFunc); + } + else if (typeof(TValue) == typeof(TWFix32)) + { + + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToFix32, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToFix32, value => value.ToOneValue()); + + + } + else + { + throw new Exception($"Unknown defintion for type of {typeof(TValue)} in GetCap"); + } + } + } +} diff --git a/src/NTwain/DataSource.cs b/src/NTwain/DataSource.cs index d9aff4a..59351e7 100644 --- a/src/NTwain/DataSource.cs +++ b/src/NTwain/DataSource.cs @@ -255,7 +255,7 @@ namespace NTwain // } //} - private Capabilities _caps; + private CapabilitiesExt _caps; /// /// Gets the capabilities for this data source. @@ -265,7 +265,7 @@ namespace NTwain /// public ICapabilities Capabilities { - get { return _caps ?? (_caps = new Capabilities(this)); } + get { return _caps ?? (_caps = new CapabilitiesExt(this)); } }