You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

util.h 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright 2011-2023 Pierre Ossman for Cendio AB
  3. *
  4. * This is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This software is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this software; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  17. * USA.
  18. */
  19. //
  20. // util.h - miscellaneous useful bits
  21. //
  22. #ifndef __RFB_UTIL_H__
  23. #define __RFB_UTIL_H__
  24. #include <limits.h>
  25. #include <string.h>
  26. #include <stdint.h>
  27. #include <string>
  28. #include <vector>
  29. struct timeval;
  30. namespace rfb {
  31. // -=- Class to handle cleanup of arrays of characters
  32. class CharArray {
  33. public:
  34. CharArray() : buf(0) {}
  35. CharArray(char* str) : buf(str) {} // note: assumes ownership
  36. CharArray(size_t len) {
  37. buf = new char[len]();
  38. memset(buf, 0, len);
  39. }
  40. ~CharArray() {
  41. delete [] buf;
  42. }
  43. void format(const char *fmt, ...)
  44. __attribute__((__format__ (__printf__, 2, 3)));
  45. // Get the buffer pointer & clear it (i.e. caller takes ownership)
  46. char* takeBuf() {char* tmp = buf; buf = 0; return tmp;}
  47. void replaceBuf(char* b) {delete [] buf; buf = b;}
  48. char* buf;
  49. private:
  50. CharArray(const CharArray&);
  51. CharArray& operator=(const CharArray&);
  52. };
  53. char* strDup(const char* s);
  54. void strFree(char* s);
  55. // Formats according to printf(), with a dynamic allocation
  56. std::string strFormat(const char *fmt, ...)
  57. __attribute__((__format__ (__printf__, 1, 2)));
  58. // Splits a string with the specified delimiter
  59. std::vector<std::string> strSplit(const char* src,
  60. const char delimiter);
  61. // Returns true if src contains c
  62. bool strContains(const char* src, char c);
  63. // Copies src to dest, up to specified length-1, and guarantees termination
  64. void strCopy(char* dest, const char* src, int destlen);
  65. // Conversion to and from a hex string
  66. void binToHex(const uint8_t* in, size_t inlen, char* out, size_t outlen);
  67. std::string binToHex(const uint8_t* in, size_t inlen);
  68. bool hexToBin(const char* in, size_t inlen, uint8_t* out, size_t outlen);
  69. std::vector<uint8_t> hexToBin(const char* in, size_t inlen);
  70. // Makes sure line endings are in a certain format
  71. std::string convertLF(const char* src, size_t bytes = (size_t)-1);
  72. std::string convertCRLF(const char* src, size_t bytes = (size_t)-1);
  73. // Convertions between various Unicode formats
  74. size_t ucs4ToUTF8(unsigned src, char dst[5]);
  75. size_t utf8ToUCS4(const char* src, size_t max, unsigned* dst);
  76. size_t ucs4ToUTF16(unsigned src, wchar_t dst[3]);
  77. size_t utf16ToUCS4(const wchar_t* src, size_t max, unsigned* dst);
  78. std::string latin1ToUTF8(const char* src, size_t bytes = (size_t)-1);
  79. std::string utf8ToLatin1(const char* src, size_t bytes = (size_t)-1);
  80. std::string utf16ToUTF8(const wchar_t* src, size_t units = (size_t)-1);
  81. std::wstring utf8ToUTF16(const char* src, size_t bytes = (size_t)-1);
  82. // HELPER functions for timeout handling
  83. // soonestTimeout() is a function to help work out the soonest of several
  84. // timeouts.
  85. inline void soonestTimeout(int* timeout, int newTimeout) {
  86. if (newTimeout && (!*timeout || newTimeout < *timeout))
  87. *timeout = newTimeout;
  88. }
  89. // secsToMillis() turns seconds into milliseconds, capping the value so it
  90. // can't wrap round and become -ve
  91. inline int secsToMillis(int secs) {
  92. return (secs < 0 || secs > (INT_MAX/1000) ? INT_MAX : secs * 1000);
  93. }
  94. // Returns time elapsed between two moments in milliseconds.
  95. unsigned msBetween(const struct timeval *first,
  96. const struct timeval *second);
  97. // Returns time elapsed since given moment in milliseconds.
  98. unsigned msSince(const struct timeval *then);
  99. // Returns true if first happened before seconds
  100. bool isBefore(const struct timeval *first,
  101. const struct timeval *second);
  102. std::string siPrefix(long long value, const char *unit,
  103. int precision=6);
  104. std::string iecPrefix(long long value, const char *unit,
  105. int precision=6);
  106. }
  107. // Some platforms (e.g. Windows) include max() and min() macros in their
  108. // standard headers, but they are also standard C++ template functions, so some
  109. // C++ headers will undefine them. So we steer clear of the names min and max
  110. // and define __rfbmin and __rfbmax instead.
  111. #ifndef __rfbmax
  112. #define __rfbmax(a,b) (((a) > (b)) ? (a) : (b))
  113. #endif
  114. #ifndef __rfbmin
  115. #define __rfbmin(a,b) (((a) < (b)) ? (a) : (b))
  116. #endif
  117. #endif