sm_cpu.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /* $Id: sm_cpu.c,v 1.15 2003/10/10 15:20:01 dijkstra Exp $ */
  2. /* The author of this code is Willem Dijkstra (wpd@xs4all.nl).
  3. *
  4. * The percentages function was written by William LeFebvre and is part of the
  5. * 'top' utility. His copyright statement is below.
  6. *
  7. * Copyright (c) 2001-2002 Willem Dijkstra
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. *
  14. * - Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * - Redistributions in binary form must reproduce the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer in the documentation and/or other materials provided
  19. * with the distribution.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  24. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  25. * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  26. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  27. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  28. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  29. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  31. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  32. * POSSIBILITY OF SUCH DAMAGE.
  33. * */
  34. /*
  35. * Top users/processes display for Unix
  36. * Version 3
  37. *
  38. * This program may be freely redistributed,
  39. * but this entire comment MUST remain intact.
  40. *
  41. * Copyright (c) 1984, 1989, William LeFebvre, Rice University
  42. * Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
  43. */
  44. /*
  45. * Get current cpu statistics in percentages (total of all counts = 100.0)
  46. * and returns them in symon_buf as
  47. *
  48. * user : nice : system : interrupt : idle
  49. *
  50. * This code is not re-entrant and UP only.
  51. *
  52. * This module uses the sysctl interface and can run as any user.
  53. */
  54. #include <sys/dkstat.h>
  55. #include <sys/param.h>
  56. #include <sys/sysctl.h>
  57. #include "error.h"
  58. #include "symon.h"
  59. __BEGIN_DECLS
  60. int percentages(int, int *, long *, long *, long *);
  61. __END_DECLS
  62. /* Globals for this module all start with cp_ */
  63. static int cp_time_mib[] = {CTL_KERN, KERN_CPTIME};
  64. static size_t cp_size;
  65. static long cp_time[CPUSTATES];
  66. static long cp_old[CPUSTATES];
  67. static long cp_diff[CPUSTATES];
  68. static int cp_states[CPUSTATES];
  69. /*
  70. * percentages(cnt, out, new, old, diffs) - calculate percentage change
  71. * between array "old" and "new", putting the percentages i "out".
  72. * "cnt" is size of each array and "diffs" is used for scratch space.
  73. * The array "old" is updated on each call.
  74. * The routine assumes modulo arithmetic. This function is especially
  75. * useful on BSD mchines for calculating cpu state percentages.
  76. */
  77. int
  78. percentages(int cnt, int *out, register long *new, register long *old, long *diffs)
  79. {
  80. register int i;
  81. register long change;
  82. register long total_change;
  83. register long *dp;
  84. long half_total;
  85. /* initialization */
  86. total_change = 0;
  87. dp = diffs;
  88. /* calculate changes for each state and the overall change */
  89. for (i = 0; i < cnt; i++) {
  90. if ((change = *new - *old) < 0) {
  91. /* this only happens when the counter wraps */
  92. change = ((unsigned int) *new - (unsigned int) *old);
  93. }
  94. total_change += (*dp++ = change);
  95. *old++ = *new++;
  96. }
  97. /* avoid divide by zero potential */
  98. if (total_change == 0)
  99. total_change = 1;
  100. /* calculate percentages based on overall change, rounding up */
  101. half_total = total_change / 2l;
  102. for (i = 0; i < cnt; i++)
  103. *out++ = ((*diffs++ * 1000 + half_total) / total_change);
  104. /* return the total in case the caller wants to use it */
  105. return total_change;
  106. }
  107. /* Prepare cpu module for use */
  108. void
  109. init_cpu(char *s)
  110. {
  111. char buf[_POSIX2_LINE_MAX];
  112. cp_size = sizeof(cp_time);
  113. /* Call get_cpu once to fill the cp_old structure */
  114. get_cpu(buf, sizeof(buf), NULL);
  115. info("started module cpu(%s)", s);
  116. }
  117. /* Get new cpu measurements */
  118. int
  119. get_cpu(char *symon_buf, int maxlen, char *s)
  120. {
  121. int total;
  122. if (sysctl(cp_time_mib, 2, &cp_time, &cp_size, NULL, 0) < 0) {
  123. warning("%s:%d: sysctl kern.cp_time failed", __FILE__, __LINE__);
  124. return 0;
  125. }
  126. /* convert cp_time counts to percentages */
  127. total = percentages(CPUSTATES, cp_states, cp_time, cp_old, cp_diff);
  128. return snpack(symon_buf, maxlen, s, MT_CPU,
  129. (double) (cp_states[CP_USER] / 10.0),
  130. (double) (cp_states[CP_NICE] / 10.0),
  131. (double) (cp_states[CP_SYS] / 10.0),
  132. (double) (cp_states[CP_INTR] / 10.0),
  133. (double) (cp_states[CP_IDLE] / 10.0));
  134. }