| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- //
- // UniqueId.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- // Jonathan Pryor <[email protected]>
- //
- // Copyright (C) 2005,2007,2009 Novell, Inc. http://www.novell.com
- //
- // 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.Collections.Generic;
- using System.Security;
- namespace System.Xml
- {
- public class UniqueId
- {
- Guid guid;
- string id;
- public UniqueId ()
- : this (Guid.NewGuid ())
- {
- }
- public UniqueId (byte [] id)
- : this (id, 0)
- {
- }
- public UniqueId (Guid id)
- {
- this.guid = id;
- }
- public UniqueId (string value)
- {
- if (value == null)
- throw new ArgumentNullException ("value cannot be null", "value");
- if (value.Length == 0)
- throw new FormatException ("UniqueId cannot be zero length");
- this.id = value;
- }
- public UniqueId (byte [] id, int offset)
- {
- if (id == null)
- throw new ArgumentNullException ();
- if (offset < 0)
- throw new ArgumentOutOfRangeException ("offset");
- if (offset >= id.Length)
- throw new ArgumentException ("id too small.", "offset");
- if (id.Length - offset != 16)
- throw new ArgumentException ("id and offset provide less than 16 bytes");
- if (offset == 0)
- guid = new Guid (id);
- else {
- List<byte> buf = new List<byte> (id);
- buf.RemoveRange (0, offset);
- guid = new Guid (buf.ToArray ());
- }
- }
- public UniqueId (char [] id, int offset, int count)
- {
- if (id == null)
- throw new ArgumentNullException ("id");
- if (offset < 0 || offset >= id.Length)
- throw new ArgumentOutOfRangeException ("offset");
- if (count < 0 || id.Length - offset < count)
- throw new ArgumentOutOfRangeException ("count");
- if (count == 0)
- throw new FormatException ();
- // Does it start with "urn:uuid:"? If so, it's a Guid.
- if (count > 8 && id [offset] == 'u' && id [offset+1] == 'r' &&
- id [offset+2] == 'n' && id [offset+3] == ':' &&
- id [offset+4] == 'u' && id [offset+5] == 'u' &&
- id [offset+6] == 'i' && id [offset+7] == 'd' &&
- id [offset+8] == ':') {
- if (count != 45)
- throw new ArgumentOutOfRangeException ("Invalid Guid");
- this.guid = new Guid (new string (id, offset+9, count-9));
- } else
- this.id = new string (id, offset, count);
- }
- public int CharArrayLength {
- get {return id != null ? id.Length : 45;}
- }
- public bool IsGuid {
- get { return guid != default (Guid); }
- }
- public override bool Equals (Object obj)
- {
- UniqueId other = obj as UniqueId;
- if (other == null)
- return false;
- if (IsGuid && other.IsGuid) {
- return guid.Equals (other.guid);
- }
- return id == other.id;
- }
- [MonoTODO ("Determine semantics when IsGuid==true")]
- public override int GetHashCode ()
- {
- return id != null ? id.GetHashCode () : guid.GetHashCode ();
- }
- public static bool operator == (UniqueId id1, UniqueId id2)
- {
- return object.Equals (id1, id2);
- }
- public static bool operator != (UniqueId id1, UniqueId id2)
- {
- return ! (id1 == id2);
- }
- public int ToCharArray (char [] array, int offset)
- {
- if (array == null)
- throw new ArgumentNullException ("array");
- if (offset < 0 || offset >= array.Length)
- throw new ArgumentOutOfRangeException ("offset");
- string s = ToString ();
- s.CopyTo (0, array, offset, s.Length);
- return s.Length;
- }
- public override string ToString ()
- {
- if (id == null)
- return "urn:uuid:" + guid;
- return id;
- }
- public bool TryGetGuid (out Guid guid)
- {
- if (IsGuid) {
- guid = this.guid;
- return true;
- } else {
- guid = default (Guid);
- return false;
- }
- }
- public bool TryGetGuid (byte [] buffer, int offset)
- {
- if (!IsGuid)
- return false;
- if (buffer == null)
- throw new ArgumentNullException ("buffer");
- if (offset < 0 || offset >= buffer.Length)
- throw new ArgumentOutOfRangeException ("offset");
- if (buffer.Length - offset < 16)
- throw new ArgumentOutOfRangeException ("offset");
- guid.ToByteArray ().CopyTo (buffer, offset);
- return true;
- }
- }
- }
|