summaryrefslogtreecommitdiff
path: root/src/kpi/dlt-kpi-common.c
blob: 53298b1f1da3db7af62528e25ff3e9d4d860204f (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * @licence app begin@
 * SPDX license identifier: MPL-2.0
 *
 * Copyright (C) 2011-2015, BMW AG
 *
 * This file is part of GENIVI Project DLT - Diagnostic Log and Trace.
 *
 * This Source Code Form is subject to the terms of the
 * Mozilla Public License (MPL), v. 2.0.
 * If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * For further information see http://www.genivi.org/.
 * @licence end@
 */

/*!
 * \author Sven Hassler <sven_hassler@mentor.com>
 *
 * \copyright Copyright © 2011-2015 BMW AG. \n
 * License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
 *
 * \file dlt-kpi-common.c
 */

#include "dlt-kpi-common.h"

static int dlt_kpi_cpu_count = -1;

DltReturnValue dlt_kpi_read_file_compact(char *filename, char **target)
{
    if ((filename == NULL) || (target == NULL)) {
        fprintf(stderr, "%s: Nullpointer parameter!\n", __func__);
        return DLT_RETURN_WRONG_PARAMETER;
    }

    char buffer[BUFFER_SIZE];
    int ret = dlt_kpi_read_file(filename, buffer, BUFFER_SIZE);

    if (ret < DLT_RETURN_OK)
        return ret;

    if ((*target = malloc(strlen(buffer) + 1)) == NULL) {
        fprintf(stderr, "Out of memory!\n");
        return DLT_RETURN_ERROR;
    }

    memcpy(*target, buffer, strlen(buffer) + 1);

    return DLT_RETURN_OK;
}

DltReturnValue dlt_kpi_read_file(char *filename, char *buffer, uint maxLength)
{
    if ((filename == NULL) || (buffer == NULL)) {
        fprintf(stderr, "%s: Nullpointer parameter!\n", __func__);
        return DLT_RETURN_WRONG_PARAMETER;
    }

    FILE *file = fopen(filename, "r");

    if (file == NULL)
        /* fprintf(stderr, "Could not read file %s\n", filename); */
        return DLT_RETURN_ERROR;

    int buflen = fread(buffer, 1, maxLength - 1, file);
    buffer[buflen] = '\0';

    fclose(file);

    return DLT_RETURN_OK;
}

int dlt_kpi_read_cpu_count()
{
    char buffer[BUFFER_SIZE];
    int ret = dlt_kpi_read_file("/proc/cpuinfo", buffer, sizeof(buffer));

    if (ret != 0) {
        fprintf(stderr, "dlt_kpi_get_cpu_count(): Could not read /proc/cpuinfo\n");
        return -1;
    }

    char *delim = "[] \t\n";
    char *tok = strtok(buffer, delim);

    if (tok == NULL) {
        fprintf(stderr, "dlt_kpi_get_cpu_count(): Could not extract token\n");
        return -1;
    }

    int num = 0;

    do {
        if (strcmp(tok, "processor") == 0)
            num++;

        tok = strtok(NULL, delim);
    } while (tok != NULL);

    return num;
}

int dlt_kpi_get_cpu_count()
{
    if (dlt_kpi_cpu_count <= 0) {
        dlt_kpi_cpu_count = dlt_kpi_read_cpu_count();

        if (dlt_kpi_cpu_count <= 0) {
            fprintf(stderr, "Could not get CPU count\n");
            dlt_kpi_cpu_count = -1;
        }
    }

    return dlt_kpi_cpu_count;
}