blob: b65417004e4efc61cfc60c6d37ec820bae519e23 [file] [log] [blame]
Constantin Kaplinsky47ed8d32004-10-08 09:43:57 +00001/* Copyright (C) 2002-2004 RealVNC Ltd. All Rights Reserved.
2 *
3 * This is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This software is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16 * USA.
17 */
18
19//
20// util.h - miscellaneous useful bits
21//
22
23#ifndef __RFB_UTIL_H__
24#define __RFB_UTIL_H__
25
Peter Åstrand0f49e222005-01-13 22:11:30 +000026#ifndef vncmin
27#define vncmin(a,b) (((a) < (b)) ? (a) : (b))
28#endif
29#ifndef vncmax
30#define vncmax(a,b) (((a) > (b)) ? (a) : (b))
31#endif
32
Constantin Kaplinsky47ed8d32004-10-08 09:43:57 +000033#include <string.h>
34
35namespace rfb {
36
37 // -=- Class to handle cleanup of arrays of characters
38 class CharArray {
39 public:
40 CharArray() : buf(0) {}
41 CharArray(char* str) : buf(str) {} // note: assumes ownership
42 CharArray(int len) {
43 buf = new char[len];
44 }
45 ~CharArray() {
46 delete [] buf;
47 }
48 // Get the buffer pointer & clear it (i.e. caller takes ownership)
49 char* takeBuf() {char* tmp = buf; buf = 0; return tmp;}
50 void replaceBuf(char* b) {delete [] buf; buf = b;}
51 char* buf;
52 private:
53 CharArray(const CharArray&);
54 CharArray& operator=(const CharArray&);
55 };
56
57 char* strDup(const char* s);
58 void strFree(char* s);
59
60 // Returns true if split successful. Returns false otherwise.
61 // ALWAYS *copies* first part of string to out1 buffer.
62 // If limiter not found, leaves out2 alone (null) and just copies to out1.
63 // If out1 or out2 non-zero, calls strFree and zeroes them.
64 // If fromEnd is true, splits at end of string rather than beginning.
65 // Either out1 or out2 may be null, in which case the split will not return
66 // that part of the string. Obviously, setting both to 0 is not useful...
67 bool strSplit(const char* src, const char limiter, char** out1, char** out2, bool fromEnd=false);
68
69 // Returns true if src contains c
70 bool strContains(const char* src, char c);
71
72 // Copies src to dest, up to specified length-1, and guarantees termination
73 void strCopy(char* dest, const char* src, int destlen);
74}
75#endif
76
Constantin Kaplinsky47ed8d32004-10-08 09:43:57 +000077
78// -=- PLATFORM SPECIFIC UTILITY FUNCTIONS/IMPLEMENTATIONS
79#ifdef WIN32
80#include "win32/util_win32.h"
81#endif
82