mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
- Added `AppHub` app - Added `AppHubDetails` app - Added `cJSON` dependency - Renamed `AppSim` module to `FirmwareSim` - Added extra `tt::app::alertdialg::start()` - Renamed `addApp()`, `removeApp()`, `findAppById()` and `getApps()` to `addAppManifest()`, `removeAppManifest()`, `findAppManifestById()` and `getAppManifests()` - Added `tt::lvgl::toolbar_clear_actions()` - Added `tt::network::EspHttpClient` as a thread-safe wrapper around `esp_http_client` - Added `tt::network::http::download()` to download files - Added `tt::network::ntp::isSynced()` - When time is synced, the timestamp is stored in NVS flash. On boot, it is restored. This helps SSL connections when doing a quick reset: when WiFi reconnects, the user doesn't have to wait for NTP sync before SSL works. - Added `tt::json::Reader` as a `cJSON` wrapper - Added `int64_t` support for `Preferences` - Added `int64_t` support for `Bundle` - Added dependencies: `cJSON`, `esp-tls` - When time is synced via NTP, disable time sync. - Added docs to 'tt::file::` functions - Added `tt::string::join()` that works with `std::vector<const char*>` - Fixed `tt::file::getLastPathSegment()` for the scenario when a path was passed with only a single segment - Set `CONFIG_ESP_MAIN_TASK_STACK_SIZE=5120` (from about 3k) for all boards - Set `CONFIG_MBEDTLS_SSL_PROTO_TLS1_3=y` for all boards
97 lines
3.5 KiB
C++
97 lines
3.5 KiB
C++
#pragma once
|
|
|
|
#include <algorithm>
|
|
#include <cstdio>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <functional>
|
|
|
|
namespace tt::string {
|
|
|
|
/**
|
|
* Given a filesystem path as input, try and get the parent path.
|
|
* @param[in] path input path
|
|
* @param[out] output an output buffer that is allocated to at least the size of "current"
|
|
* @return true when successful
|
|
*/
|
|
bool getPathParent(const std::string& path, std::string& output);
|
|
|
|
/**
|
|
* Given a filesystem path as input, get the last segment of a path
|
|
* @param[in] path input path
|
|
*/
|
|
std::string getLastPathSegment(const std::string& path);
|
|
|
|
/**
|
|
* Splits the provided input into separate pieces with delimiter as separator text.
|
|
* When the input string is empty, the output list will be empty too.
|
|
*
|
|
* @param input the input to split up
|
|
* @param delimiter a non-empty string to recognize as separator
|
|
*/
|
|
std::vector<std::string> split(const std::string& input, const std::string& delimiter);
|
|
|
|
/**
|
|
* Splits the provided input into separate pieces with delimiter as separator text.
|
|
* When the input string is empty, the output list will be empty too.
|
|
*
|
|
* @param input the input to split up
|
|
* @param delimiter a non-empty string to recognize as separator
|
|
* @param callback the callback function that receives the split parts
|
|
*/
|
|
void split(const std::string& input, const std::string& delimiter, std::function<void(const std::string&)> callback);
|
|
|
|
/**
|
|
* Join a set of tokens into a single string, given a delimiter (separator).
|
|
* If the input is an empty list, the result will be an empty string.
|
|
* The delimeter is only placed inbetween tokens and not appended at the end of the resulting string.
|
|
*
|
|
* @param input the tokens to join together
|
|
* @param delimiter the separator to join with
|
|
*/
|
|
std::string join(const std::vector<std::string>& input, const std::string& delimiter);
|
|
|
|
/**
|
|
* Join a set of tokens into a single string, given a delimiter (separator).
|
|
* If the input is an empty list, the result will be an empty string.
|
|
* The delimeter is only placed inbetween tokens and not appended at the end of the resulting string.
|
|
*
|
|
* @param input the tokens to join together
|
|
* @param delimiter the separator to join with
|
|
*/
|
|
std::string join(const std::vector<const char*>& input, const std::string& delimiter);
|
|
|
|
/**
|
|
* Returns the lowercase value of a string.
|
|
* @warning This only works for strings with 1 byte per character
|
|
* @param[in] the string with lower and/or uppercase characters
|
|
* @return a string with only lowercase characters
|
|
*/
|
|
template <typename T>
|
|
std::basic_string<T> lowercase(const std::basic_string<T>& input) {
|
|
std::basic_string<T> output = input;
|
|
std::transform(
|
|
output.begin(),
|
|
output.end(),
|
|
output.begin(),
|
|
[](const T character) { return static_cast<T>(std::tolower(character)); }
|
|
);
|
|
return std::move(output);
|
|
}
|
|
|
|
/** @return true when input only has hex characters: [a-z], [A-Z], [0-9] */
|
|
bool isAsciiHexString(const std::string& input);
|
|
|
|
/** @return the first part of a file name right up (and excluding) the first period character. */
|
|
std::string removeFileExtension(const std::string& input);
|
|
|
|
/**
|
|
* Remove the given characters from the start and end of the specified string.
|
|
* @param[in] input the text to trim
|
|
* @param[in] characters the characters to remove from the input
|
|
* @return the input where the specified characters are removed from the start and end of the input string
|
|
*/
|
|
std::string trim(const std::string& input, const std::string& characters);
|
|
|
|
} // namespace
|