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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright 2011-2019 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. struct timeval;
  27. namespace rfb {
  28. // -=- Class to handle cleanup of arrays of characters
  29. class CharArray {
  30. public:
  31. CharArray() : buf(0) {}
  32. CharArray(char* str) : buf(str) {} // note: assumes ownership
  33. CharArray(size_t len) {
  34. buf = new char[len]();
  35. memset(buf, 0, len);
  36. }
  37. ~CharArray() {
  38. delete [] buf;
  39. }
  40. void format(const char *fmt, ...)
  41. __attribute__((__format__ (__printf__, 2, 3)));
  42. // Get the buffer pointer & clear it (i.e. caller takes ownership)
  43. char* takeBuf() {char* tmp = buf; buf = 0; return tmp;}
  44. void replaceBuf(char* b) {delete [] buf; buf = b;}
  45. char* buf;
  46. private:
  47. CharArray(const CharArray&);
  48. CharArray& operator=(const CharArray&);
  49. };
  50. char* strDup(const char* s);
  51. void strFree(char* s);
  52. void strFree(wchar_t* s);
  53. // Returns true if split successful. Returns false otherwise.
  54. // ALWAYS *copies* first part of string to out1 buffer.
  55. // If limiter not found, leaves out2 alone (null) and just copies to out1.
  56. // If out1 or out2 non-zero, calls strFree and zeroes them.
  57. // If fromEnd is true, splits at end of string rather than beginning.
  58. // Either out1 or out2 may be null, in which case the split will not return
  59. // that part of the string. Obviously, setting both to 0 is not useful...
  60. bool strSplit(const char* src, const char limiter, char** out1, char** out2, bool fromEnd=false);
  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. // Makes sure line endings are in a certain format
  66. char* convertLF(const char* src, size_t bytes = (size_t)-1);
  67. char* convertCRLF(const char* src, size_t bytes = (size_t)-1);
  68. // Convertions between various Unicode formats. The returned strings are
  69. // always null terminated and must be freed using strFree().
  70. size_t ucs4ToUTF8(unsigned src, char* dst);
  71. size_t utf8ToUCS4(const char* src, size_t max, unsigned* dst);
  72. size_t ucs4ToUTF16(unsigned src, wchar_t* dst);
  73. size_t utf16ToUCS4(const wchar_t* src, size_t max, unsigned* dst);
  74. char* latin1ToUTF8(const char* src, size_t bytes = (size_t)-1);
  75. char* utf8ToLatin1(const char* src, size_t bytes = (size_t)-1);
  76. char* utf16ToUTF8(const wchar_t* src, size_t units = (size_t)-1);
  77. wchar_t* utf8ToUTF16(const char* src, size_t bytes = (size_t)-1);
  78. // HELPER functions for timeout handling
  79. // soonestTimeout() is a function to help work out the soonest of several
  80. // timeouts.
  81. inline void soonestTimeout(int* timeout, int newTimeout) {
  82. if (newTimeout && (!*timeout || newTimeout < *timeout))
  83. *timeout = newTimeout;
  84. }
  85. // secsToMillis() turns seconds into milliseconds, capping the value so it
  86. // can't wrap round and become -ve
  87. inline int secsToMillis(int secs) {
  88. return (secs < 0 || secs > (INT_MAX/1000) ? INT_MAX : secs * 1000);
  89. }
  90. // Returns time elapsed between two moments in milliseconds.
  91. unsigned msBetween(const struct timeval *first,
  92. const struct timeval *second);
  93. // Returns time elapsed since given moment in milliseconds.
  94. unsigned msSince(const struct timeval *then);
  95. // Returns true if first happened before seconds
  96. bool isBefore(const struct timeval *first,
  97. const struct timeval *second);
  98. size_t siPrefix(long long value, const char *unit,
  99. char *buffer, size_t maxlen, int precision=6);
  100. size_t iecPrefix(long long value, const char *unit,
  101. char *buffer, size_t maxlen, int precision=6);
  102. }
  103. // Some platforms (e.g. Windows) include max() and min() macros in their
  104. // standard headers, but they are also standard C++ template functions, so some
  105. // C++ headers will undefine them. So we steer clear of the names min and max
  106. // and define __rfbmin and __rfbmax instead.
  107. #ifndef __rfbmax
  108. #define __rfbmax(a,b) (((a) > (b)) ? (a) : (b))
  109. #endif
  110. #ifndef __rfbmin
  111. #define __rfbmin(a,b) (((a) < (b)) ? (a) : (b))
  112. #endif
  113. #endif