power_x11.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*************************************************************************/
  2. /* power_x11.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef X11_POWER_H_
  31. #define X11_POWER_H_
  32. #include "core/os/dir_access.h"
  33. #include "core/os/file_access.h"
  34. #include "core/os/os.h"
  35. class PowerX11 {
  36. private:
  37. int nsecs_left;
  38. int percent_left;
  39. OS::PowerState power_state;
  40. FileAccessRef open_power_file(const char *base, const char *node, const char *key);
  41. bool read_power_file(const char *base, const char *node, const char *key, char *buf, size_t buflen);
  42. bool make_proc_acpi_key_val(char **_ptr, char **_key, char **_val);
  43. void check_proc_acpi_battery(const char *node, bool *have_battery, bool *charging);
  44. void check_proc_acpi_ac_adapter(const char *node, bool *have_ac);
  45. bool GetPowerInfo_Linux_proc_acpi();
  46. bool next_string(char **_ptr, char **_str);
  47. bool int_string(char *str, int *val);
  48. bool GetPowerInfo_Linux_proc_apm();
  49. bool GetPowerInfo_Linux_sys_class_power_supply();
  50. bool UpdatePowerInfo();
  51. public:
  52. PowerX11();
  53. virtual ~PowerX11();
  54. OS::PowerState get_power_state();
  55. int get_power_seconds_left();
  56. int get_power_percent_left();
  57. };
  58. #endif /* X11_POWER_H_ */