2011-08-10 05:58:42 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-10 05:58:42 +04:00
|
|
|
* Profiler Utils
|
|
|
|
*
|
|
|
|
* Copyright 2011 Stephen Erisman
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2012-08-15 01:09:01 +04:00
|
|
|
|
2012-09-24 02:41:07 +04:00
|
|
|
#include <stdio.h>
|
2012-10-09 07:21:26 +04:00
|
|
|
#include <stdlib.h>
|
2012-09-24 02:41:07 +04:00
|
|
|
|
2011-08-10 05:58:42 +04:00
|
|
|
#include <freerdp/utils/profiler.h>
|
2014-09-12 16:36:29 +04:00
|
|
|
#include <freerdp/log.h>
|
|
|
|
|
|
|
|
#define TAG FREERDP_TAG("utils")
|
2011-08-10 05:58:42 +04:00
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
struct S_PROFILER
|
2011-08-10 05:58:42 +04:00
|
|
|
{
|
2018-11-15 19:52:43 +03:00
|
|
|
char* name;
|
|
|
|
STOPWATCH* stopwatch;
|
|
|
|
};
|
|
|
|
|
|
|
|
PROFILER* profiler_create(const char* name)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
PROFILER* profiler = (PROFILER*)calloc(1, sizeof(PROFILER));
|
2017-02-14 14:28:58 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!profiler)
|
|
|
|
return NULL;
|
2017-02-14 14:28:58 +03:00
|
|
|
|
2018-11-15 19:52:43 +03:00
|
|
|
profiler->name = _strdup(name);
|
2011-08-10 05:58:42 +04:00
|
|
|
profiler->stopwatch = stopwatch_create();
|
2017-02-14 14:28:58 +03:00
|
|
|
|
2018-11-15 19:52:43 +03:00
|
|
|
if (!profiler->name || !profiler->stopwatch)
|
|
|
|
goto fail;
|
2011-08-10 05:58:42 +04:00
|
|
|
|
|
|
|
return profiler;
|
2018-11-15 19:52:43 +03:00
|
|
|
fail:
|
|
|
|
profiler_free(profiler);
|
|
|
|
return NULL;
|
2011-08-10 05:58:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void profiler_free(PROFILER* profiler)
|
2017-02-14 14:28:58 +03:00
|
|
|
{
|
2018-05-15 10:13:00 +03:00
|
|
|
if (profiler)
|
2018-11-15 19:52:43 +03:00
|
|
|
{
|
|
|
|
free(profiler->name);
|
2018-05-15 10:13:00 +03:00
|
|
|
stopwatch_free(profiler->stopwatch);
|
2018-11-15 19:52:43 +03:00
|
|
|
}
|
2018-05-15 10:13:00 +03:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(profiler);
|
2011-08-10 05:58:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void profiler_enter(PROFILER* profiler)
|
|
|
|
{
|
|
|
|
stopwatch_start(profiler->stopwatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void profiler_exit(PROFILER* profiler)
|
|
|
|
{
|
|
|
|
stopwatch_stop(profiler->stopwatch);
|
|
|
|
}
|
|
|
|
|
2017-02-14 14:28:58 +03:00
|
|
|
void profiler_print_header(void)
|
2011-08-10 05:58:42 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG,
|
|
|
|
"-------------------------------+------------+-------------+-----------+-------");
|
|
|
|
WLog_INFO(TAG,
|
|
|
|
"PROFILER NAME | COUNT | TOTAL | AVG | IPS");
|
|
|
|
WLog_INFO(TAG,
|
|
|
|
"-------------------------------+------------+-------------+-----------+-------");
|
2011-08-10 05:58:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void profiler_print(PROFILER* profiler)
|
|
|
|
{
|
2017-03-27 10:00:27 +03:00
|
|
|
double s = stopwatch_get_elapsed_time_in_seconds(profiler->stopwatch);
|
|
|
|
double avg = profiler->stopwatch->count == 0 ? 0 : s / profiler->stopwatch->count;
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG, "%-30s | %10u | %10.4fs | %8.6fs | %6.0f", profiler->name,
|
|
|
|
profiler->stopwatch->count, s, avg, profiler->stopwatch->count / s);
|
2011-08-10 05:58:42 +04:00
|
|
|
}
|
|
|
|
|
2017-02-14 14:28:58 +03:00
|
|
|
void profiler_print_footer(void)
|
2011-08-10 05:58:42 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG,
|
|
|
|
"-------------------------------+------------+-------------+-----------+-------");
|
2011-08-10 05:58:42 +04:00
|
|
|
}
|