uuid.inc 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * @file
  4. * Enables ctools generated modules to use UUIDs without the UUID module enabled.
  5. * Per the ctools.module, this file only gets included if UUID doesn't exist.
  6. */
  7. /**
  8. * Pattern for detecting a valid UUID.
  9. */
  10. define('UUID_PATTERN', '[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}');
  11. /**
  12. * Generates a UUID using the Windows internal GUID generator.
  13. *
  14. * @see http://php.net/com_create_guid
  15. */
  16. function _ctools_uuid_generate_com() {
  17. // Remove {} wrapper and make lower case to keep result consistent.
  18. return drupal_strtolower(trim(com_create_guid(), '{}'));
  19. }
  20. /**
  21. * Generates an universally unique identifier using the PECL extension.
  22. */
  23. function _ctools_uuid_generate_pecl() {
  24. return uuid_create(UUID_TYPE_DEFAULT);
  25. }
  26. /**
  27. * Generates a UUID v4 using PHP code.
  28. *
  29. * Based on code from @see http://php.net/uniqid#65879 , but corrected.
  30. */
  31. function _ctools_uuid_generate_php() {
  32. // The field names refer to RFC 4122 section 4.1.2.
  33. return sprintf('%04x%04x-%04x-4%03x-%04x-%04x%04x%04x',
  34. // 32 bits for "time_low".
  35. mt_rand(0, 65535), mt_rand(0, 65535),
  36. // 16 bits for "time_mid".
  37. mt_rand(0, 65535),
  38. // 12 bits after the 0100 of (version) 4 for "time_hi_and_version".
  39. mt_rand(0, 4095),
  40. bindec(substr_replace(sprintf('%016b', mt_rand(0, 65535)), '10', 0, 2)),
  41. // 8 bits, the last two of which (positions 6 and 7) are 01, for "clk_seq_hi_res"
  42. // (hence, the 2nd hex digit after the 3rd hyphen can only be 1, 5, 9 or d)
  43. // 8 bits for "clk_seq_low" 48 bits for "node".
  44. mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535)
  45. );
  46. }
  47. // This is wrapped in an if block to avoid conflicts with PECL's uuid_is_valid().
  48. /**
  49. * Check that a string appears to be in the format of a UUID.
  50. *
  51. * @param $uuid
  52. * The string to test.
  53. *
  54. * @return
  55. * TRUE if the string is well formed.
  56. */
  57. if (!function_exists('uuid_is_valid')) {
  58. function uuid_is_valid($uuid) {
  59. return preg_match('/^' . UUID_PATTERN . '$/', $uuid);
  60. }
  61. }