0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 08:01:51 +08:00
easy_profiler/README.md

83 lines
2.3 KiB
Markdown
Raw Normal View History

2016-08-21 12:45:30 +03:00
# easy_profiler [![License](https://img.shields.io/badge/license-GPL3-blue.svg)](https://github.com/yse/easy_profiler/blob/develop/COPYING)[![Build Status](https://travis-ci.org/yse/easy_profiler.svg?branch=develop)](https://travis-ci.org/yse/easy_profiler)
2016-08-31 22:47:17 +03:00
1. [About](#about)
2. [Build](#build)
- [Linux](#linux)
- [Windows](#windows)
3. [Usage](#usage)
# About
2016-06-29 07:45:11 +04:00
Lightweight profiler library for c++
2016-06-29 06:47:50 +04:00
2016-09-07 23:32:44 +04:00
You can profile any function in you code. Furthermore this library provide measuring time of any block of code. Also the library can capture system's context switch.
You can see the results of measuring in simple gui application which provide full statistic and render beautiful timeline.
2016-06-29 06:47:50 +04:00
2016-08-31 22:47:17 +03:00
# Build
## Prerequisites
For core:
* compiler with c++11 support
* cmake 3.0 or later
For GUI:
* Qt 5.3.0 or later
## linux
```bash
$ mkdir build
$ cd build
$ cmake ..
$ make
```
## windows
If you use qtcreator IDE you can just open `CMakeLists.txt` file in root directory.
If you use Visual Studio you can generate solution by cmake command. In this case you should specify path to cmake scripts in Qt5 dir (usually in lib/cmake subdir), for example:
```batch
$ mkdir build
$ cd build
2016-08-31 23:03:41 +03:00
$ cmake -DCMAKE_PREFIX_PATH="C:\Qt\5.3\msvc2013_64\lib\cmake" ..
2016-08-31 22:47:17 +03:00
```
# Usage
First of all you can specify path to include directory which contains `include/profiler` directory. For linking with ease_profiler you can specify path to library.
2016-06-29 06:47:50 +04:00
Example of usage.
This code snippet will generate block with function name and grouped it in Magenta group:
```cpp
2016-08-31 22:47:17 +03:00
#include <profiler/profiler.h>
2016-06-29 06:47:50 +04:00
void frame(){
2016-09-07 22:12:25 +03:00
EASY_FUNCTION(profiler::colors::Magenta);
prepareRender();
calculatePhysics();
2016-06-29 06:47:50 +04:00
}
```
2016-09-07 22:12:25 +03:00
To profile any block you may do this as following. You can specify these blocks also with Google material design color or just set name of block (in this case color will be OrangeA100):
2016-06-29 06:47:50 +04:00
```cpp
2016-08-31 22:47:17 +03:00
#include <profiler/profiler.h>
2016-06-29 06:47:50 +04:00
void frame(){
2016-09-07 22:12:25 +03:00
//some code
EASY_BLOCK("Calculating summ");
for(int i = 0; i < 10; i++){
sum += i;
}
EASY_END_BLOCK;
EASY_BLOCK("Calculating multiplication", profiler::colors::Blue50);
for(int i = 0; i < 10; i++){
mul *= i;
}
EASY_END_BLOCK;
2016-06-29 06:47:50 +04:00
}
```
2016-08-31 22:47:17 +03:00
[![Analytics](https://ga-beacon.appspot.com/UA-82899176-1/easy_profiler/readme)](https://github.com/yse/easy_profiler)