aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorToni500git <[email protected]>2024-10-13 14:24:10 +0200
committerVaxry <[email protected]>2024-10-13 14:13:56 +0100
commit05a5e0b4f1ced12f2a0330132f37b0081d7a5e4d (patch)
tree625d91d64761c7d334f68eadf5f85f134a0391f4
parentb61d4c363679a880e8577a3d983d73dbab367a9d (diff)
downloadHyprland-05a5e0b4f1ced12f2a0330132f37b0081d7a5e4d.tar.gz
Hyprland-05a5e0b4f1ced12f2a0330132f37b0081d7a5e4d.zip
hyprland: convert std::cout and std::cerr to std::println()
-rw-r--r--src/Compositor.cpp14
-rw-r--r--src/debug/Log.cpp4
-rw-r--r--src/main.cpp51
3 files changed, 37 insertions, 32 deletions
diff --git a/src/Compositor.cpp b/src/Compositor.cpp
index dcc6422d..fd4979b0 100644
--- a/src/Compositor.cpp
+++ b/src/Compositor.cpp
@@ -9,7 +9,9 @@
#include "managers/eventLoop/EventLoopManager.hpp"
#include <aquamarine/output/Output.hpp>
#include <bit>
+#include <ctime>
#include <random>
+#include <print>
#include <cstring>
#include <filesystem>
#include <unordered_set>
@@ -138,37 +140,37 @@ CCompositor::CCompositor() {
m_szHyprTempDataRoot = std::string{getenv("XDG_RUNTIME_DIR")} + "/hypr";
if (m_szHyprTempDataRoot.starts_with("/hypr")) {
- std::cout << "Bailing out, XDG_RUNTIME_DIR is invalid\n";
+ std::println("Bailing out, $XDG_RUNTIME_DIR is invalid");
throw std::runtime_error("CCompositor() failed");
}
if (!m_szHyprTempDataRoot.starts_with("/run/user"))
- std::cout << "[!!WARNING!!] XDG_RUNTIME_DIR looks non-standard. Proceeding anyways...\n";
+ std::println("[!!WARNING!!] XDG_RUNTIME_DIR looks non-standard. Proceeding anyways...");
std::random_device dev;
std::mt19937 engine(dev());
std::uniform_int_distribution<> distribution(0, INT32_MAX);
- m_szInstanceSignature = GIT_COMMIT_HASH + std::string("_") + std::to_string(time(NULL)) + "_" + std::to_string(distribution(engine));
+ m_szInstanceSignature = std::format("{}_{}_{}", GIT_COMMIT_HASH, std::time(NULL), distribution(engine));
setenv("HYPRLAND_INSTANCE_SIGNATURE", m_szInstanceSignature.c_str(), true);
if (!std::filesystem::exists(m_szHyprTempDataRoot))
mkdir(m_szHyprTempDataRoot.c_str(), S_IRWXU);
else if (!std::filesystem::is_directory(m_szHyprTempDataRoot)) {
- std::cout << "Bailing out, " << m_szHyprTempDataRoot << " is not a directory\n";
+ std::println("Bailing out, {} is not a directory", m_szHyprTempDataRoot);
throw std::runtime_error("CCompositor() failed");
}
m_szInstancePath = m_szHyprTempDataRoot + "/" + m_szInstanceSignature;
if (std::filesystem::exists(m_szInstancePath)) {
- std::cout << "Bailing out, " << m_szInstancePath << " exists??\n";
+ std::println("Bailing out, {} exists??", m_szInstancePath);
throw std::runtime_error("CCompositor() failed");
}
if (mkdir(m_szInstancePath.c_str(), S_IRWXU) < 0) {
- std::cout << "Bailing out, couldn't create " << m_szInstancePath << "\n";
+ std::println("Bailing out, couldn't create {}", m_szInstancePath);
throw std::runtime_error("CCompositor() failed");
}
diff --git a/src/debug/Log.cpp b/src/debug/Log.cpp
index a4c5b08e..5a314833 100644
--- a/src/debug/Log.cpp
+++ b/src/debug/Log.cpp
@@ -4,7 +4,7 @@
#include "RollingLogFollow.hpp"
#include <fstream>
-#include <iostream>
+#include <print>
#include <fcntl.h>
void Debug::init(const std::string& IS) {
@@ -69,5 +69,5 @@ void Debug::log(LogLevel level, std::string str) {
// log it to the stdout too.
if (!disableStdout)
- std::cout << ((coloredLogs && !**coloredLogs) ? str : coloredStr) << "\n";
+ std::println("{}", ((coloredLogs && !**coloredLogs) ? str : coloredStr));
}
diff --git a/src/main.cpp b/src/main.cpp
index 45f212d3..6bbf73fd 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -5,7 +5,9 @@
#include "init/initHelpers.hpp"
#include "debug/HyprCtl.hpp"
+#include <cstdio>
#include <hyprutils/string/String.hpp>
+#include <print>
using namespace Hyprutils::String;
#include <fcntl.h>
@@ -17,15 +19,15 @@ using namespace Hyprutils::String;
#include <filesystem>
void help() {
- std::cout << "usage: Hyprland [arg [...]].\n";
- std::cout << "\nArguments:\n";
- std::cout << " --help -h - Show this message again\n";
- std::cout << " --config FILE -c FILE - Specify config file to use\n";
- std::cout << " --socket NAME - Sets the Wayland socket name (for Wayland socket handover)\n";
- std::cout << " --wayland-fd FD - Sets the Wayland socket fd (for Wayland socket handover)\n";
- std::cout << " --systeminfo - Prints system infos\n";
- std::cout << " --i-am-really-stupid - Omits root user privileges check (why would you do that?)\n";
- std::cout << " --version -v - Print this binary's version\n";
+ std::println("usage: Hyprland [arg [...]].\n");
+ std::println(R"(Arguments:
+ --help -h - Show this message again
+ --config FILE -c FILE - Specify config file to use
+ --socket NAME - Sets the Wayland socket name (for Wayland socket handover)
+ --wayland-fd FD - Sets the Wayland socket fd (for Wayland socket handover)
+ --systeminfo - Prints system infos
+ --i-am-really-stupid - Omits root user privileges check (why would you do that?)
+ --version -v - Print this binary's version)");
}
int main(int argc, char** argv) {
@@ -53,7 +55,7 @@ int main(int argc, char** argv) {
for (auto it = args.begin(); it != args.end(); it++) {
if (it->compare("--i-am-really-stupid") == 0 && !ignoreSudo) {
- std::cout << "[ WARNING ] Running Hyprland with superuser privileges might damage your system\n";
+ std::println("[ WARNING ] Running Hyprland with superuser privileges might damage your system");
ignoreSudo = true;
} else if (it->compare("--socket") == 0) {
@@ -79,7 +81,7 @@ int main(int argc, char** argv) {
if (fcntl(socketFd, F_GETFD) == -1)
throw std::exception();
} catch (...) {
- std::cerr << "[ ERROR ] Invalid Wayland FD!\n";
+ std::println(stderr, "[ ERROR ] Invalid Wayland FD!");
help();
return 1;
@@ -101,7 +103,7 @@ int main(int argc, char** argv) {
throw std::exception();
}
} catch (...) {
- std::cerr << "[ ERROR ] Config file '" << configPath << "' doesn't exist!\n";
+ std::println(stderr, "[ ERROR ] Config file '{}' doesn't exist!", configPath);
help();
return 1;
@@ -117,14 +119,13 @@ int main(int argc, char** argv) {
return 0;
} else if (it->compare("-v") == 0 || it->compare("--version") == 0) {
- std::cout << versionRequest(eHyprCtlOutputFormat::FORMAT_NORMAL, "") << std::endl;
+ std::println("{}", versionRequest(eHyprCtlOutputFormat::FORMAT_NORMAL, ""));
return 0;
} else if (it->compare("--systeminfo") == 0) {
- const auto SYSINFO = systemInfoRequest(eHyprCtlOutputFormat::FORMAT_NORMAL, "");
- std::cout << SYSINFO << "\n";
+ std::println("{}", systemInfoRequest(eHyprCtlOutputFormat::FORMAT_NORMAL, ""));
return 0;
} else {
- std::cerr << "[ ERROR ] Unknown option '" << it->c_str() << "'!\n";
+ std::println(stderr, "[ ERROR ] Unknown option '{}' !", it->c_str());
help();
return 1;
@@ -132,30 +133,32 @@ int main(int argc, char** argv) {
}
if (!ignoreSudo && Init::isSudo()) {
- std::cerr << "[ ERROR ] Hyprland was launched with superuser privileges, but the privileges check is not omitted.\n";
- std::cerr << " Hint: Use the --i-am-really-stupid flag to omit that check.\n";
+ std::println(stderr,
+ "[ ERROR ] Hyprland was launched with superuser privileges, but the privileges check is not omitted.\n"
+ " Hint: Use the --i-am-really-stupid flag to omit that check.");
return 1;
} else if (ignoreSudo && Init::isSudo()) {
- std::cout << "Superuser privileges check is omitted. I hope you know what you're doing.\n";
+ std::println("Superuser privileges check is omitted. I hope you know what you're doing.");
}
if (socketName.empty() ^ (socketFd == -1)) {
- std::cerr << "[ ERROR ] Hyprland was launched with only one of --socket and --wayland-fd.\n";
- std::cerr << " Hint: Pass both --socket and --wayland-fd to perform Wayland socket handover.\n";
+ std::println(stderr,
+ "[ ERROR ] Hyprland was launched with only one of --socket and --wayland-fd.\n"
+ " Hint: Pass both --socket and --wayland-fd to perform Wayland socket handover.");
return 1;
}
- std::cout << "Welcome to Hyprland!\n";
+ std::println("Welcome to Hyprland!");
// let's init the compositor.
// it initializes basic Wayland stuff in the constructor.
try {
g_pCompositor = std::make_unique<CCompositor>();
g_pCompositor->explicitConfigPath = configPath;
- } catch (std::exception& e) {
- std::cout << "Hyprland threw in ctor: " << e.what() << "\nCannot continue.\n";
+ } catch (const std::exception& e) {
+ std::println(stderr, "Hyprland threw in ctor: {}\nCannot continue.", e.what());
return 1;
}