light.h 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #ifndef LIGHT_H
  2. #define LIGHT_H
  3. #include "helpers.h"
  4. #include <sys/types.h>
  5. #include <dirent.h>
  6. #define LIGHT_VER_MAJOR 0
  7. #define LIGHT_VER_MINOR 9
  8. #define LIGHT_VER_TYPE "beta"
  9. #define LIGHT_YEAR 2014
  10. #define LIGHT_AUTHOR "Fredrik Haikarainen"
  11. #define ASSERT_OPSET() \
  12. if(opSet)\
  13. {\
  14. printf("Operation arguments can not be used in conjunction.\n");\
  15. return FALSE;\
  16. }\
  17. opSet = TRUE;
  18. #define ASSERT_TARGETSET() \
  19. if(targetSet)\
  20. {\
  21. printf("Target arguments can not be used in conjunction.\n");\
  22. return FALSE;\
  23. }\
  24. targetSet = TRUE;
  25. #define ASSERT_CTRLSET()\
  26. if(ctrlSet)\
  27. {\
  28. printf("Controller arguments can not be used in conjunction.\n");\
  29. return FALSE;\
  30. }\
  31. ctrlSet = TRUE;
  32. #define ASSERT_VALSET()\
  33. if(valSet)\
  34. {\
  35. printf("Value arguments can not be used in conjunction.\n");\
  36. return FALSE;\
  37. }\
  38. valSet = TRUE;
  39. typedef enum LIGHT_TARGET {
  40. LIGHT_BRIGHTNESS = 0,
  41. LIGHT_MAX_BRIGHTNESS,
  42. LIGHT_MIN_CAP,
  43. LIGHT_SAVERESTORE
  44. } LIGHT_TARGET;
  45. typedef enum LIGHT_CTRL_MODE {
  46. LIGHT_AUTO = 0,
  47. LIGHT_SPECIFY
  48. } LIGHT_CTRL_MODE;
  49. typedef enum LIGHT_OP_MODE {
  50. LIGHT_GET = 0,
  51. LIGHT_SET,
  52. LIGHT_ADD,
  53. LIGHT_SUB,
  54. LIGHT_PRINT_HELP, /* Prints help and exits */
  55. LIGHT_PRINT_VERSION, /* Prints version info and exits */
  56. LIGHT_LIST_CTRL,
  57. LIGHT_RESTORE,
  58. LIGHT_SAVE
  59. } LIGHT_OP_MODE;
  60. typedef enum LIGHT_VAL_MODE {
  61. LIGHT_RAW = 0,
  62. LIGHT_PERCENT
  63. } LIGHT_VAL_MODE;
  64. typedef struct light_runtimeArguments_s {
  65. /* Which controller to use */
  66. LIGHT_CTRL_MODE controllerMode;
  67. char specifiedController[256];
  68. /* What to do with the controller */
  69. LIGHT_OP_MODE operationMode;
  70. LIGHT_VAL_MODE valueMode;
  71. unsigned long specifiedValueRaw; /* The specified value in raw mode */
  72. double specifiedValuePercent; /* The specified value in percent */
  73. LIGHT_TARGET target;
  74. } light_runtimeArguments, *light_runtimeArguments_p;
  75. /* -- Global variables that handles iterating controllers -- */
  76. struct dirent *light_iterator;
  77. DIR *light_iteratorDir;
  78. char light_currentController[256];
  79. /* -- Global variable holding the settings for the current run -- */
  80. light_runtimeArguments light_Configuration;
  81. /* Sets default values for the configuration */
  82. void light_defaultConfig();
  83. /* Parses the program arguments and sets the configuration accordingly (unsanitized) */
  84. LIGHT_BOOL light_parseArguments(int argc, char** argv);
  85. /* Prints a header if verbosity level > 0 */
  86. void light_printVersion(void);
  87. /* Prints help regardless of verbosity level */
  88. void light_printHelp(void);
  89. /* -- SECTION: Main code -- */
  90. /* Initializes the application */
  91. LIGHT_BOOL light_initialize(int argc, char** argv);
  92. /* Does the work */
  93. LIGHT_BOOL light_execute(void);
  94. /* Frees up resources */
  95. void light_free();
  96. /* SECTION: Controller functionality */
  97. /* WARNING: `buffer` HAS to be freed by the user if not null once returned!
  98. * Size is always 256 */
  99. LIGHT_BOOL light_genPath(char const *controller, LIGHT_TARGET type, char **buffer);
  100. LIGHT_BOOL light_getBrightness(char const *controller, unsigned long *v);
  101. LIGHT_BOOL light_getMaxBrightness(char const *controller, unsigned long *v);
  102. LIGHT_BOOL light_setBrightness(char const *controller, unsigned long v);
  103. LIGHT_BOOL light_controllerAccessible(char const *controller);
  104. LIGHT_BOOL light_iterateControllers(void);
  105. /* WARNING: `controller` HAS to be at least 256 bytes */
  106. LIGHT_BOOL light_getBestController(char *controller);
  107. LIGHT_BOOL light_getMinCap(char const *controller, LIGHT_BOOL *hasMinCap, unsigned long *minCap);
  108. LIGHT_BOOL light_setMinCap(char const *controller, unsigned long v);
  109. LIGHT_BOOL light_listControllers();
  110. LIGHT_BOOL light_saveBrightness(char const *controller, unsigned long v);
  111. LIGHT_BOOL light_restoreBrightness(char const *controller);
  112. #endif /* LIGHT_H */