You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
4.2 KiB

  1. #include<stdlib.h>
  2. #include<stdio.h>
  3. #include<string.h>
  4. #include<unistd.h>
  5. #include<signal.h>
  6. #ifndef NO_X
  7. #include<X11/Xlib.h>
  8. #endif
  9. #ifdef __OpenBSD__
  10. #define SIGPLUS SIGUSR1+1
  11. #define SIGMINUS SIGUSR1-1
  12. #else
  13. #define SIGPLUS SIGRTMIN
  14. #define SIGMINUS SIGRTMIN
  15. #endif
  16. #define LENGTH(X) (sizeof(X) / sizeof (X[0]))
  17. #define CMDLENGTH 50
  18. #define MIN( a, b ) ( ( a < b) ? a : b )
  19. #define STATUSLENGTH (LENGTH(blocks) * CMDLENGTH + 1)
  20. typedef struct {
  21. char* icon;
  22. char* command;
  23. unsigned int interval;
  24. unsigned int signal;
  25. } Block;
  26. #ifndef __OpenBSD__
  27. void dummysighandler(int num);
  28. #endif
  29. void sighandler(int num);
  30. void getcmds(int time);
  31. void getsigcmds(unsigned int signal);
  32. void setupsignals();
  33. void sighandler(int signum);
  34. int getstatus(char *str, char *last);
  35. void statusloop();
  36. void termhandler();
  37. void pstdout();
  38. #ifndef NO_X
  39. void setroot();
  40. static void (*writestatus) () = setroot;
  41. static int setupX();
  42. static Display *dpy;
  43. static int screen;
  44. static Window root;
  45. #else
  46. static void (*writestatus) () = pstdout;
  47. #endif
  48. #include "blocks.h"
  49. static char statusbar[LENGTH(blocks)][CMDLENGTH] = {0};
  50. static char statusstr[2][STATUSLENGTH];
  51. static int statusContinue = 1;
  52. static int returnStatus = 0;
  53. //opens process *cmd and stores output in *output
  54. void getcmd(const Block *block, char *output)
  55. {
  56. strcpy(output, block->icon);
  57. FILE *cmdf = popen(block->command, "r");
  58. if (!cmdf)
  59. return;
  60. int i = strlen(block->icon);
  61. fgets(output+i, CMDLENGTH-i-delimLen, cmdf);
  62. i = strlen(output);
  63. if (i == 0)//return if block and command output are both empty
  64. return;
  65. if (delim[0] != '\0') {
  66. //only chop off newline if one is present at the end
  67. i = output[i-1] == '\n' ? i-1 : i;
  68. strncpy(output+i, delim, delimLen);
  69. }
  70. else
  71. output[i++] = '\0';
  72. pclose(cmdf);
  73. }
  74. void getcmds(int time)
  75. {
  76. const Block* current;
  77. for (unsigned int i = 0; i < LENGTH(blocks); i++) {
  78. current = blocks + i;
  79. if ((current->interval != 0 && time % current->interval == 0) || time == -1)
  80. getcmd(current,statusbar[i]);
  81. }
  82. }
  83. void getsigcmds(unsigned int signal)
  84. {
  85. const Block *current;
  86. for (unsigned int i = 0; i < LENGTH(blocks); i++) {
  87. current = blocks + i;
  88. if (current->signal == signal)
  89. getcmd(current,statusbar[i]);
  90. }
  91. }
  92. void setupsignals()
  93. {
  94. #ifndef __OpenBSD__
  95. /* initialize all real time signals with dummy handler */
  96. for (int i = SIGRTMIN; i <= SIGRTMAX; i++)
  97. signal(i, dummysighandler);
  98. #endif
  99. for (unsigned int i = 0; i < LENGTH(blocks); i++) {
  100. if (blocks[i].signal > 0)
  101. signal(SIGMINUS+blocks[i].signal, sighandler);
  102. }
  103. }
  104. int getstatus(char *str, char *last)
  105. {
  106. strcpy(last, str);
  107. str[0] = '\0';
  108. for (unsigned int i = 0; i < LENGTH(blocks); i++)
  109. strcat(str, statusbar[i]);
  110. str[strlen(str)-strlen(delim)] = '\0';
  111. return strcmp(str, last);//0 if they are the same
  112. }
  113. #ifndef NO_X
  114. void setroot()
  115. {
  116. if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
  117. return;
  118. XStoreName(dpy, root, statusstr[0]);
  119. XFlush(dpy);
  120. }
  121. int setupX()
  122. {
  123. dpy = XOpenDisplay(NULL);
  124. if (!dpy) {
  125. fprintf(stderr, "dwmblocks: Failed to open display\n");
  126. return 0;
  127. }
  128. screen = DefaultScreen(dpy);
  129. root = RootWindow(dpy, screen);
  130. return 1;
  131. }
  132. #endif
  133. void pstdout()
  134. {
  135. if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
  136. return;
  137. printf("%s\n",statusstr[0]);
  138. fflush(stdout);
  139. }
  140. void statusloop()
  141. {
  142. setupsignals();
  143. int i = 0;
  144. getcmds(-1);
  145. while (1) {
  146. getcmds(i++);
  147. writestatus();
  148. if (!statusContinue)
  149. break;
  150. sleep(1.0);
  151. }
  152. }
  153. #ifndef __OpenBSD__
  154. /* this signal handler should do nothing */
  155. void dummysighandler(int signum)
  156. {
  157. return;
  158. }
  159. #endif
  160. void sighandler(int signum)
  161. {
  162. getsigcmds(signum-SIGPLUS);
  163. writestatus();
  164. }
  165. void termhandler()
  166. {
  167. statusContinue = 0;
  168. }
  169. int main(int argc, char** argv)
  170. {
  171. for (int i = 0; i < argc; i++) {//Handle command line arguments
  172. if (!strcmp("-d",argv[i]))
  173. strncpy(delim, argv[++i], delimLen);
  174. else if (!strcmp("-p",argv[i]))
  175. writestatus = pstdout;
  176. }
  177. #ifndef NO_X
  178. if (!setupX())
  179. return 1;
  180. #endif
  181. delimLen = MIN(delimLen, strlen(delim));
  182. delim[delimLen++] = '\0';
  183. signal(SIGTERM, termhandler);
  184. signal(SIGINT, termhandler);
  185. statusloop();
  186. #ifndef NO_X
  187. XCloseDisplay(dpy);
  188. #endif
  189. return 0;
  190. }