sm_cpu.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /* $Id: sm_cpu.c,v 1.21 2005/10/18 19:58:11 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
  5. * of the 'top' utility. His copyright statement is below.
  6. *
  7. * Copyright (c) 2001-2005 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. /*
  36. * Top users/processes display for Unix
  37. * Version 3
  38. *
  39. * This program may be freely redistributed,
  40. * but this entire comment MUST remain intact.
  41. *
  42. * Copyright (c) 1984, 1989, William LeFebvre, Rice University
  43. * Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
  44. */
  45. /*
  46. * Get current cpu statistics in percentages (total of all counts = 100.0)
  47. * and returns them in symon_buf as
  48. *
  49. * user : nice : system : interrupt : idle
  50. *
  51. * This code is not re-entrant and UP only.
  52. *
  53. * This module uses the sysctl interface and can run as any user.
  54. */
  55. #include <sys/dkstat.h>
  56. #include <sys/param.h>
  57. #include <sys/sysctl.h>
  58. #include "error.h"
  59. #include "symon.h"
  60. __BEGIN_DECLS
  61. int percentages(int, int *, long *, long *, long *);
  62. __END_DECLS
  63. /* Globals for this module all start with cp_ */
  64. static int cp_time_mib[] = {CTL_KERN, KERN_CPTIME};
  65. static size_t cp_size;
  66. /*
  67. * percentages(cnt, out, new, old, diffs) - calculate percentage change
  68. * between array "old" and "new", putting the percentages i "out".
  69. * "cnt" is size of each array and "diffs" is used for scratch space.
  70. * The array "old" is updated on each call.
  71. * The routine assumes modulo arithmetic. This function is especially
  72. * useful on BSD mchines for calculating cpu state percentages.
  73. */
  74. int
  75. percentages(int cnt, int *out, register long *new, register long *old, long *diffs)
  76. {
  77. register int i;
  78. register long change;
  79. register long total_change;
  80. register long *dp;
  81. long half_total;
  82. /* initialization */
  83. total_change = 0;
  84. dp = diffs;
  85. /* calculate changes for each state and the overall change */
  86. for (i = 0; i < cnt; i++) {
  87. if ((change = *new - *old) < 0) {
  88. /* this only happens when the counter wraps */
  89. change = ((unsigned int) *new - (unsigned int) *old);
  90. }
  91. total_change += (*dp++ = change);
  92. *old++ = *new++;
  93. }
  94. /* avoid divide by zero potential */
  95. if (total_change == 0)
  96. total_change = 1;
  97. /* calculate percentages based on overall change, rounding up */
  98. half_total = total_change / 2l;
  99. for (i = 0; i < cnt; i++)
  100. *out++ = ((*diffs++ * 1000 + half_total) / total_change);
  101. /* return the total in case the caller wants to use it */
  102. return total_change;
  103. }
  104. void
  105. init_cpu(struct stream *st)
  106. {
  107. char buf[SYMON_MAX_OBJSIZE];
  108. cp_size = sizeof(st->parg.cp.time);
  109. /* Call get_cpu once to fill the cp_old structure */
  110. get_cpu(buf, sizeof(buf), st);
  111. info("started module cpu(%.200s)", st->arg);
  112. }
  113. void
  114. gets_cpu()
  115. {
  116. /* EMPTY */
  117. }
  118. int
  119. get_cpu(char *symon_buf, int maxlen, struct stream *st)
  120. {
  121. int total;
  122. if (sysctl(cp_time_mib, 2, &st->parg.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, st->parg.cp.states, st->parg.cp.time, st->parg.cp.old, st->parg.cp.diff);
  128. return snpack(symon_buf, maxlen, st->arg, MT_CPU,
  129. (double) (st->parg.cp.states[CP_USER] / 10.0),
  130. (double) (st->parg.cp.states[CP_NICE] / 10.0),
  131. (double) (st->parg.cp.states[CP_SYS] / 10.0),
  132. (double) (st->parg.cp.states[CP_INTR] / 10.0),
  133. (double) (st->parg.cp.states[CP_IDLE] / 10.0));
  134. }