/SharpMedia/libs/Utilities/DarkGray.Net/WNet.cs

# · C# · 300 lines · 274 code · 16 blank · 10 comment · 15 complexity · 914189cdeae1d1fa8964fea95368457c MD5 · raw file

  1. using System;
  2. using System.Runtime.InteropServices;
  3. using DarkGray.Win32;
  4. using System.Windows.Forms;
  5. using System.Text;
  6. namespace DarkGray.Net
  7. {
  8. /// <summary>
  9. /// Summary description for WNet.
  10. /// </summary>
  11. public class WNet
  12. {
  13. public static void AddConnection(string remoteName, string password, string localName)
  14. {
  15. GenerateExceptionIfError(WNet_Api.WNetAddConnection(remoteName, password, localName));
  16. }
  17. public static void AddConnection(NetResource netResource, string password, string userName,
  18. ConnectionFlags options)
  19. {
  20. GenerateExceptionIfError(WNet_Api.WNetAddConnection2(netResource, password, userName, options));
  21. }
  22. public static void AddConnection(Control ownerWindow, NetResource netResource, string password,
  23. string userName, ConnectionFlags options)
  24. {
  25. GenerateExceptionIfError(WNet_Api.WNetAddConnection3(Common.ControlToHwnd(ownerWindow),
  26. netResource, password, userName, options));
  27. }
  28. public static void CancelConnection(string name, bool isForce)
  29. {
  30. GenerateExceptionIfError(WNet_Api.WNetCancelConnection(name, isForce));
  31. }
  32. public static void CancelConnection(string name, ConnectionFlags options, bool isForce)
  33. {
  34. GenerateExceptionIfError(WNet_Api.WNetCancelConnection2(name, options, isForce));
  35. }
  36. public static DialogResult ConnectionDialog(Control ownerWindow, ResourceType type)
  37. {
  38. return MakeDialogResultOrGenerateException(WNet_Api.WNetConnectionDialog(
  39. Common.ControlToHwnd(ownerWindow),
  40. type));
  41. }
  42. public static DialogResult ConnectionDialog(ConnectDialogInfo info)
  43. {
  44. info.StructureSize = Marshal.SizeOf(typeof(ConnectDialogInfo));
  45. return MakeDialogResultOrGenerateException(WNet_Api.WNetConnectionDialog1(info));
  46. }
  47. public static DialogResult DisconnectWithDialog(Control ownerWindow, ResourceType type)
  48. {
  49. return MakeDialogResultOrGenerateException(WNet_Api.WNetDisconnectDialog(
  50. Common.ControlToHwnd(ownerWindow), type));
  51. }
  52. // public static DialogResult DisconnectWithDialog(DisconnectDialogInfo info)
  53. // {
  54. // info.Size = Marshal.SizeOf(typeof(DisconnectDialogInfo));
  55. // return MakeDialogResultOrGenerateException(WNet_Api.WNetDisconnectDialog1(info));
  56. // }
  57. public static string GetConnectionRemoteName(string localName)
  58. {
  59. int length = 0;
  60. GenerateExceptionIfError(WNet_Api.WNetGetConnection(localName, null, ref length), WNetErrors.NoError, WNetErrors.NoMoreData);
  61. StringBuilder remoteName = new StringBuilder(length);
  62. GenerateExceptionIfError(WNet_Api.WNetGetConnection(localName, remoteName, ref length));
  63. return remoteName.ToString();
  64. }
  65. public static string GetConnection(string localName)
  66. {
  67. return GetConnectionRemoteName(localName);
  68. }
  69. public static void GetLastError(out int errorCode, out string errorText, out string providerName)
  70. {
  71. const int maxLength = 1000;
  72. StringBuilder text = new StringBuilder(maxLength);
  73. StringBuilder provider = new StringBuilder(maxLength);
  74. GenerateExceptionIfError(WNet_Api.WNetGetLastError(out errorCode, out text, text.Capacity,
  75. out provider, provider.Capacity));
  76. errorText = text.ToString();
  77. providerName = provider.ToString();
  78. }
  79. public static NetInfo GetNetworkInformation(string provider)
  80. {
  81. NetInfo netInfo = new NetInfo();
  82. netInfo.StructureSize = Marshal.SizeOf(typeof(NetInfo));
  83. GenerateExceptionIfError(WNet_Api.WNetGetNetworkInformation(provider, netInfo));
  84. return netInfo;
  85. }
  86. public static string GetProviderName(NetworkType netType)
  87. {
  88. int length = 0;
  89. GenerateExceptionIfError(WNet_Api.WNetGetProviderName(netType, null, ref length), WNetErrors.NoError, WNetErrors.NoMoreData);
  90. StringBuilder providerName = new StringBuilder(length);
  91. GenerateExceptionIfError(WNet_Api.WNetGetProviderName(netType, providerName, ref length));
  92. return providerName.ToString();
  93. }
  94. public static string GetUser(string name)
  95. {
  96. int length = 0;
  97. GenerateExceptionIfError(WNet_Api.WNetGetUser(name, null, ref length), WNetErrors.NoError, WNetErrors.NoMoreData);
  98. StringBuilder user = new StringBuilder(length);
  99. GenerateExceptionIfError(WNet_Api.WNetGetUser(name, user, ref length));
  100. return user.ToString();
  101. }
  102. public static ConnectInfo GetConnectionPerformance(NetResource netResource)
  103. {
  104. ConnectInfo info = new ConnectInfo();
  105. info.StructureSize = Marshal.SizeOf(typeof(ConnectInfo));
  106. GenerateExceptionIfError(WNet_Api.MultinetGetConnectionPerformance(netResource, info));
  107. return info;
  108. }
  109. public static ConnectInfo MultinetGetConnectionPerformance(NetResource netResource)
  110. {
  111. return GetConnectionPerformance(netResource);
  112. }
  113. public static NetResource GetResourceInformation(NetResource netResource, out string path)
  114. {
  115. int length = 0;
  116. GenerateExceptionIfError(WNet_Api.WNetGetResourceInformation(netResource, IntPtr.Zero, ref length, out path), WNetErrors.NoError, WNetErrors.NoMoreData);
  117. IntPtr buffer = Marshal.AllocCoTaskMem(length);
  118. try
  119. {
  120. GenerateExceptionIfError(WNet_Api.WNetGetResourceInformation(netResource, buffer, ref length, out path));
  121. return (NetResource)Marshal.PtrToStructure(buffer, typeof(NetResource));
  122. }
  123. finally
  124. {
  125. Marshal.FreeCoTaskMem(buffer);
  126. }
  127. }
  128. public static NetResource GetResourceInformation(NetResource netResource)
  129. {
  130. string path;
  131. return GetResourceInformation(netResource, out path);
  132. }
  133. public static NetResource GetResourceParent(NetResource netResource)
  134. {
  135. int length = 0;
  136. GenerateExceptionIfError(WNet_Api.WNetGetResourceParent(netResource, IntPtr.Zero, ref length), WNetErrors.NoError, WNetErrors.NoMoreData);
  137. IntPtr buffer = Marshal.AllocCoTaskMem(length);
  138. try
  139. {
  140. GenerateExceptionIfError(WNet_Api.WNetGetResourceParent(netResource, buffer, ref length));
  141. return (NetResource)Marshal.PtrToStructure(buffer, typeof(NetResource));
  142. }
  143. finally
  144. {
  145. Marshal.FreeCoTaskMem(buffer);
  146. }
  147. }
  148. public static string GetUniversalName(string localPath)
  149. {
  150. int length = 0;
  151. //WNetGetUniversalName don't allow buffer is null
  152. IntPtr dummyBuffer = Marshal.AllocCoTaskMem(5);
  153. try
  154. {
  155. GenerateExceptionIfError(WNet_Api.WNetGetUniversalName(localPath, WNet_Api.NameInfoLevel.Universal, dummyBuffer, ref length), WNetErrors.NoError, WNetErrors.NoMoreData);
  156. }
  157. finally
  158. {
  159. Marshal.FreeCoTaskMem(dummyBuffer);
  160. }
  161. IntPtr buffer = Marshal.AllocCoTaskMem(length);
  162. try
  163. {
  164. GenerateExceptionIfError(WNet_Api.WNetGetUniversalName(localPath, WNet_Api.NameInfoLevel.Universal, buffer, ref length));
  165. UniversalNameInfo nameInfo = (UniversalNameInfo)Marshal.PtrToStructure(buffer, typeof(UniversalNameInfo));
  166. return nameInfo.UniversalName;
  167. }
  168. finally
  169. {
  170. Marshal.FreeCoTaskMem(buffer);
  171. }
  172. }
  173. public static RemoteNameInfo GetRemoteUniversalName(string localPath)
  174. {
  175. int length = 0;
  176. //WNetGetUniversalName don't allow buffer is null
  177. IntPtr dummyBuffer = Marshal.AllocCoTaskMem(5);
  178. try
  179. {
  180. GenerateExceptionIfError(WNet_Api.WNetGetUniversalName(localPath, WNet_Api.NameInfoLevel.Remote, dummyBuffer, ref length), WNetErrors.NoError, WNetErrors.NoMoreData);
  181. }
  182. finally
  183. {
  184. Marshal.FreeCoTaskMem(dummyBuffer);
  185. }
  186. IntPtr buffer = Marshal.AllocCoTaskMem(length);
  187. try
  188. {
  189. GenerateExceptionIfError(WNet_Api.WNetGetUniversalName(localPath, WNet_Api.NameInfoLevel.Remote, buffer, ref length));
  190. return (RemoteNameInfo)Marshal.PtrToStructure(buffer, typeof(RemoteNameInfo));
  191. }
  192. finally
  193. {
  194. Marshal.FreeCoTaskMem(buffer);
  195. }
  196. }
  197. public static string UseConnection(Control ownerWindow, NetResource netResource,
  198. string password, string userId, ConnectionFlags flags)
  199. {
  200. StringBuilder accessName = new StringBuilder(0);
  201. int length = 0;
  202. int result = 0;
  203. GenerateExceptionIfError(WNet_Api.WNetUseConnection(Common.ControlToHwnd(ownerWindow), netResource,
  204. password, userId, flags, accessName, ref length, ref result), WNetErrors.NoError, WNetErrors.NoMoreData);
  205. accessName = new StringBuilder(length);
  206. GenerateExceptionIfError(WNet_Api.WNetUseConnection(Common.ControlToHwnd(ownerWindow), netResource,
  207. password, userId, flags, accessName, ref length, ref result));
  208. return accessName.ToString();
  209. }
  210. public static NetResource[] EnumResources(ResourceScope scope, ResourceType type,
  211. ResourceUsage usage, NetResource target)
  212. {
  213. IntPtr enumHandle;
  214. GenerateExceptionIfError(WNet_Api.WNetOpenEnum(scope, type, usage, target, out enumHandle));
  215. try
  216. {
  217. const int maxBufferSize = 20000;
  218. IntPtr buffer = Marshal.AllocCoTaskMem(maxBufferSize);
  219. try
  220. {
  221. NetResource[] results = new NetResource[]{};
  222. for (;;)
  223. {
  224. int bufferSize = maxBufferSize;
  225. int count = -1;
  226. int error = WNet_Api.WNetEnumResource(enumHandle, ref count, buffer, ref bufferSize);
  227. if (error == WNetErrors.NoMoreItems)
  228. break;
  229. if (error != WNetErrors.NoError)
  230. GenerateException(error);
  231. if (count < 0)
  232. continue;
  233. int index = results.Length;
  234. results = Realloc(results, index + count);
  235. for (int i = 0; i < count; ++i)
  236. {
  237. results[index + i] = (NetResource)Marshal.PtrToStructure(new IntPtr(buffer.ToInt64() + i * Marshal.SizeOf(typeof(NetResource))), typeof(NetResource));
  238. }
  239. }
  240. return results;
  241. }
  242. finally
  243. {
  244. Marshal.FreeCoTaskMem(buffer);
  245. }
  246. }
  247. finally
  248. {
  249. WNet_Api.WNetCloseEnum(enumHandle);
  250. }
  251. }
  252. static NetResource[] Realloc(NetResource[] resources, int newSize)
  253. {
  254. NetResource[] results = new NetResource[newSize];
  255. Array.Copy(resources, results, 0);
  256. return results;
  257. }
  258. static void GenerateExceptionIfError(int error)
  259. {
  260. if (error == WNetErrors.NoError)
  261. return;
  262. GenerateException(error);
  263. }
  264. static void GenerateExceptionIfError(int error, params int[] successErrorCodes)
  265. {
  266. foreach (int successCode in successErrorCodes)
  267. if (error == successCode)
  268. return;
  269. GenerateException(error);
  270. }
  271. static DialogResult MakeDialogResultOrGenerateException(int error)
  272. {
  273. if (error == -1)
  274. return DialogResult.Cancel;
  275. if (error != WNetErrors.NoError)
  276. GenerateException(error);
  277. return DialogResult.OK;
  278. }
  279. static void GenerateException(int error)
  280. {
  281. throw new WNetException(error, Common.GetSystemErrorString(error));
  282. }
  283. }
  284. }