我需要使用C#中的本机DLL。 DLL公开了几种我可以通过P / Invoke和几种类型访问的方法。所有这些代码都在标准的NativeMethods类中。为了简单起见,它看起来像这样:
internal static class NativeMethods
{
[DllImport("Foo.dll", SetLastError = true)]
internal static extern ErrorCode Bar(ref Baz baz);
internal enum ErrorCode { None, Foo, Baz,... }
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
internal struct Baz
{
public int Foo;
public string Bar;
}
}
为了实现松散耦合,我需要提取一个接口并使用对NativeMethods的调用来实现它:
public interface IFoo
{
void Bar(ref Baz baz);
}
public class Foo : IFoo
{
public void Bar(ref Baz baz)
{
var errorCode = NativeMethods.Bar(baz);
if (errorCode != ErrorCode.None) throw new FooException(errorCode);
}
}
现在我可以在我的代码中使用IFoo作为依赖项并在测试中模拟它:
public class Component : IComponent
{
public Component(IFoo foo, IService service) { ... }
}
这里似乎有些不对劲。根据FxCop,NativeMethods
必须是内部的。因此,IFoo
(从NativeMethods
中提取)也是内部的,这是有道理的。但我不能把它变成内部b / c它用于公共ctor(应该保持公开)。所以:为了实现松散耦合,我必须改变组件的可见性,否则本来就是内部的。你们对此有何看法?
另一个问题:Component有方法public void DoSomehing(Bar bar)
,它使用NativeMethods.cs中定义的Bar
。为了实现这一目标,我必须公开这一点。这个,或者创建一个包裹Bar
的新NativeMethods+Bar
类。如果我采用公共方式,那么NativeMethods
也会公开,并且FxCop抱怨“嵌套类型不应该是可见的”。如果我采用包装方式......好吧,我觉得为所有“原生类型”做这件事太费劲了。哦,有第三种方法:将类型从NativeMethods移开并公开。然后FxCop会分析它们并找到所有在嵌入NativeMethods时隐藏的错误。我真的不知道这里最好的方式是什么......
答案 0 :(得分:3)
公共抽象类可能是你的朋友,而不是接口。
这可以包括内部抽象方法(指内部类型),这实际上使得无法以正常方式从程序集外部进行子类化(但是InternalsVisibleTo
将允许您创建一个假的测试)。
基本上接口没有真正设计,因为它们可能来自组件方面。
这正是我在CalendarSystem
{{1}}中为{{1}}所做的 - 它的API使用内部类型,但我想让它成为一个接口或抽象类。我写了一篇关于Noda Time访问的奇怪之处,你可能会感兴趣。
答案 1 :(得分:0)
如何提取INativeMethods
?
我们将免费获得的不完整清单:
接口与WinApi相同:
internal interface INativeMethods
{
IntPtr SendMessage(IntPtr hwnd, uint msg, IntPtr wparam, StringBuilder lparam);
bool GetWindowRect(IntPtr hwnd, out Rect rect);
IntPtr GetWindow(IntPtr hwnd, uint cmd);
bool IsWindowVisible(IntPtr hwnd);
long GetTickCount64();
int GetClassName(IntPtr hwnd, StringBuilder classNameBuffer, int maxCount);
int DwmGetWindowAttribute(IntPtr hwnd, int attribute, out Rect rect, int sizeOfRect);
bool GetWindowPlacement(IntPtr hwnd, ref WindowPlacement pointerToWindowPlacement);
int GetDeviceCaps(IntPtr hdc, int index);
}
实现是静态类的瘦代理:
internal class NativeMethodsWraper : INativeMethods
{
public IntPtr SendMessage(IntPtr hwnd, uint msg, IntPtr wparam, StringBuilder lparam)
{
return NativeMethods.SendMessage(hwnd, msg, wparam, lparam);
}
public bool GetWindowRect(IntPtr hwnd, out Rect rect)
{
return NativeMethods.GetWindowRect(hwnd, out rect);
}
public IntPtr GetWindow(IntPtr hwnd, uint cmd)
{
return NativeMethods.GetWindow(hwnd, cmd);
}
public bool IsWindowVisible(IntPtr hwnd)
{
return NativeMethods.IsWindowVisible(hwnd);
}
public long GetTickCount64()
{
return NativeMethods.GetTickCount64();
}
public int GetClassName(IntPtr hwnd, StringBuilder classNameBuffer, int maxCount)
{
return NativeMethods.GetClassName(hwnd, classNameBuffer, maxCount);
}
public int DwmGetWindowAttribute(IntPtr hwnd, int attribute, out Rect rect, int sizeOfRect)
{
return NativeMethods.DwmGetWindowAttribute(hwnd, attribute, out rect, sizeOfRect);
}
public bool GetWindowPlacement(IntPtr hwnd, ref WindowPlacement pointerToWindowPlacement)
{
return NativeMethods.GetWindowPlacement(hwnd, ref pointerToWindowPlacement);
}
public int GetDeviceCaps(IntPtr hdc, int index)
{
return NativeMethods.GetDeviceCaps(hdc, index);
}
}
让我们用P \ Invoke导入
完成此操作internal static class NativeMethods
{
[DllImport("gdi32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)]
public static extern int GetDeviceCaps(IntPtr hdc, int index);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWindowVisible(IntPtr hWnd);
[DllImport("user32.dll", CharSet = CharSet.Unicode)]
public static extern IntPtr SendMessage(IntPtr hWnd, uint msg, IntPtr wParam, [Out] StringBuilder lParam);
[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);
[DllImport("kernel32.dll")]
public static extern long GetTickCount64();
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetWindowRect(IntPtr hWnd, out Rect lpRect);
[DllImport(@"dwmapi.dll")]
public static extern int DwmGetWindowAttribute(IntPtr hwnd, int dwAttribute, out Rect pvAttribute, int cbAttribute);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetWindowPlacement(IntPtr hWnd, ref WindowPlacement lpwndpl);
}
internal class GetTickCount64TimeProvider : ITimeProvider
{
private readonly INativeMethods _nativeMethods;
public GetTickCount64TimeProvider(INativeMethods nativeMethods)
{
_nativeMethods = nativeMethods;
}
public Timestamp Now()
{
var gtc = _nativeMethods.GetTickCount64();
var getTickCountStamp = Timestamp.FromMilliseconds(gtc);
return getTickCountStamp;
}
}
很难相信,但可以通过模拟WinApi验证任何期望
[Test]
public void GetTickCount64_ShouldCall_NativeMethod()
{
var nativeMock = MockRepository.GenerateMock<INativeMethods>();
var target = GetTarget(nativeMock);
target.Now();
nativeMock.AssertWasCalled(_ => _.GetTickCount64());
}
[Test]
public void Now_ShouldReturn_Microseconds()
{
var expected = Timestamp.FromMicroseconds((long) int.MaxValue * 1000);
var nativeStub = MockRepository.GenerateStub<INativeMethods>();
nativeStub.Stub(_ => _.GetTickCount64()).Return(int.MaxValue);
var target = GetTarget(nativeStub);
var actual = target.Now();
Assert.AreEqual(expected, actual);
}
private static GetTickCount64TimeProvider GetTarget(INativeMethods nativeMock)
{
return new GetTickCount64TimeProvider(nativeMock);
}
模拟out\ref
参数可能会引起头痛,所以这里是未来参考的代码:
[Test]
public void When_WindowIsMaximized_PaddingBordersShouldBeExcludedFromArea()
{
// Top, Left are -8 when window is maximized but should be 0,0
// http://blogs.msdn.com/b/oldnewthing/archive/2012/03/26/10287385.aspx
INativeMethods nativeMock = MockRepository.GenerateStub<INativeMethods>();
var windowRectangle = new Rect() {Left = -8, Top = -8, Bottom = 1216, Right = 1936};
var expectedScreenBounds = new Rect() {Left = 0, Top = 0, Bottom = 1200, Right = 1920};
_displayInfo.Stub(_ => _.GetScreenBoundsFromWindow(windowRectangle.ToRectangle())).Return(expectedScreenBounds.ToRectangle());
var hwnd = RandomNativeHandle();
StubForMaximizedWindowState(nativeMock, hwnd);
StubForDwmRectangle(nativeMock, hwnd, windowRectangle);
WindowCoverageReader target = GetTarget(nativeMock);
var window = target.GetWindowFromHandle(hwnd);
Assert.AreEqual(WindowState.Maximized, window.WindowState);
Assert.AreEqual(expectedScreenBounds.ToRectangle(), window.Area);
}
private void StubForDwmRectangle(INativeMethods nativeMock, IntPtr hwnd, Rect rectToReturnFromWinApi)
{
var sizeOf = Marshal.SizeOf(rect);
var rect = new Rect();
nativeMock.Stub(_ =>
{
_.DwmGetWindowAttribute(
hwnd,
(int)DwmWindowAttribute.DwmwaExtendedFrameBounds,
out rect, // called with zeroed object
sizeOf);
}).OutRef(rectToReturnFromWinApi).Return(0);
}
private IntPtr RandomNativeHandle()
{
return new IntPtr(_random.Next());
}
private void StubForMaximizedWindowState(INativeMethods nativeMock, IntPtr hwnd)
{
var maximizedFlag = 3;
WindowPlacement pointerToWindowPlacement = new WindowPlacement() {ShowCmd = maximizedFlag};
nativeMock.Stub(_ => { _.GetWindowPlacement(Arg<IntPtr>.Is.Equal(hwnd), ref Arg<WindowPlacement>.Ref(new Anything(), pointerToWindowPlacement).Dummy); }).Return(true);
}