UUID.st
author Claus Gittinger <cg@exept.de>
Tue, 26 Feb 2008 11:29:14 +0100
changeset 1930 935b2870be2e
parent 1923 6380ea5d7385
child 2017 d08521448dc0
permissions -rw-r--r--
arrow points reusable (class protocol)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2002 by eXept Software AG
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
ByteArray variableByteSubclass:#UUID
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    16
	classVariableNames:'CachedMACAddress Lock SequenceNumber LastTime Increment
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    17
		NameSpaceDNS NameSpaceDN NameSpaceURL NameSpaceOID'
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
1304
1c58aa764724 category
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
    19
	category:'Net-Communication-Support'
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!UUID class methodsFor:'documentation'!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 2002 by eXept Software AG
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
              All Rights Reserved
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 This software is furnished under a license and may be used
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 hereby transferred.
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
"
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    36
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    37
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    38
documentation
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    39
"
1544
6c339f276b91 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1543
diff changeset
    40
    128-bit Universal Unique Ids (UUIDs) as defined by OpenGroup/DCE
6c339f276b91 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1543
diff changeset
    41
        http://www.opengroup.org/onlinepubs/9629399/apdxa.htm.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    42
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    43
    See also RFC4122.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    44
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    45
    A UUID is unique in time and space (at least until about Year 3400).
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    46
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    47
    Several fields if the UUID are interpreted as integers, so host/network byte
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    48
    order is relevant. UUIDs are stored in a ByteArray in network byte order (MSB-first),
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    49
    so they may be exported/imported between different machines.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    50
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    51
    You can import UUIDs in host byte order using #fromNativeBytes:
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
    52
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    53
    [author:]
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    54
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    55
    [instance variables:]
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    56
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    57
    [class variables:]
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    58
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    59
    [see also:]
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    60
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    61
"
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    62
! !
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    63
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    64
!UUID class methodsFor:'initialization'!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    65
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    66
initialize
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    67
    "I want to get informed about image restarts"
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    68
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    69
    Lock isNil ifTrue:[
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    70
        Lock := RecursionLock new name:'UUID'.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    71
        LastTime := 0.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    72
        Increment := 0.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    73
        ObjectMemory addDependent:self.
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    74
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    75
        NameSpaceDNS := self fromBytes:#[16r6B 16rA7 16rB8 16r10 16r9D 16rAD 16r11 16rD1 16r80 16rB4 16r0 16rC0 16r4F 16rD4 16r30 16rC8].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    76
        NameSpaceURL := self fromBytes:#[16r6B 16rA7 16rB8 16r11 16r9D 16rAD 16r11 16rD1 16r80 16rB4 16r0 16rC0 16r4F 16rD4 16r30 16rC8].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    77
        NameSpaceOID := self fromBytes:#[16r6B 16rA7 16rB8 16r12 16r9D 16rAD 16r11 16rD1 16r80 16rB4 16r0 16rC0 16r4F 16rD4 16r30 16rC8].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
    78
        NameSpaceDN  := self fromBytes:#[16r6B 16rA7 16rB8 16r14 16r9D 16rAD 16r11 16rD1 16r80 16rB4 16r0 16rC0 16r4F 16rD4 16r30 16rC8].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    79
    ]
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    80
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    81
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    82
update:something with:aParameter from:changedObject
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    83
    "flush cached MAC address (may have been restarted on another host)"
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    84
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    85
    (something == #restarted) ifTrue:[
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    86
        CachedMACAddress := nil.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    87
        SequenceNumber := nil.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
    88
    ]
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
! !
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
!UUID class methodsFor:'instance creation'!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    93
basicNew
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    94
    ^ super basicNew:16
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    95
!
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    96
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    97
basicNew:size
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    98
    "allow creating with exact size. We need this for XMLStandardDecoder"
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
    99
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   100
    size ~~ 16 ifTrue:[
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   101
        ^ self shouldNotImplement.
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   102
    ].
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   103
    ^ super basicNew:size.
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   104
!
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   105
1382
626693b1fed7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1320
diff changeset
   106
fromBytes:aByteArray
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   107
    "set uuid from aByteArray.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   108
     aByteArray must be 16 bytes in network byte order (MSB-first)"
1382
626693b1fed7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1320
diff changeset
   109
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   110
    |uuid|
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   112
    uuid := super basicNew:16.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    uuid replaceFrom:1 to:16 with:aByteArray.
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   114
    ^ uuid.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   116
    "    
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   117
     UUID fromBytes:#[16r01 16r02 16r03 16r04
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   118
                      16r05 16r06 16r07 16r08
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   119
                      16r09 16r10 16r11 16r12
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   120
                      16r13 16r14 16r15 16r16]. 
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   121
    "
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   122
!
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   124
fromBytes:aByteArray msb:msb
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   125
    "Set the UUID from aByteArray. UUIDS are stored internally as MSB-first. 
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   126
     So, alway set
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   127
        msb = true      if reading from network or persistent storage"
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   129
    |uuid|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   130
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   131
    uuid := self fromBytes:aByteArray.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   132
    msb ifFalse:[
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   133
        self adjustByteOrder:uuid.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
    ].
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
    ^ uuid
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
    "
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
     UUID fromBytes:#[16r01 16r02 16r03 16r04
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
                      16r05 16r06 16r07 16r08
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
                      16r09 16r10 16r11 16r12
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
                      16r13 16r14 16r15 16r16] msb:false. 
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
    "
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
    "
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
     UUID fromBytes:#[16r01 16r02 16r03 16r04
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
                      16r05 16r06 16r07 16r08
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
                      16r09 16r10 16r11 16r12
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
                      16r13 16r14 16r15 16r16] msb:true.    
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    "
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   152
fromNativeBytes:aByteArray
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   153
    "convert bytes to uuid.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   154
     aByteArray represents a UUID in host byte order 
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   155
     - e.g. an UUID fetched from the Windows OS"
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   156
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   157
    |uuid|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   158
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   159
    uuid := self fromBytes:aByteArray.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   160
    self isBigEndian ifFalse:[
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   161
        self adjustByteOrder:uuid.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   162
    ].
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   163
    ^ uuid.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   164
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   165
    "    
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   166
     UUID fromNativeBytes:#[16r01 16r02 16r03 16r04
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   167
                              16r05 16r06 16r07 16r08
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   168
                              16r09 16r10 16r11 16r12
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   169
                              16r13 16r14 16r15 16r16]. 
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   170
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   171
    "
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   172
!
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   173
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   174
genRandomUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   175
    "generate a new random UUID"
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   176
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   177
    ^ (super basicNew:16) genRandomUUID
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   178
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   179
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   180
      self genRandomUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   181
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   182
!
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   183
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   184
genUUID
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   185
    "generate a uuid.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   186
     If a physical mac address can be retrieved from the OS,
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   187
     a mac-address/timestamp uuid is generated,
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   188
     otherwise a random uuid will be generated."
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   190
    ^ (super basicNew:16) genUUID
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   191
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   192
    "
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   193
     self genUUID
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   194
    "
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
new
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   198
    ^ (super basicNew:16) genUUID
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   199
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   200
    "
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   201
     self new 
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   202
    "
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
new:size
1320
fc8265f89040 XMLStandardDecoder compatibility
Stefan Vogel <sv@exept.de>
parents: 1304
diff changeset
   206
    "allow creating with exact size. We need this for XMLStandardDecoder"
fc8265f89040 XMLStandardDecoder compatibility
Stefan Vogel <sv@exept.de>
parents: 1304
diff changeset
   207
fc8265f89040 XMLStandardDecoder compatibility
Stefan Vogel <sv@exept.de>
parents: 1304
diff changeset
   208
    size ~~ 16 ifTrue:[
fc8265f89040 XMLStandardDecoder compatibility
Stefan Vogel <sv@exept.de>
parents: 1304
diff changeset
   209
        ^ self shouldNotImplement.
fc8265f89040 XMLStandardDecoder compatibility
Stefan Vogel <sv@exept.de>
parents: 1304
diff changeset
   210
    ].
fc8265f89040 XMLStandardDecoder compatibility
Stefan Vogel <sv@exept.de>
parents: 1304
diff changeset
   211
    ^ super new:size.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   212
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   214
readFrom:aStringOrStream onError:errorBlock
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   215
    |d offs s uuid t byte|
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   216
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   217
    Error handle:[:ex |
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   218
        ^ errorBlock value.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   219
    ] do:[
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   220
        s := aStringOrStream readStream.
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   221
        uuid := super basicNew:16.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   222
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   223
        s skipSeparators.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   224
        s peek == ${ ifTrue:[s next].
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   225
        s skipSeparators.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   226
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   227
        t := s next:8.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   228
        d := Integer readFrom:t radix:16 onError:[^ errorBlock value].
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   229
        uuid unsignedLongAt:1 put:d bigEndian:true.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   230
        offs := 5.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   231
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   232
        s next.         "skip $-"
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   233
1601
b0dfbe332caf WARNING: byte order of internal byte-representation changed;
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   234
        1 to:2 do:[:i |
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   235
            t := s next:4.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   236
            d := Integer readFrom:t radix:16 onError:[^ errorBlock value].
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   237
            uuid unsignedShortAt:offs put:d bigEndian:true.
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   238
            offs := offs + 2.
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   239
            s next.     "skip $-"
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   240
        ].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   241
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   242
        1 to:2 do:[:i |
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   243
            t := s next:2.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   244
            d := Integer readFrom:t radix:16 onError:[^ errorBlock value].
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   245
            uuid at:offs put:d.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   246
            offs := offs + 1.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   247
        ].
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   248
        s next.         "skip $-"
1601
b0dfbe332caf WARNING: byte order of internal byte-representation changed;
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   249
1543
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   250
        1 to:6 do:[:i |
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   251
            t := s next:2.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   252
            byte := Integer readFrom:t radix:16 onError:[^ errorBlock value].
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   253
            uuid at:offs put:byte.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   254
            offs := offs + 1.
929986f0910a fixed readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   255
        ].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   256
    ].
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   257
    ^ uuid
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   258
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   259
    "
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   260
     UUID readFrom:'5ab2e9b4-3d48-11d2-9ea4-80c5140aaa77' 
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   261
     UUID fromString:'5ab2e9b4-3d48-11d2-9ea4-80c5140aaa77' 
1601
b0dfbe332caf WARNING: byte order of internal byte-representation changed;
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   262
     UUID fromString:'00000001-0000-0000-C000-000000000046'
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   263
     UUID fromString:'00000001-0000-0000-C000-000000004600'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   264
     UUID fromString:'00000001-0000-0000-C000-000000460000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   265
     UUID fromString:'00000001-0000-0000-C000-000046000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   266
     UUID fromString:'00000001-0000-0000-C000-004600000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   267
     UUID fromString:'00000001-0000-0000-C000-460000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   268
     UUID fromString:'00000001-0000-0000-C046-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   269
     UUID fromString:'00000001-0000-0046-C000-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   270
     UUID fromString:'00000001-0000-4600-C000-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   271
     UUID fromString:'00000001-0046-0000-C000-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   272
     UUID fromString:'00000001-4600-0000-C000-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   273
     UUID fromString:'00000100-4600-0000-C000-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   274
     UUID fromString:'00010000-4600-0000-C000-000000000000'
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   275
     UUID fromString:'10000000-4600-0000-C000-000000000000'
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   276
    "
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   277
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   278
    "Modified: / 10-10-2007 / 23:03:47 / cg"
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
! !
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   281
!UUID class methodsFor:'helpers'!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   282
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   283
adjustByteOrder:aByteArray
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   284
    "change the byte order of the uuid"
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   285
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   286
    |d|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   287
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   288
    d := aByteArray unsignedLongAt:1 bigEndian:false.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   289
    aByteArray unsignedLongAt:1 put:d bigEndian:true.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   290
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   291
    d := aByteArray unsignedShortAt:1+4 bigEndian:false.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   292
    aByteArray unsignedShortAt:1+4 put:d bigEndian:true.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   293
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   294
    d := aByteArray unsignedShortAt:1+4+2 bigEndian:false.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   295
    aByteArray unsignedShortAt:1+4+2 put:d bigEndian:true.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   296
!
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   297
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   298
getDtssUtcTime
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   299
    "return the DTSS based time in 100 nsec intervals
1647
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   300
     DTSS UTC base time is October 15, 1582 (the start of the Gregorian Calendar)."
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   301
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   302
     "Unix base time is January 1, 1970.
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   303
      The difference between both is: 122192928000000000"
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   304
1647
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   305
"   
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   306
        (Timestamp epoch asDate subtractDate:(Date day:15 month:10 year:1582))
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   307
        *  (24 * 60 * 60)
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   308
"
1613
feef745939ea Use UTC time
Stefan Vogel <sv@exept.de>
parents: 1612
diff changeset
   309
1647
124e977b6a8f comment
Stefan Vogel <sv@exept.de>
parents: 1613
diff changeset
   310
    ^ (Timestamp now getMilliseconds + 12219292800000) * 10000.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   311
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   312
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   313
getValidMACAddress
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   314
    "return the first valid MAC address (i.e. having at least one byte ~~ 0)"
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   315
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   316
    CachedMACAddress isNil ifTrue:[
1491
512b21b45a9e noMacAddress fallBack (NT4.0)
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
   317
        |dictOfIf ipAddr|
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   318
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   319
        CachedMACAddress := false.      "cache the fact, that there is no MAC address" 
1577
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   320
        [
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   321
            dictOfIf := OperatingSystem getNetworkMACAddresses.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   322
1577
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   323
            dictOfIf do:[:macAddress |
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   324
                (macAddress contains:[:byte | byte ~~ 0]) ifTrue:[
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   325
                    ^ CachedMACAddress := macAddress
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   326
                ].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   327
            ].
1577
c0db2891f228 Ignore primitive failures when doing #getNetworkMACAddresses
Stefan Vogel <sv@exept.de>
parents: 1544
diff changeset
   328
        ] on:PrimitiveFailure do:[:ex| "ignore"].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   329
    ].
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   330
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   331
    ^ CachedMACAddress
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   332
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   333
    "
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   334
       CachedMACAddress := nil.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   335
       self getValidMACAddress
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   336
    "
1491
512b21b45a9e noMacAddress fallBack (NT4.0)
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
   337
512b21b45a9e noMacAddress fallBack (NT4.0)
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
   338
    "Modified: / 17-11-2004 / 01:45:53 / cg"
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   339
! !
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   340
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   341
!UUID methodsFor:'accessing'!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   342
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   343
clockSeqHiAndReserved
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   344
    ^ self at:9
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   345
!
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   346
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   347
clockSeqLow
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   348
    ^ self at:10
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   349
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   350
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   351
node
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   352
    ^ self copyFrom:11 to:16
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   353
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   354
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   355
timeHighAndVersion
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   356
    ^ self unsignedShortAt:7 bigEndian:true
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   357
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   358
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   359
timeLow
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   360
    ^ self unsignedLongAt:1 bigEndian:true
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   361
!
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   362
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   363
timeMid
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   364
    ^ self unsignedShortAt:5 bigEndian:true
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   365
! !
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   366
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   367
!UUID methodsFor:'converting'!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   368
1382
626693b1fed7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1320
diff changeset
   369
asBytes
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   370
    "convert this UUID to a ByteArray in network byte order (MSB-first)"
1382
626693b1fed7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1320
diff changeset
   371
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   372
    |bytes|
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   373
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   374
    bytes := ByteArray new:16.
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   375
    bytes replaceFrom:1 to:16 with:self.
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   376
    ^ bytes
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   377
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   378
    "
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   379
     |bytes|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   380
        
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   381
     bytes := #[16r01 16r02 16r03 16r04
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   382
                      16r05 16r06 16r07 16r08
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   383
                      16r09 16r10 16r11 16r12
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   384
                      16r13 16r14 16r15 16r16].
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   385
     (UUID fromBytes:bytes) asBytes ~= bytes ifTrue:[self halt] 
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   386
    "
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   387
!
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   388
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   389
asBytesMSB:msb
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   390
    "convert this UUID to a ByteArray.
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   391
     If msb == false, it is converted into LSB-first byte ordering"
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   392
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   393
    |bytes|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   394
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   395
    bytes := self asBytes.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   396
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   397
    msb ifFalse:[
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   398
        self class adjustByteOrder:bytes.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   399
    ].
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   400
    ^ bytes
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   401
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   402
    "Modified: / 10-10-2007 / 22:51:09 / cg"
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   403
!
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   404
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   405
asNativeBytes
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   406
    "convert this uuid to a ByteArray in host byte order.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   407
     Use this only to pass the UUID to the OS (Windows)"
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   408
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   409
    |bytes|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   410
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   411
    bytes := self asBytes.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   412
    self class isBigEndian ifFalse:[
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   413
        self class adjustByteOrder:bytes.
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   414
    ].
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   415
    ^ bytes.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   416
! !
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   417
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   418
!UUID methodsFor:'generating uuids'!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   419
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   420
genRandomUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   421
    "answer a randomly generated uuid as defined in RFC4122 section 4.4"
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   422
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   423
    self replaceFrom:1 to:16 with:(RandomGenerator new nextBytes:16).
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   424
    "multiplex the 4 bit version number (Version 4 -> Random UUID) in high bits of byte 7"
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   425
    self at:7 put:(((self at:7) bitAnd:16r0F) bitOr:16r40).
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   426
    self at:9 put:(((self at:9) bitAnd:16r3F) bitOr:16r80).
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   427
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   428
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   429
      self new genRandomUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   430
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   431
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   432
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   433
      1 to: 100 do:[ : el |
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   434
          Transcript show:el.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   435
          Transcript show:': '.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   436
          Transcript showCR:(UUID new genRandomUUID).
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   437
      ].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   438
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   439
!
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   440
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   441
genTimestampUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   442
    "generate a timestamp (and mac-address) based uuid"
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   443
1610
5f79965e186b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   444
    |macBytes utcTime seqNr|
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   445
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   446
    macBytes := self class getValidMACAddress.
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   447
    macBytes size ~~ 6 ifTrue:[
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   448
        self error:'no mac address - cannot generate UUID'.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   449
    ].
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   450
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   451
    "use 60 bit counter of 100ns ticks since 00:00:00 15.oct 1582 (sigh)"
1610
5f79965e186b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   452
    utcTime := self class getDtssUtcTime.
5f79965e186b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   453
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   454
    Lock critical:[
1467
a394ade68816 Protect against a nil SequenceNumber
Stefan Vogel <sv@exept.de>
parents: 1447
diff changeset
   455
        SequenceNumber isNil ifTrue:[
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   456
            SequenceNumber := RandomGenerator new nextIntegerBetween:0 and:16383.
1467
a394ade68816 Protect against a nil SequenceNumber
Stefan Vogel <sv@exept.de>
parents: 1447
diff changeset
   457
        ].
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   458
        utcTime > (LastTime+Increment) ifTrue:[
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   459
            Increment := 0.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   460
        ] ifFalse:[
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   461
            LastTime = utcTime ifTrue:[
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   462
                "clock didn't advance since last call. Simply add a tick"
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   463
                Increment := Increment + 1.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   464
            ] ifFalse:[
1467
a394ade68816 Protect against a nil SequenceNumber
Stefan Vogel <sv@exept.de>
parents: 1447
diff changeset
   465
                "clock went backwards - increment SequenceNumber"
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   466
                Increment := 0.
1214
7ae6b9302754 Fix previous change
Stefan Vogel <sv@exept.de>
parents: 1213
diff changeset
   467
                SequenceNumber := SequenceNumber + 1.
7ae6b9302754 Fix previous change
Stefan Vogel <sv@exept.de>
parents: 1213
diff changeset
   468
                SequenceNumber >= 16384 ifTrue:[SequenceNumber := 0].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   469
            ].
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   470
        ].
1214
7ae6b9302754 Fix previous change
Stefan Vogel <sv@exept.de>
parents: 1213
diff changeset
   471
        
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   472
        LastTime := utcTime.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   473
        utcTime := utcTime + Increment.
1610
5f79965e186b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   474
        seqNr := SequenceNumber.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   475
    ].
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   476
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   477
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   478
    "time low: long"
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   479
    self unsignedLongAt:1 put:(utcTime bitAnd:16rFFFFFFFF) bigEndian:true.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   480
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   481
    "time med: short"
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   482
    utcTime := utcTime bitShift:-32.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   483
    self unsignedShortAt:5 put:(utcTime bitAnd:16rFFFF) bigEndian:true.
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   484
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   485
    "time high and version: short
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   486
     multiplex the 4 bit version number in highest 4 bits (version 1 -> time based version)"
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   487
    self unsignedShortAt:7 put:((utcTime bitShift:-16) bitOr:16r1000) bigEndian:true.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   488
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   489
    "2 sequence bytes + reserved bits (this is not a short!!)"
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   490
    self at:9  put:(((seqNr bitShift:-8) bitAnd:16r3F) bitOr:16r80).
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   491
    self at:10 put:(seqNr bitAnd:16rFF).
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   492
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   493
    "48 bits of MAC-Address"
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   494
    self replaceFrom:11 to:16 with:macBytes startingAt:1.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   495
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   496
    "
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   497
      self new genTimestampUUID
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   498
    "
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   499
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   500
    "
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   501
      1 to: 100 do:[ : el |
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   502
          Transcript show:el.
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   503
          Transcript show:': '.
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   504
          Transcript showCR:(UUID new genTimestampUUID).
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   505
      ].
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   506
    "
1608
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   507
!
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   508
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   509
genUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   510
    "generate a uuid - the existing uuid bytes are overwritten.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   511
     If a physical mac address can be retrieved from the OS,
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   512
     a mac-address/timestamp uuid is generated,
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   513
     otherwise a random uuid will be generated."
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   514
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   515
    CachedMACAddress isNil ifTrue:[
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   516
        self class getValidMACAddress.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   517
    ].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   518
    CachedMACAddress == false ifTrue:[
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   519
        "no mac address - generate random UUID"
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   520
        ^ self genRandomUUID.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   521
    ].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   522
    ^ self genTimestampUUID.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   523
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   524
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   525
      self genUUID
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   526
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   527
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   528
    "
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   529
      1 to: 100 do:[ : el |
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   530
          Transcript show:el.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   531
          Transcript show:': '.
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   532
          Transcript showCR:(UUID genUUID).
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   533
      ].
e1cf5d2b6f2f Add random UUID in case there is no mac address
Stefan Vogel <sv@exept.de>
parents: 1602
diff changeset
   534
    "
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   535
! !
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   537
!UUID methodsFor:'printing'!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   538
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   539
displayString
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   540
    ^ self printString
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   541
!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   542
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   543
printOn:aStream
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   544
    |d tmpStream|
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   545
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   546
    tmpStream := '' writeStream.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   547
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   548
"/    d := self unsignedLongAt:1 bigEndian:true.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   549
"/    d printOn:tmpStream base:16 size:8 fill:$0.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   550
"/    tmpStream nextPut:$-.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   551
"/
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   552
"/    d := self unsignedShortAt:1+4 bigEndian:true.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   553
"/    d printOn:tmpStream base:16 size:4 fill:$0.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   554
"/    tmpStream nextPut:$-.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   555
"/
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   556
"/    d := self unsignedShortAt:1+4+2 bigEndian:true.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   557
"/    d printOn:tmpStream base:16 size:4 fill:$0.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   558
"/    tmpStream nextPut:$-.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   559
"/
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   560
"/    d := self at:1+4+2+2.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   561
"/    d printOn:tmpStream base:16 size:2 fill:$0.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   562
"/    d := self at:1+4+2+2+1.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   563
"/    d printOn:tmpStream base:16 size:2 fill:$0.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   564
"/    tmpStream nextPut:$-.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   565
"/
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   566
"/    11 to:16 do:[:idx|
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   567
"/        d := self at:idx.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   568
"/        d printOn:tmpStream base:16 size:2 fill:$0.
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   569
"/    ].
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   570
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   571
    1 to:4 do:[:idx|
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   572
        d := self at:idx.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   573
        d printOn:tmpStream base:16 size:2 fill:$0.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   574
    ].
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   575
    tmpStream nextPut:$-.
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   576
    5 to:6 do:[:idx|
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   577
        d := self at:idx.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   578
        d printOn:tmpStream base:16 size:2 fill:$0.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   579
    ].
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   580
    tmpStream nextPut:$-.
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   581
    7 to:8 do:[:idx|
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   582
        d := self at:idx.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   583
        d printOn:tmpStream base:16 size:2 fill:$0.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   584
    ].
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   585
    tmpStream nextPut:$-.
1612
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   586
    9 to:10 do:[:idx|
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   587
        d := self at:idx.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   588
        d printOn:tmpStream base:16 size:2 fill:$0.
2877abd0a002 Byte ordering issues
Stefan Vogel <sv@exept.de>
parents: 1611
diff changeset
   589
    ].
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   590
    tmpStream nextPut:$-.
1602
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   591
    11 to:16 do:[:idx|
6ffbb8db78a4 Fix byte ordering.
Stefan Vogel <sv@exept.de>
parents: 1601
diff changeset
   592
        d := self at:idx.
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   593
        d printOn:tmpStream base:16 size:2 fill:$0.
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
    ].
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   595
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   596
    aStream nextPutAll:(tmpStream contents asLowercase).
1898
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   597
8041791c02c3 comments
Claus Gittinger <cg@exept.de>
parents: 1647
diff changeset
   598
    "Modified: / 10-10-2007 / 23:19:03 / cg"
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
! !
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   601
!UUID class methodsFor:'documentation'!
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   603
version
1923
6380ea5d7385 #new is now the same as genUUID (squeak compatibility)
Claus Gittinger <cg@exept.de>
parents: 1898
diff changeset
   604
    ^ '$Header: /cvs/stx/stx/libbasic2/UUID.st,v 1.24 2008-01-21 12:43:07 cg Exp $'
1188
58856b846271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
! !
1213
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   606
5a23a433a990 Refactoring
Stefan Vogel <sv@exept.de>
parents: 1188
diff changeset
   607
UUID initialize!