|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- /*
- * Carla String
- * Copyright (C) 2013 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the GPL.txt file
- */
-
- #ifndef __CARLA_STRING_HPP__
- #define __CARLA_STRING_HPP__
-
- #include "CarlaJuceUtils.hpp"
-
- // -------------------------------------------------
- // CarlaString class
-
- class CarlaString
- {
- public:
- // ---------------------------------------------
- // constructors (no explicit conversions allowed)
-
- explicit CarlaString()
- {
- _init();
- _dup(nullptr);
- }
-
- explicit CarlaString(char* const strBuf)
- {
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const char* const strBuf)
- {
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const int value)
- {
- char strBuf[0xff] = { '\0' };
- std::snprintf(strBuf, 0xff, "%d", value);
-
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const unsigned int value, const bool hexadecimal = false)
- {
- char strBuf[0xff] = { '\0' };
- std::snprintf(strBuf, 0xff, hexadecimal ? "0x%x" : "%u", value);
-
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const long int value)
- {
- char strBuf[0xff] = { '\0' };
- std::snprintf(strBuf, 0xff, "%ld", value);
-
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const unsigned long int value, const bool hexadecimal = false)
- {
- char strBuf[0xff] = { '\0' };
- std::snprintf(strBuf, 0xff, hexadecimal ? "0x%lx" : "%lu", value);
-
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const float value)
- {
- char strBuf[0xff] = { '\0' };
- std::snprintf(strBuf, 0xff, "%f", value);
-
- _init();
- _dup(strBuf);
- }
-
- explicit CarlaString(const double value)
- {
- char strBuf[0xff] = { '\0' };
- std::snprintf(strBuf, 0xff, "%g", value);
-
- _init();
- _dup(strBuf);
- }
-
- // ---------------------------------------------
- // non-explicit constructor
-
- CarlaString(const CarlaString& str)
- {
- _init();
- _dup(str.buffer);
- }
-
- // ---------------------------------------------
- // destructor
-
- ~CarlaString()
- {
- CARLA_ASSERT(buffer != nullptr);
-
- delete[] buffer;
- }
-
- // ---------------------------------------------
- // public methods
-
- size_t length() const
- {
- return bufferLen;
- }
-
- bool isEmpty() const
- {
- return (bufferLen == 0);
- }
-
- bool isNotEmpty() const
- {
- return (bufferLen != 0);
- }
-
- #ifdef __USE_GNU
- bool contains(const char* const strBuf, const bool ignoreCase = false) const
- {
- if (strBuf == nullptr)
- return false;
-
- if (ignoreCase)
- return (strcasestr(buffer, strBuf) != nullptr);
- else
- return (std::strstr(buffer, strBuf) != nullptr);
- }
-
- bool contains(const CarlaString& str, const bool ignoreCase = false) const
- {
- return contains(str.buffer, ignoreCase);
- }
- #else
- bool contains(const char* const strBuf) const
- {
- if (strBuf == nullptr)
- return false;
-
- return (std::strstr(buffer, strBuf) != nullptr);
- }
-
- bool contains(const CarlaString& str) const
- {
- return contains(str.buffer);
- }
- #endif
-
- bool isDigit(const size_t pos) const
- {
- if (pos >= bufferLen)
- return false;
-
- return (buffer[pos] >= '0' && buffer[pos] <= '9');
- }
-
- void clear()
- {
- truncate(0);
- }
-
- size_t find(const char c) const
- {
- for (size_t i=0; i < bufferLen; ++i)
- {
- if (buffer[i] == c)
- return i;
- }
-
- return 0;
- }
-
- size_t rfind(const char c) const
- {
- size_t pos = 0;
-
- for (size_t i=0; i < bufferLen; ++i)
- {
- if (buffer[i] == c)
- pos = i;
- }
-
- return pos;
- }
-
- void replace(const char before, const char after)
- {
- if (after == '\0')
- return;
-
- for (size_t i=0; i < bufferLen; ++i)
- {
- if (buffer[i] == before)
- buffer[i] = after;
- else if (buffer[i] == '\0')
- break;
- }
- }
-
- void truncate(const size_t n)
- {
- if (n >= bufferLen)
- return;
-
- for (size_t i=n; i < bufferLen; ++i)
- buffer[i] = '\0';
-
- bufferLen = n;
- }
-
- void toBasic()
- {
- for (size_t i=0; i < bufferLen; ++i)
- {
- if (buffer[i] >= '0' && buffer[i] <= '9')
- continue;
- if (buffer[i] >= 'A' && buffer[i] <= 'Z')
- continue;
- if (buffer[i] >= 'a' && buffer[i] <= 'z')
- continue;
- if (buffer[i] == '_')
- continue;
-
- buffer[i] = '_';
- }
- }
-
- void toLower()
- {
- static const char kCharDiff = 'a' - 'A';
-
- for (size_t i=0; i < bufferLen; ++i)
- {
- if (buffer[i] >= 'A' && buffer[i] <= 'Z')
- buffer[i] += kCharDiff;
- }
- }
-
- void toUpper()
- {
- static const char kCharDiff = 'a' - 'A';
-
- for (size_t i=0; i < bufferLen; ++i)
- {
- if (buffer[i] >= 'a' && buffer[i] <= 'z')
- buffer[i] -= kCharDiff;
- }
- }
-
- // ---------------------------------------------
- // public operators
-
- operator const char*() const
- {
- return buffer;
- }
-
- char& operator[](const size_t pos)
- {
- return buffer[pos];
- }
-
- bool operator==(const char* const strBuf) const
- {
- return (strBuf != nullptr && std::strcmp(buffer, strBuf) == 0);
- }
-
- bool operator==(const CarlaString& str) const
- {
- return operator==(str.buffer);
- }
-
- bool operator!=(const char* const strBuf) const
- {
- return !operator==(strBuf);
- }
-
- bool operator!=(const CarlaString& str) const
- {
- return !operator==(str.buffer);
- }
-
- CarlaString& operator=(const char* const strBuf)
- {
- _dup(strBuf);
-
- return *this;
- }
-
- CarlaString& operator=(const CarlaString& str)
- {
- return operator=(str.buffer);
- }
-
- CarlaString& operator+=(const char* const strBuf)
- {
- const size_t newBufSize = bufferLen + ((strBuf != nullptr) ? std::strlen(strBuf) : 0) + 1;
- char newBuf[newBufSize];
-
- std::strcpy(newBuf, buffer);
- std::strcat(newBuf, strBuf);
-
- _dup(newBuf, newBufSize-1);
-
- return *this;
- }
-
- CarlaString& operator+=(const CarlaString& str)
- {
- return operator+=(str.buffer);
- }
-
- CarlaString operator+(const char* const strBuf)
- {
- const size_t newBufSize = bufferLen + ((strBuf != nullptr) ? std::strlen(strBuf) : 0) + 1;
- char newBuf[newBufSize];
-
- std::strcpy(newBuf, buffer);
- std::strcat(newBuf, strBuf);
-
- return CarlaString(newBuf);
- }
-
- CarlaString operator+(const CarlaString& str)
- {
- return operator+(str.buffer);
- }
-
- // ---------------------------------------------
-
- private:
- char* buffer;
- size_t bufferLen;
- bool firstInit;
-
- void _init()
- {
- buffer = nullptr;
- bufferLen = 0;
- firstInit = true;
- }
-
- // allocate string strBuf if not null
- // size > 0 only if strBuf is valid
- void _dup(const char* const strBuf, const size_t size = 0)
- {
- if (strBuf != nullptr)
- {
- // don't recreate string if contents match
- if (firstInit || std::strcmp(buffer, strBuf) != 0)
- {
- if (! firstInit)
- {
- CARLA_ASSERT(buffer != nullptr);
- delete[] buffer;
- }
-
- bufferLen = (size > 0) ? size : std::strlen(strBuf);
- buffer = new char[bufferLen+1];
-
- std::strcpy(buffer, strBuf);
-
- buffer[bufferLen] = '\0';
-
- firstInit = false;
- }
- }
- else
- {
- CARLA_ASSERT(size == 0);
-
- // don't recreate null string
- if (firstInit || bufferLen != 0)
- {
- if (! firstInit)
- {
- CARLA_ASSERT(buffer != nullptr);
- delete[] buffer;
- }
-
- bufferLen = 0;
- buffer = new char[1];
- buffer[0] = '\0';
-
- firstInit = false;
- }
- }
- }
-
- CARLA_LEAK_DETECTOR(CarlaString)
- CARLA_PREVENT_HEAP_ALLOCATION
- };
-
- static inline
- CarlaString operator+(const CarlaString& strBefore, const char* const strBufAfter)
- {
- const char* const strBufBefore = (const char*)strBefore;
- const size_t newBufSize = strBefore.length() + ((strBufAfter != nullptr) ? std::strlen(strBufAfter) : 0) + 1;
- char newBuf[newBufSize];
-
- std::strcpy(newBuf, strBufBefore);
- std::strcat(newBuf, strBufAfter);
-
- return CarlaString(newBuf);
- }
-
- static inline
- CarlaString operator+(const char* const strBufBefore, const CarlaString& strAfter)
- {
- const char* const strBufAfter = (const char*)strAfter;
- const size_t newBufSize = ((strBufBefore != nullptr) ? std::strlen(strBufBefore) : 0) + strAfter.length() + 1;
- char newBuf[newBufSize];
-
- std::strcpy(newBuf, strBufBefore);
- std::strcat(newBuf, strBufAfter);
-
- return CarlaString(newBuf);
- }
-
- // -------------------------------------------------
-
- #endif // __CARLA_UTILS_HPP__
|