1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
########################################################################
##
## Copyright (C) 2015-2026 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING. If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################
## -*- texinfo -*-
## @deftypefn {} {} profexport (@var{dir})
## @deftypefnx {} {} profexport (@var{dir}, @var{data})
## @deftypefnx {} {} profexport (@var{dir}, @var{name})
## @deftypefnx {} {} profexport (@var{dir}, @var{name}, @var{data})
##
## Export profiler data as HTML.
##
## Export the profiling data in @var{data} into a series of HTML files in
## the folder @var{dir}. The initial file will be
## @file{@var{data}/index.html}.
##
## If @var{name} is specified, it must be a string that contains a ``name''
## for the profile being exported. This name is included in the HTML.
##
## The input @var{data} is the structure returned by @code{profile ("info")}.
## If unspecified, @code{profexport} will use the current profile dataset.
##
## @seealso{profshow, profexplore, profile}
## @end deftypefn
function profexport (dir, name = "", data)
if (nargin < 1)
print_usage ();
endif
if (! ischar (dir))
error ("profexport: DIR must be a string");
endif
if (nargin == 1)
data = profile ("info");
elseif (nargin == 2)
if (isstruct (name))
data = name;
name = "";
else
if (! ischar (name))
error ("profexport: NAME must be a string");
endif
data = profile ("info");
endif
endif
if (! isfolder (dir))
ok = mkdir (dir);
if (! ok)
error ("profexport: failed to create output directory '%s'", dir);
endif
endif
if (! copyfile (__dataFilename ("style.css"), dir))
error ("profexport: failed to copy data file to directory '%s'", dir);
endif
if (isempty (name))
name = "Profile";
else
name = ["Profile - " __escapeHtml(name)];
endif
__writeFlat (fullfile (dir, "index.html"), name, data.FunctionTable);
for i = 1 : length (data.FunctionTable)
__writeFunc (fullfile (dir, sprintf ("function-%d.html", i)), name, ...
data.FunctionTable, i);
endfor
top = struct ("name", "Top");
__writeHierarchical (dir, name, data.FunctionTable, ...
{top}, data.Hierarchical, 1);
endfunction
################################################################################
## Write flat profile.
function __writeFlat (file, name, table)
template = __readTemplate ("flat.html");
entryTemplate = __readTemplate ("flat-entry.html");
## Construct the entries string.
## This follows the same logic that is used in profshow.
times = [ table.TotalTime ];
totalTime = sum (times);
[~, p] = sort (times, "descend");
entries = "";
for i = 1 : length (table)
row = table(p(i));
cur = entryTemplate;
cur = strrep (cur, "%num", sprintf ("%d", p(i)));
cur = strrep (cur, "%name", __escapeHtml (row.FunctionName));
cur = strrep (cur, "%timeabs", sprintf ("%.3f", row.TotalTime));
cur = strrep (cur, "%timerel", ...
sprintf ("%.2f", 100 * row.TotalTime / totalTime));
cur = strrep (cur, "%calls", sprintf ("%d", row.NumCalls));
entries = [entries, cur];
endfor
## Build full page content.
res = template;
res = strrep (res, "%title", name);
res = strrep (res, "%entries", entries);
## Write out the file.
__writeToFile (file, res);
endfunction
################################################################################
## Write "function profile" pages.
function __writeFunc (file, name, table, ind)
template = __readTemplate ("function.html");
row = table(ind);
## Fill in basic data.
res = template;
res = strrep (res, "%title", name);
res = strrep (res, "%name", __escapeHtml (row.FunctionName));
res = strrep (res, "%timeabs", sprintf ("%.3f", row.TotalTime));
res = strrep (res, "%calls", sprintf ("%d", row.NumCalls));
## Build up attribute list.
attr = "";
if (row.IsRecursive)
attr = "recursive";
endif
res = strrep (res, "%attr", attr);
## Add parent and child list.
parents = __buildParentOrChildList (table, row.Parents);
res = strrep (res, "%parents", parents);
children = __buildParentOrChildList (table, row.Children);
res = strrep (res, "%children", children);
## Write out the file.
__writeToFile (file, res);
endfunction
function lst = __buildParentOrChildList (table, inds)
if (length (inds) == 0)
lst = "none";
return;
endif
template = "<a href='function-%num.html'>%name</a>";
lst = "";
for i = 1 : length (inds)
if (i > 1)
lst = [lst, ", "];
endif
cur = template;
cur = strrep (cur, "%num", sprintf ("%d", inds(i)));
cur = strrep (cur, "%name", __escapeHtml (table(inds(i)).FunctionName));
lst = [lst, cur];
endfor
endfunction
################################################################################
## Write a hierarchical profile page.
## In order to generate unique filenames for the pages, we keep a running
## counter that is passed through and updated by the recursive calls.
## The function returns two counter values: The one that is chosen
## for its own page (so that parent nodes can link down to them)
## and the next value to be passed to the next call.
function [mine, cnt] = __writeHierarchical (dir, name, funcs, ...
parents, children, cnt)
template = __readTemplate ("hierarchical.html");
entryTemplate = __readTemplate ("hierarchical-entry.html");
## Fill in basic data and parent breadcrumbs.
res = template;
res = strrep (res, "%title", name);
parentsStr = __hierarchicalParents (parents);
res = strrep (res, "%parents", parentsStr);
## Set this page's counter and update parents struct with it.
mine = cnt++;
parents{end}.cnt = mine;
file = sprintf ("%s/hierarchy-%d.html", dir, mine);
## Sort children by time.
times = -[ children.TotalTime ];
[~, p] = sort (times);
children = children(p);
## Recurse on children and construct entry list.
entries = "";
for i = 1 : length (children)
cur = children(i);
curName = funcs(cur.Index).FunctionName;
newParents = parents;
newParents{end + 1} = struct ("name", curName);
[childCnt, cnt] = __writeHierarchical (dir, name, funcs, ...
newParents, cur.Children, cnt);
str = entryTemplate;
str = strrep (str, "%cnt", sprintf ("%d", childCnt));
str = strrep (str, "%name", __escapeHtml (curName));
str = strrep (str, "%total", sprintf ("%.3f", cur.TotalTime));
str = strrep (str, "%self", sprintf ("%.3f", cur.SelfTime));
str = strrep (str, "%calls", sprintf ("%d", cur.NumCalls));
entries = [entries, str];
endfor
res = strrep (res, "%entries", entries);
## Write out the file.
__writeToFile (file, res);
endfunction
function str = __hierarchicalParents (parents)
## We always have at least the "Top" entry!
assert (length (parents) > 0);
template = "<a href='hierarchy-%cnt.html'>%name</a>";
lastTemplate = "<strong>%name</strong>";
str = "";
for i = 1 : length (parents) - 1
cur = template;
cur = strrep (cur, "%cnt", sprintf ("%d", parents{i}.cnt));
cur = strrep (cur, "%name", __escapeHtml (parents{i}.name));
str = [str, cur, " > "];
endfor
cur = lastTemplate;
cur = strrep (cur, "%name", __escapeHtml (parents{end}.name));
str = [str, cur];
endfunction
################################################################################
## General helper functions.
function __writeToFile (file, str)
fid = fopen (file, "w");
if (fid < 0)
error ("profexport: failed to open '%s' for writing", file);
endif
fputs (fid, str);
fclose (fid);
endfunction
function fn = __dataFilename (name)
etcdir = __octave_config_info__ ("octetcdir");
fn = fullfile (etcdir, "profiler", name);
endfunction
function str = __readTemplate (name)
fn = __dataFilename (name);
str = fileread (fn);
endfunction
function str = __escapeHtml (str)
str = strrep (str, '&', "&");
str = strrep (str, '<', "<");
str = strrep (str, '>', ">");
str = strrep (str, '"', """);
endfunction
################################################################################
## Tests and demo.
%!demo
%! profile on;
%! A = rand (100);
%! B = expm (A);
%! profile off;
%! dir = tempname ();
%! profexport (dir, "Example Profile");
%! open (fullfile (dir, "index.html"));
## Test input validation
%!error <Invalid call> profexport ()
%!error profexport (1)
%!error profexport (1, 2, 3, 4)
%!error <DIR must be a string> profexport (5)
%!error <NAME must be a string> profexport ("dir", 5)
|