blob: ef1cf4929cbc2537757c958997d5f5fab610f0b2 [file] [log] [blame]
/**
* @license
* Copyright 2013 The Emscripten Authors
* SPDX-License-Identifier: MIT
*/
// Implementation of libuuid creating RFC4122 version 4 random UUIDs.
addToLibrary({
// Clear a 'compact' UUID.
uuid_clear__deps: ['$zeroMemory'],
uuid_clear: (uu) => zeroMemory(uu, 16),
// Compare whether or not two 'compact' UUIDs are the same.
// Returns an integer less than, equal to, or greater than zero if uu1 is found, respectively, to be
// lexicographically less than, equal, or greater than uu2.
uuid_compare__deps: ['memcmp'],
uuid_compare: (uu1, uu2) => _memcmp(uu1, uu2, 16),
// Copies the 'compact' UUID variable from src to dst.
uuid_copy__deps: ['memcpy'],
uuid_copy: (dst, src) => _memcpy(dst, src, 16),
// Write a RFC4122 version 4 compliant UUID largely based on the method found in
// http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript
// tweaked slightly in order to use the 'compact' UUID form used by libuuid.
uuid_generate__deps: ['$writeArrayToMemory', '$randomFill'],
uuid_generate: (out) => {
// void uuid_generate(uuid_t out);
var uuid = new Uint8Array(16);
randomFill(uuid);
// Makes uuid compliant to RFC-4122
uuid[6] = (uuid[6] & 0x0F) | 0x40; // uuid version
uuid[8] = (uuid[8] & 0x3F) | 0x80; // uuid variant
writeArrayToMemory(uuid, out);
},
// Compares the value of the supplied 'compact' UUID variable uu to the NULL value.
// If the value is equal to the NULL UUID, 1 is returned, otherwise 0 is returned.
uuid_is_null: (uu) => {
// int uuid_is_null(const uuid_t uu);
for (var i = 0; i < 4; i++, uu = (uu+4)|0) {
var val = {{{ makeGetValue('uu', 0, 'i32') }}};
if (val) {
return 0;
}
}
return 1;
},
// converts the UUID string given by inp into the binary representation. The input UUID is a string of
// the form "%08x-%04x-%04x-%04x-%012x" 36 bytes plus the trailing '\0'.
// Upon successfully parsing the input string, 0 is returned, and the UUID is stored in the location
// pointed to by uu, otherwise -1 is returned.
uuid_parse: (inp, uu) => {
// int uuid_parse(const char *in, uuid_t uu);
inp = UTF8ToString(inp);
if (inp.length === 36) {
var i = 0;
var uuid = new Array(16);
inp.toLowerCase().replace(/[0-9a-f]{2}/g, function(byte) {
if (i < 16) {
uuid[i++] = parseInt(byte, 16);
}
});
if (i < 16) {
return -1;
}
writeArrayToMemory(uuid, uu);
return 0;
}
return -1;
},
// Convert a 'compact' form UUID to a string, if the upper parameter is supplied make the string upper case.
uuid_unparse__docs: '/** @param {number|boolean=} upper */',
uuid_unparse__deps: ['$stringToUTF8'],
uuid_unparse: (uu, out, upper) => {
// void uuid_unparse(const uuid_t uu, char *out);
var i = 0;
var uuid = 'xxxx-xx-xx-xx-xxxxxx'.replace(/[x]/g, function(c) {
var r = upper ? ({{{ makeGetValue('uu', 'i', 'u8') }}}).toString(16).toUpperCase() :
({{{ makeGetValue('uu', 'i', 'u8') }}}).toString(16);
r = (r.length === 1) ? '0' + r : r; // Zero pad single digit hex values
i++;
return r;
});
stringToUTF8(uuid, out, 37); // Always fixed 36 bytes of ASCII characters and a trailing \0.
},
// Convert a 'compact' form UUID to a lower case string.
uuid_unparse_lower__deps: ['uuid_unparse'],
uuid_unparse_lower: (uu, out) => {
// void uuid_unparse_lower(const uuid_t uu, char *out);
_uuid_unparse(uu, out);
},
// Convert a 'compact' form UUID to an upper case string.
uuid_unparse_upper__deps: ['uuid_unparse'],
uuid_unparse_upper: (uu, out) => {
// void uuid_unparse_upper(const uuid_t uu, char *out);
_uuid_unparse(uu, out, true);
},
// int uuid_type(const uuid_t uu);
uuid_type: (uu) => {{{ cDefs.UUID_TYPE_DCE_RANDOM }}},
// int uuid_variant(const uuid_t uu);
uuid_variant: (uu) => {{{ cDefs.UUID_VARIANT_DCE }}},
});