mirror of
https://github.com/bitwarden/server.git
synced 2024-11-29 13:25:17 +01:00
41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
|
using System;
|
|||
|
|
|||
|
namespace Bit.Core.Utilities
|
|||
|
{
|
|||
|
public static class CoreHelpers
|
|||
|
{
|
|||
|
private static readonly long _baseDateTicks = new DateTime(1900, 1, 1).Ticks;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Generate sequential Guid for Sql Server.
|
|||
|
/// ref: https://github.com/nhibernate/nhibernate-core/blob/master/src/NHibernate/Id/GuidCombGenerator.cs
|
|||
|
/// </summary>
|
|||
|
/// <returns>A comb Guid.</returns>
|
|||
|
public static Guid GenerateComb()
|
|||
|
{
|
|||
|
var guidArray = Guid.NewGuid().ToByteArray();
|
|||
|
|
|||
|
var now = DateTime.UtcNow;
|
|||
|
|
|||
|
// Get the days and milliseconds which will be used to build the byte string
|
|||
|
var days = new TimeSpan(now.Ticks - _baseDateTicks);
|
|||
|
var msecs = now.TimeOfDay;
|
|||
|
|
|||
|
// Convert to a byte array
|
|||
|
// Note that SQL Server is accurate to 1/300th of a millisecond so we divide by 3.333333
|
|||
|
var daysArray = BitConverter.GetBytes(days.Days);
|
|||
|
var msecsArray = BitConverter.GetBytes((long)(msecs.TotalMilliseconds / 3.333333));
|
|||
|
|
|||
|
// Reverse the bytes to match SQL Servers ordering
|
|||
|
Array.Reverse(daysArray);
|
|||
|
Array.Reverse(msecsArray);
|
|||
|
|
|||
|
// Copy the bytes into the guid
|
|||
|
Array.Copy(daysArray, daysArray.Length - 2, guidArray, guidArray.Length - 6, 2);
|
|||
|
Array.Copy(msecsArray, msecsArray.Length - 4, guidArray, guidArray.Length - 4, 4);
|
|||
|
|
|||
|
return new Guid(guidArray);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|