summaryrefslogtreecommitdiff
path: root/core/launcher/launcherglobal.cpp
authorzecke <zecke>2003-08-31 20:14:53 (UTC)
committer zecke <zecke>2003-08-31 20:14:53 (UTC)
commit2fb39071c9880b462acd6fa7314d99a032a9df47 (patch) (side-by-side diff)
treec21ba18503b4a1613692f2114809a00c696e9d02 /core/launcher/launcherglobal.cpp
parent2696413e75a401899764f244c8c24026999fdb9d (diff)
downloadopie-2fb39071c9880b462acd6fa7314d99a032a9df47.zip
opie-2fb39071c9880b462acd6fa7314d99a032a9df47.tar.gz
opie-2fb39071c9880b462acd6fa7314d99a032a9df47.tar.bz2
thanks mickeyl
Diffstat (limited to 'core/launcher/launcherglobal.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcherglobal.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/core/launcher/launcherglobal.cpp b/core/launcher/launcherglobal.cpp
new file mode 100644
index 0000000..84caa93
--- a/dev/null
+++ b/core/launcher/launcherglobal.cpp
@@ -0,0 +1,83 @@
+/*
+ * GPLv2 only
+ *
+ * TT 2002-2002,2003
+ */
+#include <qstring.h>
+#include <qcstring.h>
+#include <qwidget.h>
+#include <qguardedptr.h>
+#include <qfile.h>
+#include <qtextstream.h>
+
+#include <qtopia/mimetype.h>
+
+#include "launcherglobal.h"
+
+bool Opie::Global::isAppLnkFileName( const QString& file ) {
+ if ( file.right(1) == "/" )
+ return FALSE;
+
+ return file.find(MimeType::appsFolderName()+"/")==0;
+}
+
+QString Opie::Global::tempDir() {
+ return QString::fromLatin1("/tmp/");
+}
+
+Global::Command* Opie::Global::builtinCommands() {
+ return builtin;
+}
+
+QGuardedPtr<QWidget>* Opie::Global::builtinRunning() {
+ return running;
+}
+
+QString Opie::Global::uuid() {
+ QFile file( "/proc/sys/kernel/random/uuid" );
+ if (!file.open(IO_ReadOnly ) )
+ return QString::null;
+
+ QTextStream stream(&file);
+
+ return "{" + stream.read().stripWhiteSpace() + "}";
+}
+
+QByteArray Opie::Global::encodeBase64(const QByteArray& origData ) {
+// follows simple algorithm from rsync code
+ uchar *in = (uchar*)origData.data();
+
+ int inbytes = origData.size();
+ int outbytes = ((inbytes * 8) + 5) / 6;
+ int padding = 4-outbytes%4; if ( padding == 4 ) padding = 0;
+
+ QByteArray outbuf(outbytes+padding);
+ uchar* out = (uchar*)outbuf.data();
+
+ const char *b64 =
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+
+ for (int i = 0; i < outbytes; i++) {
+ int byte = (i * 6) / 8;
+ int bit = (i * 6) % 8;
+ if (bit < 3) {
+ if (byte < inbytes)
+ *out = (b64[(in[byte] >> (2 - bit)) & 0x3F]);
+ } else {
+ if (byte + 1 == inbytes) {
+ *out = (b64[(in[byte] << (bit - 2)) & 0x3F]);
+ } else {
+ *out = (b64[(in[byte] << (bit - 2) |
+ in[byte + 1] >> (10 - bit)) & 0x3F]);
+ }
+ }
+ ++out;
+ }
+ ASSERT(out == (uchar*)outbuf.data() + outbuf.size() - padding);
+ while ( padding-- )
+ *out++='=';
+
+ return outbuf;
+}
+
+