Browse Source

Utils: cache ComputerName return value

This is unlikely to change, so we can avoid looking it up (which can be
expensive) every time we need it for e.g. a GDM response.
Rodger Combs 7 years ago
parent
commit
4054a14fbb
1 changed files with 9 additions and 2 deletions
  1. 9 2
      src/utils/Utils.cpp

+ 9 - 2
src/utils/Utils.cpp

@@ -13,6 +13,8 @@
 #include <QFile>
 #include <QSaveFile>
 
+#include <mutex>
+
 #include "settings/SettingsComponent.h"
 #include "settings/SettingsSection.h"
 
@@ -39,11 +41,16 @@ QString Utils::sanitizeForHttpSeparators(const QString& input)
 /////////////////////////////////////////////////////////////////////////////////////////
 QString Utils::ComputerName()
 {
+  static std::once_flag flag;
+  static QString name;
+  std::call_once(flag, [](){
 #ifdef Q_OS_MAC
-  return OSXUtils::ComputerName();
+    name = OSXUtils::ComputerName();
 #else
-  return QHostInfo::localHostName();
+    name = QHostInfo::localHostName();
 #endif
+  });
+  return name;
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////