| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | ! Copyright (C) 2008 John Benediktsson | 
					
						
							|  |  |  | ! See http://factorcode.org/license.txt for BSD license | 
					
						
							| 
									
										
										
										
											2009-05-17 18:58:36 -04:00
										 |  |  | USING: byte-arrays checksums checksums.md5 checksums.sha | 
					
						
							| 
									
										
										
										
											2008-12-20 21:38:35 -05:00
										 |  |  | kernel math math.parser math.ranges random unicode.case  | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  | sequences strings system io.binary ;
 | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | IN: uuid  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <PRIVATE
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : (timestamp) ( -- time_high time_mid time_low )  | 
					
						
							|  |  |  |     ! 0x01b21dd213814000L is the number of 100-ns intervals | 
					
						
							|  |  |  |     ! between the UUID epoch 1582-10-15 00:00:00 and the  | 
					
						
							|  |  |  |     ! Unix epoch 1970-01-01 00:00:00. | 
					
						
							|  |  |  |     micros 10 * HEX: 01b21dd213814000 +
 | 
					
						
							|  |  |  |     [ -48 shift HEX: 0fff bitand ]  | 
					
						
							|  |  |  |     [ -32 shift HEX: ffff bitand ] | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  |     [ HEX: ffffffff bitand ] | 
					
						
							|  |  |  |     tri ;
 | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : (hardware) ( -- address )  | 
					
						
							|  |  |  |     ! Choose a random 48-bit number with eighth bit  | 
					
						
							|  |  |  |     ! set to 1 (as recommended in RFC 4122) | 
					
						
							|  |  |  |     48 random-bits HEX: 010000000000 bitor ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : (clock) ( -- clockseq )  | 
					
						
							|  |  |  |     ! Choose a random 14-bit number | 
					
						
							|  |  |  |     14 random-bits ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : <uuid> ( address clockseq time_high time_mid time_low -- n )
 | 
					
						
							|  |  |  |     96 shift  | 
					
						
							|  |  |  |     [ 80 shift ] dip bitor  | 
					
						
							|  |  |  |     [ 64 shift ] dip bitor
 | 
					
						
							|  |  |  |     [ 48 shift ] dip bitor
 | 
					
						
							|  |  |  |     bitor ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : (version) ( n version -- n' )
 | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  |     [ | 
					
						
							|  |  |  |         HEX: c000 48 shift bitnot bitand  | 
					
						
							|  |  |  |         HEX: 8000 48 shift bitor  | 
					
						
							|  |  |  |         HEX: f000 64 shift bitnot bitand
 | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  |     ] dip 76 shift bitor ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : uuid>string ( n -- string )
 | 
					
						
							| 
									
										
										
										
											2009-01-29 23:19:07 -05:00
										 |  |  |     >hex 32 CHAR: 0 pad-head  | 
					
						
							| 
									
										
										
										
											2008-12-20 21:38:35 -05:00
										 |  |  |     [ CHAR: - 20 ] dip insert-nth
 | 
					
						
							|  |  |  |     [ CHAR: - 16 ] dip insert-nth  | 
					
						
							|  |  |  |     [ CHAR: - 12 ] dip insert-nth  | 
					
						
							|  |  |  |     [ CHAR: - 8 ] dip insert-nth ;
 | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | : string>uuid ( string -- n )
 | 
					
						
							|  |  |  |     [ CHAR: - = not ] filter 16 base> ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PRIVATE>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : uuid-parse ( string -- byte-array )  | 
					
						
							| 
									
										
										
										
											2008-12-22 09:42:08 -05:00
										 |  |  |     string>uuid 16 >be ;
 | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : uuid-unparse ( byte-array -- string )  | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  |     be> uuid>string ;
 | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : uuid1 ( -- string )
 | 
					
						
							|  |  |  |     (hardware) (clock) (timestamp) <uuid>  | 
					
						
							|  |  |  |     1 (version) uuid>string ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : uuid3 ( namespace name -- string )
 | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  |     [ uuid-parse ] dip append  | 
					
						
							|  |  |  |     md5 checksum-bytes 16 short head be>  | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  |     3 (version) uuid>string ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : uuid4 ( -- string )
 | 
					
						
							|  |  |  |     128 random-bits  | 
					
						
							|  |  |  |     4 (version) uuid>string ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : uuid5 ( namespace name -- string )
 | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  |     [ uuid-parse ] dip append  | 
					
						
							|  |  |  |     sha1 checksum-bytes 16 short head be>  | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  |     5 (version) uuid>string ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-22 02:22:05 -05:00
										 |  |  | CONSTANT: NAMESPACE_DNS  "6ba7b810-9dad-11d1-80b4-00c04fd430c8" | 
					
						
							|  |  |  | CONSTANT: NAMESPACE_URL  "6ba7b811-9dad-11d1-80b4-00c04fd430c8" | 
					
						
							|  |  |  | CONSTANT: NAMESPACE_OID  "6ba7b812-9dad-11d1-80b4-00c04fd430c8" | 
					
						
							|  |  |  | CONSTANT: NAMESPACE_X500 "6ba7b814-9dad-11d1-80b4-00c04fd430c8" | 
					
						
							| 
									
										
										
										
											2008-12-20 01:22:58 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 |