guid_win32.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
  3. * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <pj/guid.h>
  20. #include <pj/string.h>
  21. #include <pj/sock.h>
  22. #include <windows.h>
  23. #include <objbase.h>
  24. #include <pj/os.h>
  25. PJ_DEF_DATA(const unsigned) PJ_GUID_STRING_LENGTH=32;
  26. PJ_DEF(unsigned) pj_GUID_STRING_LENGTH()
  27. {
  28. return PJ_GUID_STRING_LENGTH;
  29. }
  30. PJ_INLINE(void) hex2digit(unsigned value, char *p)
  31. {
  32. static char hex[] = {'0', '1', '2', '3', '4', '5', '6', '7',
  33. '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
  34. *p++ = hex[ (value & 0xF0) >> 4 ];
  35. *p++ = hex[ (value & 0x0F) ];
  36. }
  37. static void guid_to_str( GUID *guid, pj_str_t *str )
  38. {
  39. unsigned i;
  40. const unsigned char *src = (const unsigned char*)guid;
  41. char *dst = str->ptr;
  42. guid->Data1 = pj_ntohl(guid->Data1);
  43. guid->Data2 = pj_ntohs(guid->Data2);
  44. guid->Data3 = pj_ntohs(guid->Data3);
  45. for (i=0; i<16; ++i) {
  46. hex2digit( *src, dst );
  47. dst += 2;
  48. ++src;
  49. }
  50. str->slen = 32;
  51. }
  52. PJ_DEF(pj_str_t*) pj_generate_unique_string(pj_str_t *str)
  53. {
  54. GUID guid;
  55. PJ_CHECK_STACK();
  56. CoCreateGuid(&guid);
  57. guid_to_str( &guid, str );
  58. return str;
  59. }