Files

105 lines
3.9 KiB
C++
Raw Permalink Normal View History

2015-08-20 20:39:08 -07:00
/*
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
*
* This file is part of PortaPack.
*
* 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, or (at your option)
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
2016-01-31 09:34:24 +01:00
#ifndef __STRING_FORMAT_H__
#define __STRING_FORMAT_H__
2015-08-20 20:39:08 -07:00
2016-01-31 09:34:24 +01:00
#include <cstdint>
2023-06-11 13:35:45 -07:00
#include <array>
2016-01-31 09:34:24 +01:00
#include <string>
#include <string_view>
2015-08-20 20:39:08 -07:00
2018-01-09 21:12:19 +00:00
#include "file.hpp"
2016-01-31 09:34:24 +01:00
// BARF! rtc::RTC is leaking everywhere.
2015-08-20 20:39:08 -07:00
#include "lpc43xx_cpp.hpp"
using namespace lpc43xx;
2017-08-17 12:56:47 +01:00
enum TimeFormat {
2023-05-19 08:16:05 +12:00
YMDHMS = 0,
HMS = 1,
HM = 2
2017-08-17 12:56:47 +01:00
};
2023-05-19 08:16:05 +12:00
const char unit_prefix[7]{'n', 'u', 'm', 0, 'k', 'M', 'G'};
2017-11-02 17:11:26 +00:00
2023-07-11 13:48:36 -07:00
using StringFormatBuffer = std::array<char, 24>;
2023-06-11 13:35:45 -07:00
/* Integer conversion without memory allocations. */
char* to_string_dec_int(int64_t n, StringFormatBuffer& buffer, size_t& length);
char* to_string_dec_uint(uint64_t n, StringFormatBuffer& buffer, size_t& length);
2023-07-11 13:48:36 -07:00
std::string to_string_dec_int(int64_t n);
std::string to_string_dec_uint(uint64_t n);
2023-06-11 13:35:45 -07:00
std::string to_string_bin(const uint32_t n, const uint8_t l = 0);
2023-07-11 13:48:36 -07:00
std::string to_string_dec_uint(const uint32_t n, const int32_t l, const char fill = ' ');
std::string to_string_dec_int(const int32_t n, const int32_t l, const char fill = 0);
std::string to_string_decimal(float decimal, int8_t precision);
2024-04-21 20:44:47 +12:00
std::string to_string_decimal_padding(float decimal, int8_t precision, const int32_t l);
2023-09-12 12:38:19 -07:00
std::string to_string_hex(uint64_t n, int32_t length);
std::string to_string_hex_array(uint8_t* array, int32_t length);
/* Helper to select length based on type size. */
template <typename T>
std::string to_string_hex(T n) {
return to_string_hex(n, sizeof(T) * 2); // Two digits/byte.
}
2015-08-20 20:39:08 -07:00
2022-03-28 20:53:09 -07:00
std::string to_string_freq(const uint64_t f);
2017-05-18 21:56:55 +01:00
std::string to_string_short_freq(const uint64_t f);
std::string to_string_rounded_freq(const uint64_t f, int8_t precision);
2017-12-11 04:14:54 +00:00
std::string to_string_time_ms(const uint32_t ms);
2017-04-24 18:15:57 +01:00
2017-08-17 12:56:47 +01:00
std::string to_string_datetime(const rtc::RTC& value, const TimeFormat format = YMDHMS);
2016-01-31 09:34:24 +01:00
std::string to_string_timestamp(const rtc::RTC& value);
2018-01-09 21:12:19 +00:00
std::string to_string_FAT_timestamp(const FATTimestamp& timestamp);
2015-08-20 20:39:08 -07:00
2023-05-19 13:39:35 -07:00
// Gets a human readable file size string.
std::string to_string_file_size(uint32_t file_size);
2023-10-24 18:08:45 -04:00
// Converts Mac Address to string.
2023-11-06 05:16:01 -05:00
std::string to_string_mac_address(const uint8_t* macAddress, uint8_t length, bool noColon);
2023-11-01 06:46:41 -04:00
std::string to_string_formatted_mac_address(const char* macAddress);
2023-11-16 08:46:45 -05:00
void generateRandomMacAddress(char* macAddress);
2023-10-24 18:08:45 -04:00
2023-11-19 20:53:53 -05:00
uint64_t readUntil(File& file, char* result, std::size_t maxBufferSize, char delimiter);
2023-09-18 14:22:46 -07:00
/* Scales 'n' to be a value less than 1000. 'base_unit' is the index of the unit from
* 'unit_prefix' that 'n' is in initially. 3 is the index of the '1s' unit. */
std::string unit_auto_scale(double n, const uint32_t base_unit, uint32_t precision);
double get_decimals(double num, int16_t mult, bool round = false);
std::string trim(std::string_view str); // Remove whitespace at ends.
std::string trimr(std::string_view str); // Remove trailing spaces
std::string truncate(std::string_view, size_t length);
2023-09-12 12:38:19 -07:00
/* Gets the int value for a character given the radix.
* e.g. '5' => 5, 'D' => 13. Out of bounds => 0. */
uint8_t char_to_uint(char c, uint8_t radix = 10);
/* Gets the int value for a character given the radix.
* e.g. 5 => '5', 13 => 'D'. Out of bounds => '\0'. */
char uint_to_char(uint8_t val, uint8_t radix = 10);
2023-05-19 08:16:05 +12:00
#endif /*__STRING_FORMAT_H__*/