Overview
| Comment: | OFUUID: Add convenience methods |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b2f23fd28312bb61aa17f4577df5365a |
| User & Date: | js on 2021-10-23 12:16:50 |
| Other Links: | manifest | tags |
Context
|
2021-10-23
| ||
| 12:28 | OFUUID: Add serialization support (check-in: fe84b53fd3 user: js tags: trunk) | |
| 12:16 | OFUUID: Add convenience methods (check-in: b2f23fd283 user: js tags: trunk) | |
|
2021-10-22
| ||
| 21:40 | OFUUID: Add -[initWithUUIDString:] (check-in: 02005b54f1 user: js tags: trunk) | |
Changes
Modified src/OFUUID.h from [1b0596c0e2] to [b0dcaf6697].
| ︙ | |||
36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | + + + + + + + + + + + + + + + + | /** * @brief Creates a new random UUID as per RFC 4122 version 4. * * @return A new, autoreleased OFUUID */ + (instancetype)UUID; /** * @brief Creates a new UUID with the specified bytes. * * @param bytes The bytes for the UUID * @return A new, autoreleased OFUUID */ + (instancetype)UUIDWithUUIDBytes: (const unsigned char [_Nonnull 16])bytes; /** * @brief Creates a new UUID with the specified UUID string. * * @param string The UUID string for the UUID * @return A new, autoreleased OFUUID */ + (instancetype)UUIDWithUUIDString: (OFString *)string; /** * @brief Initializes an already allocated OFUUID as a new random UUID as per * RFC 4122 version 4. * * @return An initialized OFUUID */ - (instancetype)init; |
| ︙ |
Modified src/OFUUID.m from [b9dcec5f4c] to [eff60e4dd9].
| ︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | + + + + + + + + + + |
#define bytesSize 16
@implementation OFUUID
+ (instancetype)UUID
{
return [[[self alloc] init] autorelease];
}
+ (instancetype)UUIDWithUUIDBytes: (const unsigned char [16])bytes
{
return [[[self alloc] initWithUUIDBytes: bytes] autorelease];
}
+ (instancetype)UUIDWithUUIDString: (OFString *)string
{
return [[[self alloc] initWithUUIDString: string] autorelease];
}
- (instancetype)init
{
uint64_t r;
self = [super init];
|
| ︙ |