From 804e6b6daabf648d1f5ba950d496ff9e5f518aaf Mon Sep 17 00:00:00 2001 From: AleksanovED Date: Thu, 6 Mar 2025 03:48:00 +0300 Subject: [PATCH] =?UTF-8?q?=D1=80=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=B0?= =?UTF-8?q?=D1=86=D0=B8=D1=8F=20my=5Fstart=20=D0=B8=20my=5Ffin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 13 +++++++++++++ main.cpp | 22 ++++++++++++++++++++++ my_fin.cpp | 34 ++++++++++++++++++++++++++++++++++ my_start.cpp | 18 ++++++++++++++++++ my_start.hpp | 11 +++++++++++ 5 files changed, 98 insertions(+) create mode 100644 Makefile create mode 100644 main.cpp create mode 100644 my_fin.cpp create mode 100644 my_start.cpp create mode 100644 my_start.hpp diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4698e00 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CXX = g++ +CXXFLAGS = -Iinclude/ + +all: my_app + +my_app: + $(CXX) $(CXXFLAGS) ./my_start.cpp ./my_fin.cpp ./main.cpp -o my_app + +rebuild: + rm -f my_app && make my_app + +clean: + rm -f my_app \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..afdf0b7 --- /dev/null +++ b/main.cpp @@ -0,0 +1,22 @@ +#include +#include +#include +#include "my_start.hpp" + +int main() { + + my_start(); + + for (int i = 0; i < 5; ++i) { + std::this_thread::sleep_for(std::chrono::seconds(25)); + if (i % 2 == 0) { + n_ok_requests++; + } else { + n_fail_requests++; + } + } + + my_fin(); + + return 0; +} \ No newline at end of file diff --git a/my_fin.cpp b/my_fin.cpp new file mode 100644 index 0000000..7eac7bf --- /dev/null +++ b/my_fin.cpp @@ -0,0 +1,34 @@ +#include "my_start.hpp" +#include + +void my_fin() { + + auto end_timestamp = std::chrono::system_clock::now(); + auto end_time_t = std::chrono::system_clock::to_time_t(end_timestamp); + auto end_ms = std::chrono::duration_cast(end_timestamp.time_since_epoch()) % 1000; + + auto duration = end_timestamp - start_timestamp; + auto hours = std::chrono::duration_cast(duration); + auto minutes = std::chrono::duration_cast(duration % std::chrono::hours(1)); + auto seconds = std::chrono::duration_cast(duration % std::chrono::minutes(1)); + auto milliseconds = std::chrono::duration_cast(duration % std::chrono::seconds(1)); + + std::cout << "Worked for "; + if (duration < std::chrono::minutes(2)) { + double total_seconds = std::chrono::duration(duration).count(); + std::cout << std::fixed << std::setprecision(3) << total_seconds << " seconds"; + } else { + if (hours.count() > 0) std::cout << hours.count() << "h "; + if (minutes.count() > 0) std::cout << minutes.count() << "m "; + std::cout << seconds.count() << "s " << milliseconds.count() << "ms"; + } + std::cout << std::endl; + + std::cout << "Sent " << (n_ok_requests + n_fail_requests) << " requests (" + << n_ok_requests << " ok, " << n_fail_requests << " failed)" << std::endl; + + std::cout << "DosAtk stopped at " << std::put_time(std::localtime(&end_time_t), "%Y-%m-%d %H:%M:%S") + << "." << std::setfill('0') << std::setw(3) << end_ms.count() << std::endl; + + std::exit(0); +} \ No newline at end of file diff --git a/my_start.cpp b/my_start.cpp new file mode 100644 index 0000000..572a604 --- /dev/null +++ b/my_start.cpp @@ -0,0 +1,18 @@ +#include "my_start.hpp" + +int n_ok_requests = 0; +int n_fail_requests = 0; +std::chrono::system_clock::time_point start_timestamp; + +void my_start() { + n_ok_requests = 0; + n_fail_requests = 0; + start_timestamp = std::chrono::system_clock::now(); + + auto now = std::chrono::system_clock::now(); + auto now_time_t = std::chrono::system_clock::to_time_t(now); + auto now_ms = std::chrono::duration_cast(now.time_since_epoch()) % 1000; + + std::cout << "Starting DosAtk at " << std::put_time(std::localtime(&now_time_t), "%Y-%m-%d %H:%M:%S") + << "." << std::setfill('0') << std::setw(3) << now_ms.count() << std::endl; +} \ No newline at end of file diff --git a/my_start.hpp b/my_start.hpp new file mode 100644 index 0000000..1432862 --- /dev/null +++ b/my_start.hpp @@ -0,0 +1,11 @@ +#include +#include +#include +#include + +void my_start(); +void my_fin(); + +extern int n_ok_requests; +extern int n_fail_requests; +extern std::chrono::system_clock::time_point start_timestamp; \ No newline at end of file