author | zecke <zecke> | 2003-08-31 20:14:53 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-31 20:14:53 (UTC) |
commit | 2fb39071c9880b462acd6fa7314d99a032a9df47 (patch) (side-by-side diff) | |
tree | c21ba18503b4a1613692f2114809a00c696e9d02 | |
parent | 2696413e75a401899764f244c8c24026999fdb9d (diff) | |
download | opie-2fb39071c9880b462acd6fa7314d99a032a9df47.zip opie-2fb39071c9880b462acd6fa7314d99a032a9df47.tar.gz opie-2fb39071c9880b462acd6fa7314d99a032a9df47.tar.bz2 |
thanks mickeyl
-rw-r--r-- | core/launcher/launcherglobal.cpp | 83 | ||||
-rw-r--r-- | core/launcher/launcherglobal.h | 19 |
2 files changed, 102 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; +} + + diff --git a/core/launcher/launcherglobal.h b/core/launcher/launcherglobal.h new file mode 100644 index 0000000..e8829c5 --- a/dev/null +++ b/core/launcher/launcherglobal.h @@ -0,0 +1,19 @@ +/* + * original code from global1.cpp Copyright by trolltech + * GPLv2 only zecke@handhelds.org + * + */ +#define private protected +#include <qtopia/global.h> +#undef private + +namespace Opie { + struct Global : public ::Global{ + static bool isAppLnkFileName( const QString& str ); + static QString tempDir(); + static Command* builtinCommands(); + static QGuardedPtr<QWidget>* builtinRunning(); + static QString uuid(); + static QByteArray encodeBase64(const QByteArray& data ); + }; +} |