From 804e6b6daabf648d1f5ba950d496ff9e5f518aaf Mon Sep 17 00:00:00 2001 From: AleksanovED Date: Thu, 6 Mar 2025 03:48:00 +0300 Subject: [PATCH 1/5] =?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 -- 2.40.1 From 337c428ebd52ce994e43b9a7ad4534516fca4965 Mon Sep 17 00:00:00 2001 From: AleksanovED Date: Thu, 6 Mar 2025 03:59:00 +0300 Subject: [PATCH 2/5] =?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?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 67 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2d14518 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,67 @@ +{ + "files.associations": { + "algorithm": "cpp", + "atomic": "cpp", + "bit": "cpp", + "cctype": "cpp", + "charconv": "cpp", + "chrono": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "compare": "cpp", + "concepts": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "exception": "cpp", + "format": "cpp", + "forward_list": "cpp", + "initializer_list": "cpp", + "iomanip": "cpp", + "ios": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "istream": "cpp", + "iterator": "cpp", + "limits": "cpp", + "locale": "cpp", + "map": "cpp", + "memory": "cpp", + "mutex": "cpp", + "new": "cpp", + "optional": "cpp", + "ostream": "cpp", + "ratio": "cpp", + "sstream": "cpp", + "stdexcept": "cpp", + "stop_token": "cpp", + "streambuf": "cpp", + "string": "cpp", + "system_error": "cpp", + "thread": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "typeinfo": "cpp", + "utility": "cpp", + "vector": "cpp", + "xfacet": "cpp", + "xiosbase": "cpp", + "xlocale": "cpp", + "xlocbuf": "cpp", + "xlocinfo": "cpp", + "xlocmes": "cpp", + "xlocmon": "cpp", + "xlocnum": "cpp", + "xloctime": "cpp", + "xmemory": "cpp", + "xstddef": "cpp", + "xstring": "cpp", + "xtr1common": "cpp", + "xtree": "cpp", + "xutility": "cpp" + } +} \ No newline at end of file -- 2.40.1 From 1036cade95eceb3bd6c18c01ab0cd061067203f1 Mon Sep 17 00:00:00 2001 From: AleksanovED Date: Thu, 6 Mar 2025 10:45:42 +0300 Subject: [PATCH 3/5] =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B8=D0=BA=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile => startEnd/Makefile | 0 main.cpp => startEnd/main.cpp | 0 my_fin.cpp => startEnd/my_fin.cpp | 0 my_start.cpp => startEnd/my_start.cpp | 0 my_start.hpp => startEnd/my_start.hpp | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename Makefile => startEnd/Makefile (100%) rename main.cpp => startEnd/main.cpp (100%) rename my_fin.cpp => startEnd/my_fin.cpp (100%) rename my_start.cpp => startEnd/my_start.cpp (100%) rename my_start.hpp => startEnd/my_start.hpp (100%) diff --git a/Makefile b/startEnd/Makefile similarity index 100% rename from Makefile rename to startEnd/Makefile diff --git a/main.cpp b/startEnd/main.cpp similarity index 100% rename from main.cpp rename to startEnd/main.cpp diff --git a/my_fin.cpp b/startEnd/my_fin.cpp similarity index 100% rename from my_fin.cpp rename to startEnd/my_fin.cpp diff --git a/my_start.cpp b/startEnd/my_start.cpp similarity index 100% rename from my_start.cpp rename to startEnd/my_start.cpp diff --git a/my_start.hpp b/startEnd/my_start.hpp similarity index 100% rename from my_start.hpp rename to startEnd/my_start.hpp -- 2.40.1 From 9156f36ac6c0c6f380fccb0846a0a6a2b4761391 Mon Sep 17 00:00:00 2001 From: AleksanovED Date: Thu, 6 Mar 2025 10:49:56 +0300 Subject: [PATCH 4/5] rename --- {startEnd => src}/Makefile | 0 {startEnd => src}/main.cpp | 0 {startEnd => src}/my_fin.cpp | 0 {startEnd => src}/my_start.cpp | 0 {startEnd => src}/my_start.hpp | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {startEnd => src}/Makefile (100%) rename {startEnd => src}/main.cpp (100%) rename {startEnd => src}/my_fin.cpp (100%) rename {startEnd => src}/my_start.cpp (100%) rename {startEnd => src}/my_start.hpp (100%) diff --git a/startEnd/Makefile b/src/Makefile similarity index 100% rename from startEnd/Makefile rename to src/Makefile diff --git a/startEnd/main.cpp b/src/main.cpp similarity index 100% rename from startEnd/main.cpp rename to src/main.cpp diff --git a/startEnd/my_fin.cpp b/src/my_fin.cpp similarity index 100% rename from startEnd/my_fin.cpp rename to src/my_fin.cpp diff --git a/startEnd/my_start.cpp b/src/my_start.cpp similarity index 100% rename from startEnd/my_start.cpp rename to src/my_start.cpp diff --git a/startEnd/my_start.hpp b/src/my_start.hpp similarity index 100% rename from startEnd/my_start.hpp rename to src/my_start.hpp -- 2.40.1 From 1e03179ca5ca61774cea210877b2bb14c489d671 Mon Sep 17 00:00:00 2001 From: AleksanovED Date: Thu, 6 Mar 2025 10:55:17 +0300 Subject: [PATCH 5/5] =?UTF-8?q?=D0=B7=D0=B0=D0=B2=D0=B5=D0=BB=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e375cc6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Игнорировать бинарные файлы +*.exe +*.out +*.app +*.o +*.a +*.so +*.dll +*.dylib + +# Игнорировать папку .vscode +.vscode/ + +# Игнорировать сгенерированные файлы +build/ +bin/ +obj/ + +# Игнорировать системные файлы +.DS_Store +Thumbs.db + +# Игнорировать файлы проекта IDE +*.sln +*.vcxproj +*.vcxproj.filters +*.vcxproj.user + +# Игнорировать временные файлы +*.swp +*.swo +*~ +*.bak + +# Игнорировать логи и результаты тестов +*.log +*.tmp +test-results/ \ No newline at end of file -- 2.40.1