/indra/llcommon/llsys.h

https://bitbucket.org/lindenlab/viewer-beta/ · C++ Header · 156 lines · 64 code · 29 blank · 63 comment · 0 complexity · d7e32751ed4d837106a07e7b7560eefc MD5 · raw file

  1. /**
  2. * @file llsys.h
  3. * @brief System information debugging classes.
  4. *
  5. * $LicenseInfo:firstyear=2001&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_SYS_H
  27. #define LL_SYS_H
  28. //
  29. // The LLOSInfo, LLCPUInfo, and LLMemoryInfo classes are essentially
  30. // the same, but query different machine subsystems. Here's how you
  31. // use an LLCPUInfo object:
  32. //
  33. // LLCPUInfo info;
  34. // llinfos << info << llendl;
  35. //
  36. #include "llsd.h"
  37. #include <iosfwd>
  38. #include <string>
  39. class LL_COMMON_API LLOSInfo
  40. {
  41. public:
  42. LLOSInfo();
  43. void stream(std::ostream& s) const;
  44. const std::string& getOSString() const;
  45. const std::string& getOSStringSimple() const;
  46. S32 mMajorVer;
  47. S32 mMinorVer;
  48. S32 mBuild;
  49. #ifndef LL_WINDOWS
  50. static S32 getMaxOpenFiles();
  51. #endif
  52. static U32 getProcessVirtualSizeKB();
  53. static U32 getProcessResidentSizeKB();
  54. private:
  55. std::string mOSString;
  56. std::string mOSStringSimple;
  57. };
  58. class LL_COMMON_API LLCPUInfo
  59. {
  60. public:
  61. LLCPUInfo();
  62. void stream(std::ostream& s) const;
  63. std::string getCPUString() const;
  64. bool hasAltivec() const;
  65. bool hasSSE() const;
  66. bool hasSSE2() const;
  67. F64 getMHz() const;
  68. // Family is "AMD Duron" or "Intel Pentium Pro"
  69. const std::string& getFamily() const { return mFamily; }
  70. private:
  71. bool mHasSSE;
  72. bool mHasSSE2;
  73. bool mHasAltivec;
  74. F64 mCPUMHz;
  75. std::string mFamily;
  76. std::string mCPUString;
  77. };
  78. //=============================================================================
  79. //
  80. // CLASS LLMemoryInfo
  81. class LL_COMMON_API LLMemoryInfo
  82. /*! @brief Class to query the memory subsystem
  83. @details
  84. Here's how you use an LLMemoryInfo:
  85. LLMemoryInfo info;
  86. <br> llinfos << info << llendl;
  87. */
  88. {
  89. public:
  90. LLMemoryInfo(); ///< Default constructor
  91. void stream(std::ostream& s) const; ///< output text info to s
  92. U32 getPhysicalMemoryKB() const; ///< Memory size in KiloBytes
  93. /*! Memory size in bytes, if total memory is >= 4GB then U32_MAX will
  94. ** be returned.
  95. */
  96. U32 getPhysicalMemoryClamped() const; ///< Memory size in clamped bytes
  97. //get the available memory infomation in KiloBytes.
  98. static void getAvailableMemoryKB(U32& avail_physical_mem_kb, U32& avail_virtual_mem_kb);
  99. // Retrieve a map of memory statistics. The keys of the map are platform-
  100. // dependent. The values are in kilobytes to try to avoid integer overflow.
  101. LLSD getStatsMap() const;
  102. // Re-fetch memory data (as reported by stream() and getStatsMap()) from the
  103. // system. Normally this is fetched at construction time. Return (*this)
  104. // to permit usage of the form:
  105. // @code
  106. // LLMemoryInfo info;
  107. // ...
  108. // info.refresh().getStatsMap();
  109. // @endcode
  110. LLMemoryInfo& refresh();
  111. private:
  112. // set mStatsMap
  113. static LLSD loadStatsMap();
  114. // Memory stats for getStatsMap().
  115. LLSD mStatsMap;
  116. };
  117. LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLOSInfo& info);
  118. LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info);
  119. LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info);
  120. // gunzip srcfile into dstfile. Returns FALSE on error.
  121. BOOL LL_COMMON_API gunzip_file(const std::string& srcfile, const std::string& dstfile);
  122. // gzip srcfile into dstfile. Returns FALSE on error.
  123. BOOL LL_COMMON_API gzip_file(const std::string& srcfile, const std::string& dstfile);
  124. extern LL_COMMON_API LLCPUInfo gSysCPU;
  125. #endif // LL_LLSYS_H