00001 // ***************************************************************************** 00002 // 00003 // Copyright (c) 2015, Southwest Research Institute® (SwRI®) 00004 // All rights reserved. 00005 // 00006 // Redistribution and use in source and binary forms, with or without 00007 // modification, are permitted provided that the following conditions are met: 00008 // * Redistributions of source code must retain the above copyright 00009 // notice, this list of conditions and the following disclaimer. 00010 // * Redistributions in binary form must reproduce the above copyright 00011 // notice, this list of conditions and the following disclaimer in the 00012 // documentation and/or other materials provided with the distribution. 00013 // * Neither the name of Southwest Research Institute® (SwRI®) nor the 00014 // names of its contributors may be used to endorse or promote products 00015 // derived from this software without specific prior written permission. 00016 // 00017 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 // ARE DISCLAIMED. IN NO EVENT SHALL Southwest Research Institute® BE LIABLE 00021 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00022 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 00023 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00024 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00025 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00026 // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 00027 // DAMAGE. 00028 // 00029 // ***************************************************************************** 00030 00031 #ifndef SWRI_PROFILER_TOOLS_NEW_PROFILE_DATA_H_ 00032 #define SWRI_PROFILER_TOOLS_NEW_PROFILE_DATA_H_ 00033 00034 #include <string> 00035 #include <vector> 00036 00037 namespace swri_profiler_tools 00038 { 00039 // This structure represents a single chunk of profile information and 00040 // is used to pass new data to the profile database. I don't like the 00041 // name but I more don't like not making progress from sitting around 00042 // thinking of a better name. 00043 struct NewProfileData 00044 { 00045 QString label; 00046 uint64_t wall_stamp_sec; 00047 uint64_t ros_stamp_ns; 00048 uint64_t cumulative_call_count; 00049 uint64_t cumulative_inclusive_duration_ns; 00050 uint64_t incremental_inclusive_duration_ns; 00051 uint64_t incremental_max_duration_ns; 00052 }; // struct NewProfileData 00053 00054 typedef std::vector<NewProfileData> NewProfileDataVector; 00055 } // namespace swri_profiler_tools 00056 #endif // SWRI_PROFILER_TOOLS_NEW_PROFILE_DATA_H_