statistics.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /* stat_parse.c
  2. * Parse statistics files.
  3. */
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include <string.h>
  7. #include <sys/types.h>
  8. #include <dirent.h>
  9. #include <limits.h>
  10. #include <ctype.h>
  11. #include "statistics.h"
  12. #include "cpu.h"
  13. #include "irq.h"
  14. #define STR(str) ( str ? str : "" )
  15. void parse_proc_stat(lub_list_t *cpus, lub_list_t *irqs)
  16. {
  17. FILE *file;
  18. char *line = NULL;
  19. size_t size = 0;
  20. int cpunr, rc, cpucount;
  21. unsigned long long l_user;
  22. unsigned long long l_nice;
  23. unsigned long long l_system;
  24. unsigned long long l_idle;
  25. unsigned long long l_iowait;
  26. unsigned long long l_irq;
  27. unsigned long long l_softirq;
  28. unsigned long long l_steal;
  29. unsigned long long l_guest;
  30. unsigned long long l_guest_nice;
  31. unsigned long long load_irq, load_all;
  32. char *intr_str;
  33. char *saveptr;
  34. unsigned int inum = 0;
  35. file = fopen("/proc/stat", "r");
  36. if (!file) {
  37. fprintf(stderr, "Warning: Can't open /proc/stat. Balacing is broken.\n");
  38. return;
  39. }
  40. /* first line is the header we don't need; nuke it */
  41. if (getline(&line, &size, file) == 0) {
  42. free(line);
  43. fprintf(stderr, "Warning: Can't read /proc/stat. Balancing is broken.\n");
  44. fclose(file);
  45. return;
  46. }
  47. cpucount = 0;
  48. while (!feof(file)) {
  49. cpu_t *cpu;
  50. if (getline(&line, &size, file)==0)
  51. break;
  52. if (!strstr(line, "cpu"))
  53. break;
  54. cpunr = strtoul(&line[3], NULL, 10);
  55. cpu = cpu_list_search(cpus, cpunr);
  56. if (!cpu)
  57. continue;
  58. rc = sscanf(line, "%*s %llu %llu %llu %llu %llu %llu %llu %llu %llu %llu",
  59. &l_user, &l_nice, &l_system, &l_idle, &l_iowait,
  60. &l_irq, &l_softirq, &l_steal, &l_guest, &l_guest_nice);
  61. if (rc < 2)
  62. break;
  63. cpucount++;
  64. load_all = l_user + l_nice + l_system + l_idle + l_iowait +
  65. l_irq + l_softirq + l_steal + l_guest + l_guest_nice;
  66. load_irq = l_irq + l_softirq;
  67. if (cpu->old_load_all == 0) {
  68. /* When old_load_all = 0 - it's first iteration */
  69. cpu->load = 0;
  70. } else {
  71. float d_all = (float)(load_all - cpu->old_load_all);
  72. float d_irq = (float)(load_irq - cpu->old_load_irq);
  73. cpu->load = d_irq * 100 / d_all;
  74. }
  75. cpu->old_load_all = load_all;
  76. cpu->old_load_irq = load_irq;
  77. }
  78. /* Parse "intr" line. Get number of interrupts. */
  79. intr_str = strtok_r(line, " ", &saveptr); /* String "intr" */
  80. intr_str = strtok_r(NULL, " ", &saveptr); /* Total number of interrupts */
  81. for (intr_str = strtok_r(NULL, " ", &saveptr);
  82. intr_str; intr_str = strtok_r(NULL, " ", &saveptr)) {
  83. unsigned long long intr = 0;
  84. char *endptr;
  85. irq_t *irq;
  86. irq = irq_list_search(irqs, inum);
  87. inum++;
  88. if (!irq)
  89. continue;
  90. intr = strtoull(intr_str, &endptr, 10);
  91. if (endptr == intr_str)
  92. intr = 0;
  93. if (irq->old_intr == 0)
  94. irq->intr = 0;
  95. else
  96. irq->intr = intr - irq->old_intr;
  97. irq->old_intr = intr;
  98. }
  99. fclose(file);
  100. free(line);
  101. }
  102. void show_statistics(lub_list_t *cpus)
  103. {
  104. lub_list_node_t *iter;
  105. for (iter = lub_list_iterator_init(cpus); iter;
  106. iter = lub_list_iterator_next(iter)) {
  107. cpu_t *cpu;
  108. lub_list_node_t *irq_iter;
  109. cpu = (cpu_t *)lub_list_node__get_data(iter);
  110. printf("--------------------------------------------------------------------------------\n");
  111. printf("CPU%u package %u, core %u, load %.2f%%\n",
  112. cpu->id, cpu->package_id, cpu->core_id, cpu->load);
  113. for (irq_iter = lub_list_iterator_init(cpu->irqs); irq_iter;
  114. irq_iter = lub_list_iterator_next(irq_iter)) {
  115. irq_t *irq;
  116. irq = (irq_t *)lub_list_node__get_data(irq_iter);
  117. printf("IRQ %u %llu %s\n", irq->irq, irq->intr, irq->desc);
  118. }
  119. }
  120. }