Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
172eed8d2c | |||
bbeab27f2e | |||
7fe8e30c89 | |||
57586faf32 |
2 changed files with 80 additions and 23 deletions
|
@ -3,11 +3,13 @@
|
|||
#include <chrono>
|
||||
#include <cstring>
|
||||
#include <asio.hpp>
|
||||
#include <regex>
|
||||
#include <limits>
|
||||
|
||||
const int NTP_PORT = 123;
|
||||
const int NTP_PACKET_SIZE = 48;
|
||||
|
||||
void queryNTPServer(const std::string& server) {
|
||||
void queryNTPServer(const std::string& server, int utc_offset) {
|
||||
try {
|
||||
asio::io_context io_context;
|
||||
|
||||
|
@ -34,17 +36,27 @@ void queryNTPServer(const std::string& server) {
|
|||
|
||||
const unsigned long long NTP_TIMESTAMP_DELTA = 2208988800ULL;
|
||||
unsigned long long seconds = (static_cast<unsigned long long>(response[40]) << 24) |
|
||||
(static_cast<unsigned long long>(response[41]) << 16) |
|
||||
(static_cast<unsigned long long>(response[42]) << 8) |
|
||||
static_cast<unsigned long long>(response[43]);
|
||||
(static_cast<unsigned long long>(response[41]) << 16) |
|
||||
(static_cast<unsigned long long>(response[42]) << 8) |
|
||||
(static_cast<unsigned long long>(response[43]));
|
||||
seconds -= NTP_TIMESTAMP_DELTA;
|
||||
|
||||
std::time_t time = static_cast<std::time_t>(seconds);
|
||||
std::tm* utc_time = std::gmtime(&time);
|
||||
std::time_t raw_time = static_cast<std::time_t>(seconds);
|
||||
std::tm* utc_time = std::gmtime(&raw_time);
|
||||
|
||||
std::time_t adjusted_time = raw_time + (utc_offset * 3600);
|
||||
std::tm* local_time = std::gmtime(&adjusted_time);
|
||||
|
||||
std::cout << "Details of " << server << "\n";
|
||||
std::cout << "Time: " << std::put_time(utc_time, "%H:%M:%S") << " UTC\n";
|
||||
std::cout << "Date: " << std::put_time(utc_time, "%Y-%m-%d") << "\n";
|
||||
|
||||
if (utc_offset == 0) {
|
||||
std::cout << "Time: " << std::put_time(utc_time, "%H:%M:%S") << " UTC\n";
|
||||
} else {
|
||||
std::cout << "Time (utc" << (utc_offset >= 0 ? "+" : "") << utc_offset << "): "
|
||||
<< std::put_time(local_time, "%H:%M:%S") << "\n";
|
||||
}
|
||||
|
||||
std::cout << "Date: " << std::put_time(local_time, "%Y-%m-%d") << "\n";
|
||||
std::cout << "Ping: " << std::fixed << std::setprecision(3) << ping.count() * 1000 << " ms\n";
|
||||
|
||||
} catch (const std::exception& e) {
|
||||
|
@ -52,13 +64,50 @@ void queryNTPServer(const std::string& server) {
|
|||
}
|
||||
}
|
||||
|
||||
int parseUTCOffset(const std::string& timezone) {
|
||||
std::regex tz_regex(R"(^utc([+-]?\d+)$)", std::regex::icase);
|
||||
std::smatch match;
|
||||
if (std::regex_match(timezone, match, tz_regex)) {
|
||||
try {
|
||||
int offset = std::stoi(match[1]);
|
||||
if (offset < -12 || offset > 14) {
|
||||
throw std::out_of_range("UTC offset out of range (-12 to +14)");
|
||||
}
|
||||
return offset;
|
||||
} catch (const std::exception&) {
|
||||
throw std::invalid_argument("Invalid UTC offset");
|
||||
}
|
||||
}
|
||||
throw std::invalid_argument("Invalid timezone format");
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
if (argc != 2) {
|
||||
std::cerr << "Usage: " << argv[0] << " <NTP server>\n";
|
||||
if (argc < 2 || argc > 3) {
|
||||
std::cerr << "Usage: " << argv[0] << " [-t=utcX] <NTP server>\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
std::string server = argv[1];
|
||||
queryNTPServer(server);
|
||||
std::string timezone_flag = "-t=utc0";
|
||||
std::string server;
|
||||
|
||||
if (argc == 3) {
|
||||
timezone_flag = argv[1];
|
||||
server = argv[2];
|
||||
} else {
|
||||
server = argv[1];
|
||||
}
|
||||
|
||||
int utc_offset = 0;
|
||||
if (timezone_flag.rfind("-t=", 0) == 0 || timezone_flag.rfind("--timezone=", 0) == 0) {
|
||||
std::string timezone = timezone_flag.substr(timezone_flag.find('=') + 1);
|
||||
try {
|
||||
utc_offset = parseUTCOffset(timezone);
|
||||
} catch (const std::exception& e) {
|
||||
std::cerr << "Error: " << e.what() << "\n";
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
queryNTPServer(server, utc_offset);
|
||||
return 0;
|
||||
}
|
26
readme.md
26
readme.md
|
@ -3,22 +3,30 @@
|
|||
this is a program that allows you to view the details of an ntp server.
|
||||
|
||||
usage:
|
||||
`./ntpdetails -t=utcX <NTP server>`
|
||||
|
||||
where `-t=utcX` is your timezone, `-t=utc-8` for America/Los_Angeles.
|
||||
|
||||
example (after compilation):
|
||||
```bash
|
||||
./ntpdetails [your ntp server]
|
||||
Details of time-a-g.nist.gov
|
||||
Time: 00:40:12 UTC
|
||||
acheron ~/ntpdetails > ./ntpdetails time.google.com
|
||||
Details of time.google.com
|
||||
Time: 05:32:24 UTC
|
||||
Date: 2024-11-19
|
||||
Ping: 94.339 ms
|
||||
Ping: 19.340 ms
|
||||
|
||||
acheron ~/ntpdetails > ./ntpdetails -t=utc-8 time.google.com
|
||||
Details of time.google.com
|
||||
Time (utc-8): 21:32:53
|
||||
Date: 2024-11-18
|
||||
Ping: 23.993 ms
|
||||
```
|
||||
|
||||
i am aware of a bug that doesnt allow users to see the details of other ntp servers than nist, or `pool.ntp.org`. it is a wip
|
||||
## how 2 compile????
|
||||
|
||||
## compilation
|
||||
clone `git clone https://git.rintyuu.dev/rintyuu/ntpdetails.git`.
|
||||
|
||||
clone `git clone https://git.rintyuu.dev/rintyuu/ntpdetails.git`
|
||||
|
||||
cd `cd ntpdetails`
|
||||
cd `cd ntpdetails`.
|
||||
|
||||
install `gcc libboost-dev libboost-system-dev libasio-dev`.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue