/* 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 System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
namespace Alphaleonis.Win32.Filesystem
{
internal static partial class NativeMethods
{
/// Represents the number of 100-nanosecond intervals since January 1, 1601. This structure is a 64-bit value.
[SerializableAttribute]
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
internal struct FILETIME
{
#region Fields
private readonly uint dwLowDateTime;
private readonly uint dwHighDateTime;
#endregion // Fields
#region Methods
/// Converts a value to long.
public static implicit operator long(FILETIME ft)
{
return ft.ToLong();
}
/// Converts a value to long.
[SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId = "long")]
public long ToLong()
{
return NativeMethods.ToLong(dwHighDateTime, dwLowDateTime);
}
#endregion
#region Equality
#region Equals
/// Determines whether the specified Object is equal to the current Object.
/// Another object to compare to.
/// if the specified Object is equal to the current Object; otherwise, .
public override bool Equals(object obj)
{
if (obj == null || GetType() != obj.GetType())
return false;
FILETIME other = obj is FILETIME ? (FILETIME)obj : new FILETIME();
return (other.dwHighDateTime.Equals(dwHighDateTime) &&
other.dwLowDateTime.Equals(dwLowDateTime));
}
#endregion // Equals
#region GetHashCode
/// Serves as a hash function for a particular type.
/// A hash code for the current Object.
public override int GetHashCode()
{
unchecked
{
int hash = 17;
hash = hash * 23 + dwHighDateTime.GetHashCode();
hash = hash * 11 + dwLowDateTime.GetHashCode();
return hash;
}
}
#endregion // GetHashCode
#region ==
/// Implements the operator ==
/// A.
/// B.
/// The result of the operator.
public static bool operator ==(FILETIME left, FILETIME right)
{
return left.Equals(right);
}
#endregion // ==
#region !=
/// Implements the operator !=
/// A.
/// B.
/// The result of the operator.
public static bool operator !=(FILETIME left, FILETIME right)
{
return !(left == right);
}
#endregion // !=
#endregion // Equality
}
}
}