summaryrefslogtreecommitdiff
path: root/tools/gator/daemon/OlyUtility.h
diff options
context:
space:
mode:
authorPhilippe Langlais <philippe.langlais@stericsson.com>2012-06-04 19:46:20 +0800
committerPhilippe Langlais <philippe.langlais@stericsson.com>2012-06-04 19:46:20 +0800
commitd9357d6650ce38ca31d0cfdbcb041ebc32f10f26 (patch)
tree8f20fbd51edfd1c3f544052dd124c54379ebf9b9 /tools/gator/daemon/OlyUtility.h
parent20c81608dcd30fc3817d6d430fca83f52b9aa965 (diff)
parent75ae3ec8fe927285d2220acb87a2fa087b9d5f47 (diff)
Merge topic branch 'tracking-armlt-gator-5.10' into integration-linux-ux500
Signed-off-by: Philippe Langlais <philippe.langlais@stericsson.com>
Diffstat (limited to 'tools/gator/daemon/OlyUtility.h')
-rwxr-xr-xtools/gator/daemon/OlyUtility.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/gator/daemon/OlyUtility.h b/tools/gator/daemon/OlyUtility.h
new file mode 100755
index 00000000000..793a733d8d4
--- /dev/null
+++ b/tools/gator/daemon/OlyUtility.h
@@ -0,0 +1,38 @@
+/**
+ * Copyright (C) ARM Limited 2010-2012. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef OLY_UTILITY_H
+#define OLY_UTILITY_H
+
+#ifdef WIN32
+#define PATH_SEPARATOR '\\'
+#else
+#define PATH_SEPARATOR '/'
+#endif
+
+class OlyUtility {
+public:
+ OlyUtility() {};
+ ~OlyUtility() {};
+ bool stringToBool(const char* string, bool defValue);
+ void stringToLower(char* string);
+ int getApplicationFullPath(char* path, int sizeOfPath);
+ char* readFromDisk(const char* file, unsigned int *size = NULL, bool appendNull = true);
+ int writeToDisk(const char* path, const char* file);
+ int appendToDisk(const char* path, const char* file);
+ int copyFile(const char* srcFile, const char* dstFile);
+ const char* getFilePart(const char* path);
+ char* getPathPart(char* path);
+private:
+};
+
+#include "mxml/mxml.h"
+const char * mxmlWhitespaceCB(mxml_node_t *node, int where);
+extern OlyUtility* util;
+
+#endif // OLY_UTILITY_H