using NodaTime; namespace Foxnouns.Backend.Database; public class SnowflakeGenerator : ISnowflakeGenerator { /// /// Singleton instance of SnowflakeGenerator. Where possible, use an injected ISnowflakeGenerator instead /// (see IServiceCollection.AddSnowflakeGenerator). /// public static SnowflakeGenerator Instance { get; } = new(); private readonly byte _processId; private long _increment; public SnowflakeGenerator(int? processId = null) { processId ??= Environment.ProcessId; _processId = (byte)(processId % 32); _increment = Random.Shared.NextInt64() % 4096; } /// /// Generate a snowflake ID for the given timestamp. /// /// An optional timestamp. If null, use the current timestamp. /// A new snowflake ID. public Snowflake GenerateSnowflake(Instant? time = null) { time ??= SystemClock.Instance.GetCurrentInstant(); var increment = Interlocked.Increment(ref _increment); var threadId = Environment.CurrentManagedThreadId % 32; var timestamp = time.Value.ToUnixTimeMilliseconds() - Snowflake.Epoch; return (timestamp << 22) | (uint)(_processId << 17) | (uint)(threadId << 12) | (increment % 4096); } } public static class SnowflakeGeneratorServiceExtensions { public static IServiceCollection AddSnowflakeGenerator(this IServiceCollection services, int? processId = null) { return services.AddSingleton(new SnowflakeGenerator(processId)); } }