Come posso generare UUID in C #


Risposte:


221

Probabilmente stai cercando System.Guid.NewGuid().


33
Puoi anche eseguire String UUID = Guid.NewGuid (). ToString ()
Justin

10
GUID e UUID sono tutti uguali?
Uma Shankar Subramani,

17
@Uma Shankar Subramani: GUID = Identificatore univoco globale, UUID = Identificatore univoco universale. Parole diverse per lo stesso concetto.
Tudor,

1
Inoltre, è necessario formattare il GUID come una stringa diversa da quella predefinita, è possibile utilizzare il ToString(string format)sovraccarico che accetta uno dei numerosi identificatori di formato.
Michiel van Oosterhout,

7
Probabilmente vorrai farlo System.Guid.NewGuid().ToString("B").ToUpper()se vuoi essere compatibile con alcuni strumenti di MS Build che non sono in grado di comprendere gli UUID minuscoli. Ad esempio, vdproji progetti di installazione hanno UUID in lettere maiuscole e genereranno un'eccezione se le dai in minuscolo.
Mark Lakata,

43

Fai attenzione: mentre le rappresentazioni di stringa per .NET Guid e (RFC4122) UUID sono identiche, il formato di archiviazione non lo è. .NET scambia byte little-endian per le prime tre Guidparti.

Se si stanno trasmettendo i byte (ad esempio, come base64), non è possibile utilizzarli Guid.ToByteArray()e codificarli. Avrai bisogno Array.Reversedelle prime tre parti (Data1-3).

Lo faccio in questo modo:

var rfc4122bytes = Convert.FromBase64String("aguidthatIgotonthewire==");
Array.Reverse(rfc4122bytes,0,4);
Array.Reverse(rfc4122bytes,4,2);
Array.Reverse(rfc4122bytes,6,2);
var guid = new Guid(rfc4122bytes);

Vedi questa risposta per i dettagli specifici sull'implementazione di .NET.

Modifica : Grazie a Jeff Walker, Code Ranger, per aver sottolineato che gli interni non sono rilevanti per il formato dell'array di byte che entra e esce dal costruttore di array di byte e ToByteArray().


Nota: mi rendo conto che l'OP probabilmente significava Guid(dal momento che è destinato a un .idl), ma mi sono appena imbattuto in questo. Quindi ecco qua, Bingers e Googler.
Ben Mosher

1
Non posso provarlo, ma sei sicuro che dovresti controllare BitConverter.IsLittleEndian piuttosto che semplicemente invertire. I documenti per Guid.ToByteArray () richiamano l'ordine dei byte come little endian e affermano che il costruttore corrisponde. Le specifiche per GUID sono little endian. Penso che dovrebbe essere indipendente dall'ordine dei byte macchina.
Jeff Walker Code Ranger,

@JeffWalkerCodeRanger: da Eric Lippert, anni fa: blogs.msdn.com/b/ericlippert/archive/2004/05/25/141525.aspx
Ben Mosher

Non vedo come il link Eric Lippert risponda alla domanda. Guardando il codice Mono su github.com/mono/mono/blob/master/mcs/class/corlib/System/… mi sembra che stiano sempre assumendo che i byte siano in un piccolo ordine endiano indipendentemente dall'endianness nativo. Ciò si adatta alla mia comprensione del fatto che se dipendesse dalla piattaforma, non corrisponderebbe alla semantica dell'AP MS o alle specifiche. Osservando mscorelib disassemblato, sembra supporre che anche i byte nell'array siano in un piccolo ordine endiano.
Jeff Walker Code Ranger,

Sembra che tu abbia ragione. Mentre il formato di archiviazione interno è sensibile all'endianità, il costruttore e ToByteArraynon lo sono; sono sempre lil'ndian. Modifica in arrivo.
Ben Mosher,

3

Ecco una soluzione "sequ guid" lato client.

http://www.pinvoke.net/default.aspx/rpcrt4.uuidcreate

using System;
using System.Runtime.InteropServices;


namespace MyCompany.MyTechnology.Framework.CrossDomain.GuidExtend
{
    public static class Guid
    {

        /*

        Original Reference for Code:
        http://www.pinvoke.net/default.aspx/rpcrt4/UuidCreateSequential.html

        */


        [DllImport("rpcrt4.dll", SetLastError = true)]
        static extern int UuidCreateSequential(out System.Guid guid);

        public static System.Guid NewGuid()
        {
            return CreateSequentialUuid();
        }


        public static System.Guid CreateSequentialUuid()
        {
            const int RPC_S_OK = 0;
            System.Guid g;
            int hr = UuidCreateSequential(out g);
            if (hr != RPC_S_OK)
                throw new ApplicationException("UuidCreateSequential failed: " + hr);
            return g;
        }


        /*

        Text From URL above:

        UuidCreateSequential (rpcrt4)

        Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
        To create a page in a module other than rpcrt4, prefix the name with the module name and a period.
        . Summary
        Creates a new UUID 
        C# Signature:
        [DllImport("rpcrt4.dll", SetLastError=true)]
        static extern int UuidCreateSequential(out Guid guid);


        VB Signature:
        Declare Function UuidCreateSequential Lib "rpcrt4.dll" (ByRef id As Guid) As Integer


        User-Defined Types:
        None.

        Notes:
        Microsoft changed the UuidCreate function so it no longer uses the machine's MAC address as part of the UUID. Since CoCreateGuid calls UuidCreate to get its GUID, its output also changed. If you still like the GUIDs to be generated in sequential order (helpful for keeping a related group of GUIDs together in the system registry), you can use the UuidCreateSequential function.

        CoCreateGuid generates random-looking GUIDs like these:

        92E60A8A-2A99-4F53-9A71-AC69BD7E4D75
        BB88FD63-DAC2-4B15-8ADF-1D502E64B92F
        28F8800C-C804-4F0F-B6F1-24BFC4D4EE80
        EBD133A6-6CF3-4ADA-B723-A8177B70D268
        B10A35C0-F012-4EC1-9D24-3CC91D2B7122



        UuidCreateSequential generates sequential GUIDs like these:

        19F287B4-8830-11D9-8BFC-000CF1ADC5B7
        19F287B5-8830-11D9-8BFC-000CF1ADC5B7
        19F287B6-8830-11D9-8BFC-000CF1ADC5B7
        19F287B7-8830-11D9-8BFC-000CF1ADC5B7
        19F287B8-8830-11D9-8BFC-000CF1ADC5B7



        Here is a summary of the differences in the output of UuidCreateSequential:

        The last six bytes reveal your MAC address 
        Several GUIDs generated in a row are sequential 
        Tips & Tricks:
        Please add some!

        Sample Code in C#:
        static Guid UuidCreateSequential()
        {
           const int RPC_S_OK = 0;
           Guid g;
           int hr = UuidCreateSequential(out g);
           if (hr != RPC_S_OK)
             throw new ApplicationException
               ("UuidCreateSequential failed: " + hr);
           return g;
        }



        Sample Code in VB:
        Sub Main()
           Dim myId As Guid
           Dim code As Integer
           code = UuidCreateSequential(myId)
           If code <> 0 Then
             Console.WriteLine("UuidCreateSequential failed: {0}", code)
           Else
             Console.WriteLine(myId)
           End If
        End Sub




        */








    }
}

Parole chiave: CreateSequentialUUID SequentialUUID



Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.