summaryrefslogtreecommitdiff
path: root/tests/suite/ecore/src/lib/eina_cpu.c
blob: d50506a03ed28bdd09a7a031f979a579e45aab92 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* EINA - EFL data type library
 * Copyright (C) 2007-2008 Jorge Luis Zapata Muga
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library;
 * if not, see <http://www.gnu.org/licenses/>.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef EFL_HAVE_THREADS
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#elif defined (__SUNPRO_C) || defined(__GNUC__)
#include <unistd.h>
#elif defined (__FreeBSD__) || defined (__OpenBSD__) || \
   defined (__NetBSD__) || defined (__DragonFly__) || defined (__MacOSX__) || \
   (defined (__MACH__) && defined (__APPLE__))
#include <unistd.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#elif defined (__linux__) || defined(__GLIBC__)
#define _GNU_SOURCE
#include <sched.h>
#endif
#ifdef EFL_HAVE_POSIX_THREADS
#include <pthread.h>
#endif

#define TH_MAX 8
#endif

#include <stdio.h>
#include <string.h>
#include <errno.h>

#include "eina_cpu.h"

/*============================================================================*
*                                  Local                                     *
*============================================================================*/

/* FIXME this ifdefs should be replaced */

/*============================================================================*
*                                 Global                                     *
*============================================================================*/

/*============================================================================*
*                                   API                                      *
*============================================================================*/

/* FIXME the features checks should be called when this function is called?
 * or make it static by doing eina_cpu_init() and return a local var
 */
/**
 *
 * @return
 */
EAPI Eina_Cpu_Features eina_cpu_features_get(void)
{
	Eina_Cpu_Features ecf = 0;
	return ecf;
}

EAPI int eina_cpu_count(void)
{
#ifdef EFL_HAVE_THREADS

#if   defined (_WIN32)
	SYSTEM_INFO sysinfo;

	GetSystemInfo(&sysinfo);
	return sysinfo.dwNumberOfProcessors;

#elif defined (__SUNPRO_C) || defined(__GNUC__)
	/*
	 * _SC_NPROCESSORS_ONLN: number of processors that are online, that
	 is available when sysconf is called. The number
	 of cpu can change by admins.
	 * _SC_NPROCESSORS_CONF: maximum number of processors that are available
	 to the current OS instance. That number can be
	 change after a reboot.
	 * _SC_NPROCESSORS_MAX : maximum number of processors that are on the
	 motherboard.
	 */
	return sysconf(_SC_NPROCESSORS_ONLN);

#elif defined (__FreeBSD__) || defined (__OpenBSD__) || \
   defined (__NetBSD__) || defined (__DragonFly__) || defined (__MacOSX__) || \
   (defined (__MACH__) && defined (__APPLE__))

	int mib[4];
	int cpus;
	size_t len = sizeof(cpus);

	mib[0] = CTL_HW;
#ifdef HW_AVAILCPU
	mib[1] = HW_AVAILCPU;
#else
	mib[1] = HW_NCPU;
#endif
	sysctl(mib, 2, &cpus, &len, NULL, 0);
	if (cpus < 1)
		cpus = 1;

	return cpus;

#elif defined (__linux__) || defined(__GLIBC__)
	cpu_set_t cpu;
	int i;
	static int cpus = 0;

	if (cpus != 0)
		return cpus;

	CPU_ZERO(&cpu);
	if (sched_getaffinity(0, sizeof(cpu), &cpu) != 0) {
		fprintf(stderr, "[Eina] could not get cpu affinity: %s\n",
			strerror(errno));
		return 1;
	}

	for (i = 0; i < TH_MAX; i++) {
		if (CPU_ISSET(i, &cpu))
			cpus = i + 1;
		else
			break;
	}
	return cpus;

#else
#error "eina_cpu_count() error: Platform not supported"
#endif
#else
	return 1;
#endif
}