aboutsummaryrefslogtreecommitdiff
path: root/src/system_wrappers/test/Test.cpp
blob: 7a34166b0df903fe1336cb5b36f0cdd5bf25131a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 *  Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include <cassert>
#include <iostream>

#ifdef _WIN32
    #include <windows.h>
    #include <tchar.h>
#else
    #include <stdio.h>
    #define Sleep(x) usleep(x*1000)
#endif

#include "common_types.h"
#include "trace.h"
#include "cpu_wrapper.h"


#ifdef _WIN32
int _tmain(int argc, _TCHAR* argv[])
#else
int main(int argc, char* argv[])
#endif
{
    Trace::CreateTrace();
    Trace::SetTraceFile("testTrace.txt");
    Trace::SetLevelFilter(webrtc::kTraceAll);

    printf("Start system wrapper test\n");

    printf("Number of cores detected:%u\n", (unsigned int)CpuWrapper::DetectNumberOfCores());

    CpuWrapper* cpu = CpuWrapper::CreateCpu();

    WebRtc_UWord32 numCores;
    WebRtc_UWord32* cores;

    for(int i = 0; i< 10;i++)
    {
        WebRtc_Word32 total = cpu->CpuUsageMultiCore(numCores, cores);

        printf("\nNumCores:%d\n", (int)numCores);
        printf("Total cpu:%d\n", (int)total);

        for (WebRtc_UWord32 i = 0; i< numCores;i++)
        {
            printf("Core:%lu CPU:%lu \n", i, cores[i]);
        }
        Sleep(1000);
    }

    printf("Done system wrapper test\n");

    delete cpu;

    Trace::ReturnTrace();
};