hex.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
  2. /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
  3. /* Copyright (C) 2014 OSCAR lab, Stony Brook University
  4. 2017 University of North Carolina at Chapel Hill
  5. This file is part of Graphene Library OS.
  6. Graphene Library OS is free software: you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation, either version 3 of the
  9. License, or (at your option) any later version.
  10. Graphene Library OS 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. You should have received a copy of the GNU General Public License
  15. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  16. #ifndef HEX_H
  17. #define HEX_H
  18. /* This function is a helper for debug printing.
  19. * It accepts a pointer to a numerical value, and
  20. * formats it as a hex string, for printing.
  21. * size is the number of bytes pointed to by hex.
  22. * str is the caller-provided buffer, len is the length of the buffer.
  23. * The len must be at least (size * 2)+1.
  24. *
  25. * Note that it does not normalize for endianness, and pads to the
  26. * size the compiler things the string is.
  27. */
  28. #include <assert.h>
  29. static inline __attribute__((always_inline))
  30. char * __bytes2hexstr(void * hex, size_t size, char *str, size_t len)
  31. {
  32. static char * ch = "0123456789abcdef";
  33. assert(len >= size * 2 + 1);
  34. for (size_t i = 0 ; i < size ; i++) {
  35. unsigned char h = ((unsigned char *) hex)[i];
  36. str[i * 2] = ch[h / 16];
  37. str[i * 2 + 1] = ch[h % 16];
  38. }
  39. str[size * 2] = 0;
  40. return str;
  41. }
  42. #define IS_INDEXABLE(arg) (sizeof((arg)[0]))
  43. #define IS_ARRAY(arg) (IS_INDEXABLE(arg) > 0 && (((void *) &(arg)) == ((void *) (arg))))
  44. #define bytes2hexstr(array, str, len) (IS_ARRAY(array) ? \
  45. __bytes2hexstr((array), sizeof(array), str, len) \
  46. : NULL)
  47. #endif // HEX_H