2018-06-06 20:33:31 +01:00
|
|
|
/*
|
2025-03-18 15:13:07 +00:00
|
|
|
* Copyright (C) 2009,2014,2015,2016,2023,2025 Jonathan Naylor, G4KLX
|
2018-06-06 20:33:31 +01:00
|
|
|
*
|
|
|
|
|
* 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; version 2 of the License.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Utils.h"
|
|
|
|
|
#include "Log.h"
|
|
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cassert>
|
|
|
|
|
|
2023-07-11 11:25:39 +01:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
#else
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-06-06 20:33:31 +01:00
|
|
|
void CUtils::dump(const std::string& title, const unsigned char* data, unsigned int length)
|
|
|
|
|
{
|
2025-03-18 13:52:17 +00:00
|
|
|
assert(data != nullptr);
|
2018-06-06 20:33:31 +01:00
|
|
|
|
|
|
|
|
dump(2U, title, data, length);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CUtils::dump(int level, const std::string& title, const unsigned char* data, unsigned int length)
|
|
|
|
|
{
|
2025-03-18 13:52:17 +00:00
|
|
|
assert(data != nullptr);
|
2018-06-06 20:33:31 +01:00
|
|
|
|
|
|
|
|
::Log(level, "%s", title.c_str());
|
|
|
|
|
|
|
|
|
|
unsigned int offset = 0U;
|
|
|
|
|
|
|
|
|
|
while (length > 0U) {
|
|
|
|
|
std::string output;
|
|
|
|
|
|
|
|
|
|
unsigned int bytes = (length > 16U) ? 16U : length;
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0U; i < bytes; i++) {
|
|
|
|
|
char temp[10U];
|
|
|
|
|
::sprintf(temp, "%02X ", data[offset + i]);
|
|
|
|
|
output += temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = bytes; i < 16U; i++)
|
|
|
|
|
output += " ";
|
|
|
|
|
|
|
|
|
|
output += " *";
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0U; i < bytes; i++) {
|
|
|
|
|
unsigned char c = data[offset + i];
|
|
|
|
|
|
|
|
|
|
if (::isprint(c))
|
|
|
|
|
output += c;
|
|
|
|
|
else
|
|
|
|
|
output += '.';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
output += '*';
|
|
|
|
|
|
|
|
|
|
::Log(level, "%04X: %s", offset, output.c_str());
|
|
|
|
|
|
|
|
|
|
offset += 16U;
|
|
|
|
|
|
|
|
|
|
if (length >= 16U)
|
|
|
|
|
length -= 16U;
|
|
|
|
|
else
|
|
|
|
|
length = 0U;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-11 11:25:39 +01:00
|
|
|
std::string CUtils::createTimestamp()
|
|
|
|
|
{
|
|
|
|
|
char buffer[100U];
|
|
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
|
SYSTEMTIME st;
|
|
|
|
|
::GetSystemTime(&st);
|
|
|
|
|
|
2026-03-23 13:00:13 +00:00
|
|
|
::sprintf(buffer, "%04u-%02u-%02uT%02u:%02u:%02u.%03uZ", st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
|
2023-07-11 11:25:39 +01:00
|
|
|
#else
|
|
|
|
|
struct timeval now;
|
2025-03-18 15:13:07 +00:00
|
|
|
::gettimeofday(&now, nullptr);
|
2023-07-11 11:25:39 +01:00
|
|
|
|
|
|
|
|
struct tm* tm = ::gmtime(&now.tv_sec);
|
|
|
|
|
|
2026-03-23 13:00:13 +00:00
|
|
|
::sprintf(buffer, "%04d-%02d-%02dT%02d:%02d:%02d.%03lldZ", tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, now.tv_usec / 1000LL);
|
2023-07-11 11:25:39 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|