|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
- using Alphaleonis.Win32.Security;
- using System;
- using System.Diagnostics.CodeAnalysis;
- using System.Globalization;
- using System.Runtime.InteropServices;
- using System.Security;
-
- namespace Alphaleonis.Win32.Filesystem
- {
- internal static partial class NativeMethods
- {
- internal static uint GetHighOrderDword(long highPart)
- {
- return (uint)((highPart >> 32) & 0xFFFFFFFF);
- }
-
- internal static uint GetLowOrderDword(long lowPart)
- {
- return (uint)(lowPart & 0xFFFFFFFF);
- }
-
- /// <summary>Check is the current handle is not null, not closed and not invalid.</summary>
- /// <param name="handle">The current handle to check.</param>
- /// <param name="throwException"><see langword="true"/> will throw an <exception cref="Resources.Handle_Is_Invalid"/>, <see langword="false"/> will not raise this exception..</param>
- /// <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
- /// <exception cref="ArgumentException"/>
- internal static bool IsValidHandle(SafeHandle handle, bool throwException = true)
- {
- if (handle == null || handle.IsClosed || handle.IsInvalid)
- {
- if (handle != null)
- handle.Close();
-
- if (throwException)
- throw new ArgumentException(Resources.Handle_Is_Invalid);
-
- return false;
- }
-
- return true;
- }
-
- /// <summary>Check is the current handle is not null, not closed and not invalid.</summary>
- /// <param name="handle">The current handle to check.</param>
- /// <param name="lastError">The result of Marshal.GetLastWin32Error()</param>
- /// <param name="throwException"><see langword="true"/> will throw an <exception cref="Resources.Handle_Is_Invalid_Win32Error"/>, <see langword="false"/> will not raise this exception..</param>
- /// <returns><see langword="true"/> on success, <see langword="false"/> otherwise.</returns>
- /// <exception cref="ArgumentException"/>
- internal static bool IsValidHandle(SafeHandle handle, int lastError, bool throwException = true)
- {
- if (handle == null || handle.IsClosed || handle.IsInvalid)
- {
- if (handle != null)
- handle.Close();
-
- if (throwException)
- throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, Resources.Handle_Is_Invalid_Win32Error, lastError));
-
- return false;
- }
-
- return true;
- }
-
- internal static long LuidToLong(Luid luid)
- {
- ulong high = (((ulong)luid.HighPart) << 32);
- ulong low = (((ulong)luid.LowPart) & 0x00000000FFFFFFFF);
- return unchecked((long)(high | low));
- }
-
- internal static Luid LongToLuid(long lluid)
- {
- return new Luid { HighPart = (uint)(lluid >> 32), LowPart = (uint)(lluid & 0xFFFFFFFF) };
- }
-
- /// <summary>
- /// Controls whether the system will handle the specified types of serious errors or whether the process will handle them.
- /// </summary>
- /// <remarks>
- /// Because the error mode is set for the entire process, you must ensure that multi-threaded applications do not set different error-
- /// mode attributes. Doing so can lead to inconsistent error handling.
- /// </remarks>
- /// <remarks>Minimum supported client: Windows XP [desktop apps only].</remarks>
- /// <remarks>Minimum supported server: Windows Server 2003 [desktop apps only].</remarks>
- /// <param name="uMode">The mode.</param>
- /// <returns>The return value is the previous state of the error-mode bit attributes.</returns>
- [SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
- [DllImport("kernel32.dll", SetLastError = false, CharSet = CharSet.Unicode), SuppressUnmanagedCodeSecurity]
- [return: MarshalAs(UnmanagedType.U4)]
- private static extern ErrorMode SetErrorMode(ErrorMode uMode);
-
- /// <summary>
- /// Controls whether the system will handle the specified types of serious errors or whether the calling thread will handle them.
- /// </summary>
- /// <remarks>
- /// Because the error mode is set for the entire process, you must ensure that multi-threaded applications do not set different error-
- /// mode attributes. Doing so can lead to inconsistent error handling.
- /// </remarks>
- /// <remarks>Minimum supported client: Windows 7 [desktop apps only].</remarks>
- /// <remarks>Minimum supported server: Windows Server 2008 R2 [desktop apps only].</remarks>
- /// <param name="dwNewMode">The new mode.</param>
- /// <param name="lpOldMode">[out] The old mode.</param>
- /// <returns>The return value is the previous state of the error-mode bit attributes.</returns>
- [SuppressMessage("Microsoft.Security", "CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule")]
- [DllImport("kernel32.dll", SetLastError = false, CharSet = CharSet.Unicode), SuppressUnmanagedCodeSecurity]
- [return: MarshalAs(UnmanagedType.Bool)]
- private static extern bool SetThreadErrorMode(ErrorMode dwNewMode, [MarshalAs(UnmanagedType.U4)] out ErrorMode lpOldMode);
-
- internal static long ToLong(uint highPart, uint lowPart)
- {
- return (((long)highPart) << 32) | (((long)lowPart) & 0xFFFFFFFF);
- }
- }
- }
|