XstarS.GuidGenerators 2.0.0-preview-02.5

This is a prerelease version of XstarS.GuidGenerators.
There is a newer version of this package available.
See the version list below for details.
dotnet add package XstarS.GuidGenerators --version 2.0.0-preview-02.5
NuGet\Install-Package XstarS.GuidGenerators -Version 2.0.0-preview-02.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XstarS.GuidGenerators" Version="2.0.0-preview-02.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XstarS.GuidGenerators --version 2.0.0-preview-02.5
#r "nuget: XstarS.GuidGenerators, 2.0.0-preview-02.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install XstarS.GuidGenerators as a Cake Addin
#addin nuget:?package=XstarS.GuidGenerators&version=2.0.0-preview-02.5&prerelease

// Install XstarS.GuidGenerators as a Cake Tool
#tool nuget:?package=XstarS.GuidGenerators&version=2.0.0-preview-02.5&prerelease

.NET GUID Generator

Provides RFC 4122 UUID and RFC4122bis UUIDREV (draft) compliant GUID generators for .NET platform.

RFC 4122 UUID Standard

RFC 4122 defines the following five versions of UUID:

  • Version 1: The time-based version, contains a 60-bit timestamp and a 12-bit MAC address
  • Version 2: DCE Security version, contains a 28-bit timestamp, a 12-bit MAC address and a 32-bit local ID
  • Version 3: The name-based version, using MD5 hashing to compute the hash of the namespace and name
  • Version 4: The randomly or pseudo-andomly generated version, equivalent to Guid.NewGuid() in .NET
  • Version 5: The name-based version, using SHA-1 hashing to compute the hash of the namespace and name

There is also a special Nil UUID whose bytes are all 0x00s, which is equivalent to Guid.Empty in .NET.

RFC4122bis UUIDREV Draft

RFC4122bis UUIDREV defines the following three versions of UUID:

  • Version 6: The reordered time-based version, field-compatible with Version 1 except that the timestamp is reordered to big-endian order
  • Version 7: The Unix Epoch time-based version, contains a 48-bit timestamp and a 74-bit random number, field-compatible with ULID
  • Version 8: Reserved for custom UUID formats, fields except the variant and version are user-defined

There is also a special Max UUID whose bytes are all 0xffs, which has no equivalent implementation in .NET (provided in this project).

GUID Generator Library Usage

Get Generator Instance by Static Properties

using XNetEx.Guids;
using XNetEx.Guids.Generators;

// time-based GUID generation.
var guidV1 = GuidGenerator.Version1.NewGuid();
// 3944a871-aa14-11ed-8791-a9a9a46de54f

// name-based GUID generation.
var guidV5 = GuidGenerator.Version5.NewGuid(GuidNamespaces.Dns, "github.com");
// 6fca3dd2-d61d-58de-9363-1574b382ea68s

// Unix time-based GUID generation.
var guidV7 = GuidGenerator.Version7.NewGuid();
// 018640c6-0dc9-7189-a644-31acdba4cabc

Get Generator Instance by the Factory Method

using XNetEx.Guids;
using XNetEx.Guids.Generators;

// generate time-based GUID generation.
var guidV1 = GuidGenerator.OfVersion(1).NewGuid();
// 3944a871-aa14-11ed-8791-a9a9a46de54f

// generate name-based GUID.
var guidV5 = GuidGenerator.OfVersion(5).NewGuid(GuidNamespaces.Dns, "github.com");
// 6fca3dd2-d61d-58de-9363-1574b382ea68s

// generate Unix time-based GUID.
var guidV7 = GuidGenerator.OfVersion(7).NewGuid();
// 018640c6-0dc9-7189-a644-31acdba4cabc

GUID Generator State Storage

RFC 4122 Section 4.2.1

Optional support and requires configuration to enable:

using System;
using System.IO;
using XNetEx.Guids.Generators;

// listen state storage exceptions.
GuidGenerator.StateStorageException += (sender, e) =>
{
    if ((e.OperationType != FileAccess.Read) ||
        (e.Exception is not FileNotFoundException))
    {
        Console.Error.WriteLine(e.Exception);
    }
};
// set storage file path and load state.
var loadResult = GuidGenerator.SetStateStorageFile("state.bin");

Component-Based GUID Building

using System;
using XNetEx.Guids;

// build time-based GUID.
var guidV6 = Guid.Empty
    .ReplaceVariant(GuidVariant.Rfc4122)
    .ReplaceVersion(GuidVersion.Version6)
    .ReplaceTimestamp(new DateTime(0x08BEFFD14FDBF810, DateTimeKind.Utc))
    .ReplaceClockSequence((short)0x00b4)
    .ReplaceNodeId(new byte[] { 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8 });
    // 1d19dad6-ba7b-6810-80b4-00c04fd430c8

// build Unix time-based GUID.
var guidV7 = Guid.NewGuid()
    .ReplaceVersion(GuidVersion.Version7)
    .ReplaceTimestamp(new DateTime(0x08D9F638A666EB00, DateTimeKind.Utc));
    // 017f22e2-79b0-774a-8e21-a60c1ca56e82

Performance Benchmark

BenchmarkDotNet=v0.13.1, OS=Windows 10.0.22621
AMD Ryzen 7 5800H with Radeon Graphics, 1 CPU, 16 logical and 8 physical cores
.NET SDK=7.0.102
  [Host]     : .NET 6.0.13 (6.0.1322.58009), X64 RyuJIT
  DefaultJob : .NET 6.0.13 (6.0.1322.58009), X64 RyuJIT
Method GuidCount Mean StdDev Ratio Allocated
GuidNewGuid 1 46.657 ns 1.5125 ns 1.00 -
EmptyGenerate 1 3.384 ns 0.0309 ns 0.07 -
GuidV1Generate 1 101.091 ns 0.0871 ns 2.15 -
GuidV2Generate 1 101.349 ns 0.2543 ns 2.17 -
GuidV3Generate 1 244.030 ns 1.5862 ns 5.20 -
GuidV4Generate 1 45.813 ns 0.2631 ns 0.98 -
GuidV5Generate 1 244.279 ns 2.2719 ns 5.21 -
GuidV6Generate 1 99.320 ns 0.0593 ns 2.12 -
GuidV7Generate 1 79.996 ns 0.4002 ns 1.70 -
GuidV8Generate 1 81.533 ns 1.8427 ns 1.74 -
MaxValueGenerate 1 2.865 ns 0.0447 ns 0.06 -
GuidNewGuid 1000 44,732.581 ns 260.6351 ns 1.00 -
EmptyGenerate 1000 1,160.406 ns 5.4831 ns 0.03 -
GuidV1Generate 1000 101,209.092 ns 138.8626 ns 2.26 5 B
GuidV2Generate 1000 101,093.713 ns 127.8971 ns 2.26 5 B
GuidV3Generate 1000 243,771.667 ns 1,458.6792 ns 5.45 -
GuidV4Generate 1000 45,142.101 ns 227.3051 ns 1.01 -
GuidV5Generate 1000 238,567.721 ns 1,080.7163 ns 5.33 -
GuidV6Generate 1000 101,066.866 ns 81.8259 ns 2.26 -
GuidV7Generate 1000 80,065.586 ns 498.4987 ns 1.79 -
GuidV8Generate 1000 80,136.844 ns 242.1536 ns 1.79 -
MaxValueGenerate 1000 1,160.861 ns 5.2551 ns 0.03 -
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on XstarS.GuidGenerators:

Package Downloads
XstarS.GuidModule

Provides RFC 4122/9562 compliant GUID operations for F#.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.4.0-preview 90 4/20/2024
2.3.1 112 3/24/2024
2.3.0 246 2/24/2024
2.2.1 242 2/8/2024
2.2.0 102 1/26/2024
2.1.2 106 1/22/2024
2.1.1 103 1/20/2024
2.1.0 116 1/12/2024
2.0.0 152 12/24/2023
2.0.0-rc-19 128 12/22/2023
2.0.0-rc-16 140 12/12/2023
2.0.0-rc-15 119 12/6/2023
2.0.0-rc-14 144 11/26/2023
2.0.0-rc-12.5 82 10/15/2023
2.0.0-rc-12 114 10/15/2023
2.0.0-rc-00 137 7/15/2023
2.0.0-preview-04.5 70 6/4/2023
2.0.0-preview-04 159 5/28/2023
2.0.0-preview-03.8 67 5/20/2023
2.0.0-preview-03.5 66 5/14/2023
2.0.0-preview-03 161 4/15/2023
2.0.0-preview-02.5 85 3/26/2023
2.0.0-preview-02 167 3/4/2023
2.0.0-preview-01 177 2/12/2023
1.14.0-preview 83 4/20/2024
1.13.0 110 2/24/2024
1.12.1 112 2/8/2024
1.12.0 85 1/26/2024
1.11.2 99 1/22/2024
1.11.1 91 1/20/2024
1.11.0 94 1/12/2024
1.10.0 131 12/24/2023
1.9.5 129 12/22/2023
1.9.1 173 12/12/2023
1.9.0 157 12/6/2023
1.8.0 153 11/26/2023
1.7.8 171 10/15/2023
1.7.5 201 6/4/2023
1.7.1 184 5/28/2023
1.7.0 175 5/20/2023
1.6.0 179 5/13/2023
1.5.0 402 2/5/2023
1.4.0 423 1/21/2023
1.3.1 437 1/15/2023
1.3.0 441 12/31/2022
1.2.0 648 9/30/2022
1.1.0 640 8/5/2022
1.0.1 906 7/5/2022
1.0.0 497 7/3/2022