X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Futil.h;h=6b29ea5c96749bdcce97debde4ed76cc803e71f2;hp=8b312f93649103c8715262c1339bb7c2851a1f30;hb=db00831bca59a012242d1ad5fac52a20c6cd2956;hpb=d261638f2e30aa47a08f1c3f43372da0c0e8d13f diff --git a/src/common/util.h b/src/common/util.h index 8b312f93..6b29ea5c 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -20,22 +20,24 @@ #pragma once +#include "common-export.h" + #include #include #include -QString nickFromMask(const QString &mask); -QString userFromMask(const QString &mask); -QString hostFromMask(const QString &mask); -bool isChannelName(const QString &str); +COMMON_EXPORT QString nickFromMask(const QString& mask); +COMMON_EXPORT QString userFromMask(const QString& mask); +COMMON_EXPORT QString hostFromMask(const QString& mask); +COMMON_EXPORT bool isChannelName(const QString& str); //! Strip mIRC format codes -QString stripFormatCodes(QString); +COMMON_EXPORT QString stripFormatCodes(QString); //! Remove accelerator markers (&) from the string -QString stripAcceleratorMarkers(const QString &); +COMMON_EXPORT QString stripAcceleratorMarkers(const QString&); -QString secondsToString(int timeInSeconds); +COMMON_EXPORT QString secondsToString(int timeInSeconds); //! Take a string and decode it using the specified text codec, recognizing utf8. /** This function takes a string and first checks if it is encoded in utf8, in which case it is @@ -44,12 +46,12 @@ QString secondsToString(int timeInSeconds); * \param codec The text codec we use if the input is not utf8 * \return The decoded string. */ -QString decodeString(const QByteArray &input, QTextCodec *codec = 0); +COMMON_EXPORT QString decodeString(const QByteArray& input, QTextCodec* codec = nullptr); -uint editingDistance(const QString &s1, const QString &s2); +COMMON_EXPORT uint editingDistance(const QString& s1, const QString& s2); template -QVariantList toVariantList(const QList &list) +QVariantList toVariantList(const QList& list) { QVariantList variants; for (int i = 0; i < list.count(); i++) { @@ -58,9 +60,8 @@ QVariantList toVariantList(const QList &list) return variants; } - template -QList fromVariantList(const QVariantList &variants) +QList fromVariantList(const QVariantList& variants) { QList list; for (int i = 0; i < variants.count(); i++) { @@ -69,8 +70,7 @@ QList fromVariantList(const QVariantList &variants) return list; } - -QByteArray prettyDigest(const QByteArray &digest); +COMMON_EXPORT QByteArray prettyDigest(const QByteArray& digest); /** * Format a string with %%%% to current date/timestamp via QDateTime. @@ -78,26 +78,54 @@ QByteArray prettyDigest(const QByteArray &digest); * @param[in] formatStr String with format codes * @return String with current date/time substituted in via formatting codes */ -QString formatCurrentDateTimeInString(const QString &formatStr); +COMMON_EXPORT QString formatCurrentDateTimeInString(const QString& formatStr); -/** Check if a scope rule matches a string +/** + * Try to localize a given date/time in seconds from Unix epoch, pass through string if invalid * - * When isRegEx is false: - * Checks that the string does NOT match ANY inverted rules (prefixed by '!'), then checks that - * it matches AT LEAST one normal (non-inverted) rule. + * Allows compatibility with date/time fields that may or may not be in Unix epoch format, + * localizing if possible, leaving alone if not. + * + * @param possibleEpochDate Date/time that might be in seconds since Unix epoch format + * @param dateFormat Desired format of the date/time string + * @param useUTC If true, use UTC timezone, otherwise use local time + * @return Localized date/time if parse succeeded, otherwise the source string + */ +COMMON_EXPORT QString tryFormatUnixEpoch(const QString& possibleEpochDate, + Qt::DateFormat dateFormat = Qt::DateFormat::TextDate, + bool useUTC = false); + +/** + * Format the given date/time in ISO 8601 format with timezone offset * - * If only inverted rules are specified, it'll match so long as the string does not match any - * inverted rules (implicit wildcard). + * @param dateTime Date/time of interest + * @return Date/time in ISO 8601 format with timezone offset + */ +COMMON_EXPORT QString formatDateTimeToOffsetISO(const QDateTime& dateTime); + +namespace detail { + +template +struct SelectOverloadHelper +{ + template + constexpr auto operator()(R (C::*func)(Args...)) const noexcept -> decltype(func) + { + return func; + } +}; + +} // namespace detail + +/** + * Helper for resolving ambiguous overloads when using the member function-based connect syntax. * - * When isRegEx is true: - * Checks that the string matches the entire scopeRule as a regular expression. If scopeRule starts - * with a '!', check that the string does NOT match the regular expression. + * Example usage: + * @code + * connect(this, selectOverload(&MyClass::mySignal), other, &Other::mySlot); + * @endcode * - * @param string String to test, e.g. network/channel name - * @param scopeRule ';'-separated list of wildcard expressions, prefix of '!' inverts subrule - * @param isRegEx If true, treat entire scope rule as regular expression, not wildcards - * @param isCaseSensitive If true, treat as case-sensitive, else case-insensitive - * @return True if matches, otherwise false + * @tparam Args Argument types of the desired signature */ -bool scopeMatch(const QString &string, const QString &scopeRule, - const bool &isRegEx = false, const bool &isCaseSensitive = false); +template +constexpr Q_DECL_UNUSED detail::SelectOverloadHelper selectOverload = {};