FreeRDP/libfreerdp/utils/profiler.c

99 lines
2.4 KiB
C
Raw Normal View History

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>
#include <stdio.h>
#include <stdlib.h>
2011-08-10 05:58:42 +04:00
#include <freerdp/utils/profiler.h>
#include <freerdp/log.h>
#define TAG FREERDP_TAG("utils")
2011-08-10 05:58:42 +04:00
struct S_PROFILER
2011-08-10 05:58:42 +04: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
if (!profiler)
return NULL;
2017-02-14 14:28:58 +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
if (!profiler->name || !profiler->stopwatch)
goto fail;
2011-08-10 05:58:42 +04:00
return profiler;
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
{
if (profiler)
{
free(profiler->name);
stopwatch_free(profiler->stopwatch);
}
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)
{
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
}