OpenRTM-aist-Python 2.0.0
Classes | Functions
C:/docs/OpenRTM-aist-Python/OpenRTM_aist/uuid.py File Reference

Classes

class  OpenRTM_aist.uuid.UUID
 

Functions

def OpenRTM_aist.uuid.getnode ()
 
def OpenRTM_aist.uuid.uuid1 (node=None, clock_seq=None)
 
def OpenRTM_aist.uuid.uuid3 (namespace, name)
 
def OpenRTM_aist.uuid.uuid4 ()
 
def OpenRTM_aist.uuid.uuid5 (namespace, name)
 

Detailed Description

Date
Date
2006/06/12
Author
Ka-Ping Yee ping@.nosp@m.zest.nosp@m.y.ca

Copyright (C) 2008 Task-intelligence Research Group, Intelligent Systems Research Institute, National Institute of Advanced Industrial Science and Technology (AIST), Japan All rights reserved.

Function Documentation

◆ getnode()

def OpenRTM_aist.uuid.getnode ( )
Get the hardware address as a 48-bit integer.  The first time this
runs, it may launch a separate program, which could be quite slow.  If
all attempts to obtain the hardware address fail, we choose a random
48-bit number with its eighth bit set to 1 as recommended in RFC 4122.

◆ uuid1()

def OpenRTM_aist.uuid.uuid1 (   node = None,
  clock_seq = None 
)
Generate a UUID from a host ID, sequence number, and the current time.
If 'node' is not given, getnode() is used to obtain the hardware
address.  If 'clock_seq' is given, it is used as the sequence number;
otherwise a random 14-bit sequence number is chosen.

◆ uuid3()

def OpenRTM_aist.uuid.uuid3 (   namespace,
  name 
)
Generate a UUID from the MD5 hash of a namespace UUID and a name.

◆ uuid4()

def OpenRTM_aist.uuid.uuid4 ( )
Generate a random UUID.

◆ uuid5()

def OpenRTM_aist.uuid.uuid5 (   namespace,
  name 
)
Generate a UUID from the SHA-1 hash of a namespace UUID and a name.