1
0

gamemode.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. Copyright (c) 2017-2018, Feral Interactive
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. * Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. * Neither the name of Feral Interactive nor the names of its contributors
  12. may be used to endorse or promote products derived from this software
  13. without specific prior written permission.
  14. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  15. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  18. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  19. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  20. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  21. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  22. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  23. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  24. POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #pragma once
  27. #include <stdbool.h>
  28. #include <sys/types.h>
  29. #define INVALID_PROCFD -1
  30. typedef int procfd_t;
  31. /**
  32. * Opaque types
  33. */
  34. typedef struct GameModeContext GameModeContext;
  35. typedef struct GameModeConfig GameModeConfig;
  36. /**
  37. * Return the singleton instance
  38. */
  39. GameModeContext *game_mode_context_instance(void);
  40. /**
  41. * Initialise the GameModeContext
  42. *
  43. * This is performed in a thread-safe fashion.
  44. */
  45. void game_mode_context_init(GameModeContext *self);
  46. /**
  47. * Destroy the previously initialised GameModeContext.
  48. *
  49. * This is performed in a thread safe fashion.
  50. */
  51. void game_mode_context_destroy(GameModeContext *self);
  52. /**
  53. * Register a new game client with the context
  54. *
  55. * @param pid Process ID for the remote client
  56. * @returns True if the new client could be registered
  57. */
  58. bool game_mode_context_register(GameModeContext *self, pid_t pid);
  59. /**
  60. * Unregister an existing remote game client from the context
  61. *
  62. * @param pid Process ID for the remote client
  63. * @returns True if the client was removed, and existed.
  64. */
  65. bool game_mode_context_unregister(GameModeContext *self, pid_t pid);
  66. /**
  67. * Query the current status of gamemode
  68. *
  69. * @param pid Process ID for the remote client
  70. * @returns Positive if gamemode is active
  71. * 1 if gamemode is active but the client is not registered
  72. * 2 if gamemode is active and the client is registered
  73. */
  74. int game_mode_context_query_status(GameModeContext *self, pid_t pid);
  75. /**
  76. * Query the config of a gamemode context
  77. *
  78. * @param context A gamemode context
  79. * @returns Configuration from the gamemode context
  80. */
  81. GameModeConfig *game_mode_config_from_context(const GameModeContext *context);
  82. /** gamemode-env.c
  83. * Provides internal API functions specific to working environment
  84. * variables.
  85. */
  86. char *game_mode_lookup_proc_env(const procfd_t proc_fd, const char *var);
  87. char *game_mode_lookup_user_home(void);
  88. /** gamemode-ioprio.c
  89. * Provides internal API functions specific to adjusting process
  90. * IO priorities.
  91. */
  92. void game_mode_apply_ioprio(const GameModeContext *self, const pid_t client);
  93. /** gamemode-proc.c
  94. * Provides internal API functions specific to working with process
  95. * environments.
  96. */
  97. procfd_t game_mode_open_proc(const pid_t pid);
  98. int game_mode_close_proc(const procfd_t procfd);
  99. /** gamemode-sched.c
  100. * Provides internal API functions specific to adjusting process
  101. * scheduling.
  102. */
  103. void game_mode_apply_renice(const GameModeContext *self, const pid_t client);
  104. void game_mode_apply_scheduling(const GameModeContext *self, const pid_t client);
  105. /** gamemode-wine.c
  106. * Provides internal API functions specific to handling wine
  107. * prefixes.
  108. */
  109. bool game_mode_detect_wine_loader(const char *exe);
  110. bool game_mode_detect_wine_preloader(const char *exe);
  111. char *game_mode_resolve_wine_preloader(const pid_t pid);