blob: 8016386ed214de371eae619f4e887aef01852408 [file] [log] [blame]
Austin Schuh3333ec72022-12-29 16:21:06 -08001/* Copyright (C) 2013-2016, The Regents of The University of Michigan.
2All rights reserved.
3This software was developed in the APRIL Robotics Lab under the
4direction of Edwin Olson, ebolson@umich.edu. This software may be
5available under alternative licensing terms; contact the address above.
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
81. Redistributions of source code must retain the above copyright notice, this
9 list of conditions and the following disclaimer.
102. Redistributions in binary form must reproduce the above copyright notice,
11 this list of conditions and the following disclaimer in the documentation
12 and/or other materials provided with the distribution.
13THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23The views and conclusions contained in the software and documentation are those
24of the authors and should not be interpreted as representing official policies,
25either expressed or implied, of the Regents of The University of Michigan.
26*/
27
28#pragma once
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34#include <stdio.h>
35#include <string.h>
36#include <stdint.h>
37
38#include "time_util.h"
39#include "zarray.h"
40
41struct timeprofile_entry
42{
43 char name[32];
44 int64_t utime;
45};
46
47typedef struct timeprofile timeprofile_t;
48struct timeprofile
49{
50 int64_t utime;
51 zarray_t *stamps;
52};
53
54static inline timeprofile_t *timeprofile_create()
55{
56 timeprofile_t *tp = (timeprofile_t*) calloc(1, sizeof(timeprofile_t));
57 tp->stamps = zarray_create(sizeof(struct timeprofile_entry));
58
59 tp->utime = utime_now();
60
61 return tp;
62}
63
64static inline void timeprofile_destroy(timeprofile_t *tp)
65{
66 zarray_destroy(tp->stamps);
67 free(tp);
68}
69
70static inline void timeprofile_clear(timeprofile_t *tp)
71{
72 zarray_clear(tp->stamps);
73 tp->utime = utime_now();
74}
75
76static inline void timeprofile_stamp(timeprofile_t *tp, const char *name)
77{
78 struct timeprofile_entry tpe;
79
80 strncpy(tpe.name, name, sizeof(tpe.name));
81 tpe.name[sizeof(tpe.name)-1] = 0;
82 tpe.utime = utime_now();
83
84 zarray_add(tp->stamps, &tpe);
85}
86
87static inline void timeprofile_display(timeprofile_t *tp)
88{
89 int64_t lastutime = tp->utime;
90
91 for (int i = 0; i < zarray_size(tp->stamps); i++) {
92 struct timeprofile_entry *stamp;
93
94 zarray_get_volatile(tp->stamps, i, &stamp);
95
96 double cumtime = (stamp->utime - tp->utime)/1000000.0;
97
98 double parttime = (stamp->utime - lastutime)/1000000.0;
99
100 printf("%2d %32s %15f ms %15f ms\n", i, stamp->name, parttime*1000, cumtime*1000);
101
102 lastutime = stamp->utime;
103 }
104}
105
106static inline uint64_t timeprofile_total_utime(timeprofile_t *tp)
107{
108 if (zarray_size(tp->stamps) == 0)
109 return 0;
110
111 struct timeprofile_entry *first, *last;
112 zarray_get_volatile(tp->stamps, 0, &first);
113 zarray_get_volatile(tp->stamps, zarray_size(tp->stamps) - 1, &last);
114
115 return last->utime - first->utime;
116}
117
118#ifdef __cplusplus
119}
120#endif