X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Ftypes.h;h=fb85012d47b3e0a61a66be742b2d6bb20001116b;hp=5c800952987a1243dec92408e31b56d82097f904;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=933e1bf5264b6bbd91941f1f06e6e9675e24221a diff --git a/src/common/types.h b/src/common/types.h index 5c800952..fb85012d 100644 --- a/src/common/types.h +++ b/src/common/types.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -58,20 +58,53 @@ public: friend QDataStream &operator>>(QDataStream &in, SignedId &signedId); }; - inline QDataStream &operator<<(QDataStream &out, const SignedId &signedId) { out << signedId.toInt(); return out; } inline QDataStream &operator>>(QDataStream &in, SignedId &signedId) { in >> signedId.id; return in; } inline QTextStream &operator<<(QTextStream &out, const SignedId &signedId) { out << QString::number(signedId.toInt()); return out; } inline QDebug operator<<(QDebug dbg, const SignedId &signedId) { dbg.space() << signedId.toInt(); return dbg; } inline uint qHash(const SignedId &id) { return qHash(id.toInt()); } +class SignedId64 +{ +protected: + qint64 id; + +public: + inline SignedId64(qint64 _id = 0) { id = _id; } + inline qint64 toQint64() const { return id; } + inline bool isValid() const { return id > 0; } + + inline bool operator==(const SignedId64 &other) const { return id == other.id; } + inline bool operator!=(const SignedId64 &other) const { return id != other.id; } + inline bool operator<(const SignedId64 &other) const { return id < other.id; } + inline bool operator<=(const SignedId64 &other) const { return id <= other.id; } + inline bool operator>(const SignedId64 &other) const { return id > other.id; } + inline bool operator>=(const SignedId64 &other) const { return id >= other.id; } + inline bool operator==(qint64 i) const { return id == i; } + inline bool operator!=(qint64 i) const { return id != i; } + inline bool operator<(qint64 i) const { return id < i; } + inline bool operator>(qint64 i) const { return id > i; } + inline bool operator<=(qint64 i) const { return id <= i; } + + inline SignedId64 operator++(int) { id++; return *this; } + //inline operator int() const { return toQint64(); } // no automatic conversion! + + friend QDataStream &operator>>(QDataStream &in, SignedId64 &signedId); +}; + +QDataStream &operator<<(QDataStream &out, const SignedId64 &signedId); +QDataStream &operator>>(QDataStream &in, SignedId64 &signedId); +inline QTextStream &operator<<(QTextStream &out, const SignedId64 &signedId) { out << QString::number(signedId.toQint64()); return out; } +inline QDebug operator<<(QDebug dbg, const SignedId64 &signedId) { dbg.space() << signedId.toQint64(); return dbg; } +inline uint qHash(const SignedId64 &id) { return qHash(id.toQint64()); } + struct UserId : public SignedId { inline UserId(int _id = 0) : SignedId(_id) {} //inline operator QVariant() const { return QVariant::fromValue(*this); } // no automatic conversion! }; -struct MsgId : public SignedId { - inline MsgId(int _id = 0) : SignedId(_id) {} +struct MsgId : public SignedId64 { + inline MsgId(qint64 _id = 0) : SignedId64(_id) {} //inline operator QVariant() const { return QVariant::fromValue(*this); } }; @@ -104,8 +137,8 @@ Q_DECLARE_METATYPE(AccountId) Q_DECLARE_METATYPE(QHostAddress) // a few typedefs -typedef QList MsgIdList; -typedef QList BufferIdList; +using MsgIdList = QList; +using BufferIdList = QList; /** * Catch-all stream serialization operator for enum types. @@ -115,7 +148,7 @@ typedef QList BufferIdList; * @returns A reference to the stream */ template{}, int>::type = 0> + typename = typename std::enable_if::value>::type> QDataStream &operator<<(QDataStream &out, T value) { out << static_cast::type>(value); return out; @@ -125,11 +158,11 @@ QDataStream &operator<<(QDataStream &out, T value) { * Catch-all stream serialization operator for enum types. * * @param[in,out] in Stream to deserialize from - * @param[in] value Value to deserialize into + * @param[out] value Value to deserialize into * @returns A reference to the stream */ template{}, int>::type = 0> + typename = typename std::enable_if::value>::type> QDataStream &operator>>(QDataStream &in, T &value) { typename std::underlying_type::type v; in >> v; @@ -137,12 +170,16 @@ QDataStream &operator>>(QDataStream &in, T &value) { return in; } -//! Base class for exceptions. -struct Exception { - Exception(QString msg = "Unknown Exception") : _msg(msg) {} - virtual ~Exception() {} // make gcc happy - virtual inline QString msg() { return _msg; } +// Exceptions -protected: - QString _msg; +/** + * Thrown during initialization to enforce exiting the application before the event loop is started + */ +struct ExitException +{ + int exitCode; + QString errorString; + + ExitException(int code = EXIT_FAILURE, QString error = {}) + : exitCode(code), errorString(std::move(error)) {} };