profile.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.profile");
  9. dojo.profile = {_profiles:{}, _pns:[], start:function (name) {
  10. if (!this._profiles[name]) {
  11. this._profiles[name] = {iters:0, total:0};
  12. this._pns[this._pns.length] = name;
  13. } else {
  14. if (this._profiles[name]["start"]) {
  15. this.end(name);
  16. }
  17. }
  18. this._profiles[name].end = null;
  19. this._profiles[name].start = new Date();
  20. }, end:function (name) {
  21. var ed = new Date();
  22. if ((this._profiles[name]) && (this._profiles[name]["start"])) {
  23. with (this._profiles[name]) {
  24. end = ed;
  25. total += (end - start);
  26. start = null;
  27. iters++;
  28. }
  29. } else {
  30. return true;
  31. }
  32. }, dump:function (appendToDoc) {
  33. var tbl = document.createElement("table");
  34. with (tbl.style) {
  35. border = "1px solid black";
  36. borderCollapse = "collapse";
  37. }
  38. var hdr = tbl.createTHead();
  39. var hdrtr = hdr.insertRow(0);
  40. var cols = ["Identifier", "Calls", "Total", "Avg"];
  41. for (var x = 0; x < cols.length; x++) {
  42. var ntd = hdrtr.insertCell(x);
  43. with (ntd.style) {
  44. backgroundColor = "#225d94";
  45. color = "white";
  46. borderBottom = "1px solid black";
  47. borderRight = "1px solid black";
  48. fontFamily = "tahoma";
  49. fontWeight = "bolder";
  50. paddingLeft = paddingRight = "5px";
  51. }
  52. ntd.appendChild(document.createTextNode(cols[x]));
  53. }
  54. for (var x = 0; x < this._pns.length; x++) {
  55. var prf = this._profiles[this._pns[x]];
  56. this.end(this._pns[x]);
  57. if (prf.iters > 0) {
  58. var bdytr = tbl.insertRow(true);
  59. var vals = [this._pns[x], prf.iters, prf.total, parseInt(prf.total / prf.iters)];
  60. for (var y = 0; y < vals.length; y++) {
  61. var cc = bdytr.insertCell(y);
  62. cc.appendChild(document.createTextNode(vals[y]));
  63. with (cc.style) {
  64. borderBottom = "1px solid gray";
  65. paddingLeft = paddingRight = "5px";
  66. if (x % 2) {
  67. backgroundColor = "#e1f1ff";
  68. }
  69. if (y > 0) {
  70. textAlign = "right";
  71. borderRight = "1px solid gray";
  72. } else {
  73. borderRight = "1px solid black";
  74. }
  75. }
  76. }
  77. }
  78. }
  79. if (appendToDoc) {
  80. var ne = document.createElement("div");
  81. ne.id = "profileOutputTable";
  82. with (ne.style) {
  83. fontFamily = "Courier New, monospace";
  84. fontSize = "12px";
  85. lineHeight = "16px";
  86. borderTop = "1px solid black";
  87. padding = "10px";
  88. }
  89. if (document.getElementById("profileOutputTable")) {
  90. dojo.body().replaceChild(ne, document.getElementById("profileOutputTable"));
  91. } else {
  92. dojo.body().appendChild(ne);
  93. }
  94. ne.appendChild(tbl);
  95. }
  96. return tbl;
  97. }};
  98. dojo.profile.stop = dojo.profile.end;