3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 Random portability stuff
23 See comments in porting.h
28 #elif defined(__APPLE__)
30 #include <mach-o/dyld.h>
31 #elif defined(__FreeBSD__)
33 #include <sys/types.h>
34 #include <sys/sysctl.h>
42 #include "util/string.h"
46 #include "CoreFoundation/CoreFoundation.h"
53 Signal handler (grabs Ctrl-C on POSIX systems)
56 bool g_killed = false;
58 bool * signal_handler_killstatus(void)
63 #if !defined(_WIN32) // POSIX
66 void sigint_handler(int sig)
70 dstream<<DTIME<<"INFO: sigint_handler(): "
71 <<"Ctrl-C pressed, shutting down."<<std::endl;
73 // Comment out for less clutter when testing scripts
74 /*dstream<<DTIME<<"INFO: sigint_handler(): "
75 <<"Printing debug stacks"<<std::endl;
76 debug_stacks_print();*/
82 (void)signal(SIGINT, SIG_DFL);
86 void signal_handler_init(void)
88 (void)signal(SIGINT, sigint_handler);
94 BOOL WINAPI event_handler(DWORD sig)
99 case CTRL_CLOSE_EVENT:
100 case CTRL_LOGOFF_EVENT:
101 case CTRL_SHUTDOWN_EVENT:
103 if(g_killed == false)
105 dstream<<DTIME<<"INFO: event_handler(): "
106 <<"Ctrl+C, Close Event, Logoff Event or Shutdown Event, shutting down."<<std::endl;
107 // Comment out for less clutter when testing scripts
108 /*dstream<<DTIME<<"INFO: event_handler(): "
109 <<"Printing debug stacks"<<std::endl;
110 debug_stacks_print();*/
116 (void)signal(SIGINT, SIG_DFL);
120 case CTRL_BREAK_EVENT:
127 void signal_handler_init(void)
129 SetConsoleCtrlHandler( (PHANDLER_ROUTINE)event_handler,TRUE);
136 Multithreading support
138 int getNumberOfProcessors() {
139 #if defined(_SC_NPROCESSORS_ONLN)
141 return sysconf(_SC_NPROCESSORS_ONLN);
143 #elif defined(__FreeBSD__) || defined(__APPLE__)
145 unsigned int len, count;
147 return sysctlbyname("hw.ncpu", &count, &len, NULL, 0);
149 #elif defined(_GNU_SOURCE)
153 #elif defined(_WIN32)
156 GetSystemInfo(&sysinfo);
157 return sysinfo.dwNumberOfProcessors;
159 #elif defined(PTW32_VERSION) || defined(__hpux)
161 return pthread_num_processors_np();
171 bool threadBindToProcessor(threadid_t tid, int pnumber) {
174 HANDLE hThread = OpenThread(THREAD_ALL_ACCESS, 0, tid);
178 bool success = SetThreadAffinityMask(hThread, 1 << pnumber) != 0;
180 CloseHandle(hThread);
183 #elif (defined(__FreeBSD__) && (__FreeBSD_version >= 702106)) \
184 || defined(__linux) || defined(linux)
189 CPU_SET(pnumber, &cpuset);
190 return pthread_setaffinity_np(tid, sizeof(cpuset), &cpuset) == 0;
192 #elif defined(__sun) || defined(sun)
194 return processor_bind(P_LWPID, MAKE_LWPID_PTHREAD(tid),
199 return bindprocessor(BINDTHREAD, (tid_t)tid, pnumber) == 0;
201 #elif defined(__hpux) || defined(hpux)
203 pthread_spu_t answer;
205 return pthread_processor_bind_np(PTHREAD_BIND_ADVISORY_NP,
206 &answer, pnumber, tid) == 0;
208 #elif defined(__APPLE__)
210 struct thread_affinity_policy tapol;
212 thread_port_t threadport = pthread_mach_thread_np(tid);
213 tapol.affinity_tag = pnumber + 1;
214 return thread_policy_set(threadport, THREAD_AFFINITY_POLICY,
215 (thread_policy_t)&tapol, THREAD_AFFINITY_POLICY_COUNT) == KERN_SUCCESS;
225 bool threadSetPriority(threadid_t tid, int prio) {
228 HANDLE hThread = OpenThread(THREAD_ALL_ACCESS, 0, tid);
232 bool success = SetThreadPriority(hThread, prio) != 0;
234 CloseHandle(hThread);
239 struct sched_param sparam;
242 if (pthread_getschedparam(tid, &policy, &sparam) != 0)
245 int min = sched_get_priority_min(policy);
246 int max = sched_get_priority_max(policy);
248 sparam.sched_priority = min + prio * (max - min) / THREAD_PRIORITY_HIGHEST;
249 return pthread_setschedparam(tid, policy, &sparam) == 0;
259 // Default to RUN_IN_PLACE style relative paths
260 std::string path_share = "..";
261 std::string path_user = "..";
263 std::string getDataPath(const char *subpath)
265 return path_share + DIR_DELIM + subpath;
268 void pathRemoveFile(char *path, char delim)
270 // Remove filename and path delimiter
272 for(i = strlen(path)-1; i>=0; i--)
280 bool detectMSVCBuildDir(char *c_path)
282 std::string path(c_path);
283 const char *ends[] = {"bin\\Release", "bin\\Build", NULL};
284 return (removeStringEnd(path, ends) != "");
287 void initializePaths()
291 Use relative paths if RUN_IN_PLACE
294 infostream<<"Using relative paths (RUN_IN_PLACE)"<<std::endl;
301 const DWORD buflen = 1000;
305 // Find path of executable and set path_share relative to it
306 len = GetModuleFileName(GetModuleHandle(NULL), buf, buflen);
307 assert(len < buflen);
308 pathRemoveFile(buf, '\\');
310 if(detectMSVCBuildDir(buf)){
311 infostream<<"MSVC build directory detected"<<std::endl;
312 path_share = std::string(buf) + "\\..\\..";
313 path_user = std::string(buf) + "\\..\\..";
316 path_share = std::string(buf) + "\\..";
317 path_user = std::string(buf) + "\\..";
326 memset(buf, 0, BUFSIZ);
327 // Get path to executable
328 assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
330 pathRemoveFile(buf, '/');
332 path_share = std::string(buf) + "/..";
333 path_user = std::string(buf) + "/..";
338 #elif defined(__APPLE__)
340 //https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man3/dyld.3.html
341 //TODO: Test this code
343 uint32_t len = sizeof(buf);
344 assert(_NSGetExecutablePath(buf, &len) != -1);
346 pathRemoveFile(buf, '/');
348 path_share = std::string(buf) + "/..";
349 path_user = std::string(buf) + "/..";
354 #elif defined(__FreeBSD__)
358 size_t len = sizeof(buf);
362 mib[2] = KERN_PROC_PATHNAME;
364 assert(sysctl(mib, 4, buf, &len, NULL, 0) != -1);
366 pathRemoveFile(buf, '/');
368 path_share = std::string(buf) + "/..";
369 path_user = std::string(buf) + "/..";
373 //TODO: Get path of executable. This assumes working directory is bin/
374 dstream<<"WARNING: Relative path not properly supported on this platform"
376 path_share = std::string("..");
377 path_user = std::string("..");
381 #else // RUN_IN_PLACE
384 Use platform-specific paths otherwise
387 infostream<<"Using system-wide paths (NOT RUN_IN_PLACE)"<<std::endl;
394 const DWORD buflen = 1000;
398 // Find path of executable and set path_share relative to it
399 len = GetModuleFileName(GetModuleHandle(NULL), buf, buflen);
400 assert(len < buflen);
401 pathRemoveFile(buf, '\\');
404 path_share = std::string(buf) + "\\..";
406 // Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME>"
407 len = GetEnvironmentVariable("APPDATA", buf, buflen);
408 assert(len < buflen);
409 path_user = std::string(buf) + DIR_DELIM + PROJECT_NAME;
416 // Get path to executable
417 std::string bindir = "";
420 memset(buf, 0, BUFSIZ);
421 assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
422 pathRemoveFile(buf, '/');
426 // Find share directory from these.
427 // It is identified by containing the subdirectory "builtin".
428 std::list<std::string> trylist;
429 std::string static_sharedir = STATIC_SHAREDIR;
430 if(static_sharedir != "" && static_sharedir != ".")
431 trylist.push_back(static_sharedir);
432 trylist.push_back(bindir + "/../share/" + PROJECT_NAME);
433 trylist.push_back(bindir + "/..");
435 for(std::list<std::string>::const_iterator i = trylist.begin();
436 i != trylist.end(); i++)
438 const std::string &trypath = *i;
439 if(!fs::PathExists(trypath) || !fs::PathExists(trypath + "/builtin")){
440 dstream<<"WARNING: system-wide share not found at \""
441 <<trypath<<"\""<<std::endl;
444 // Warn if was not the first alternative
445 if(i != trylist.begin()){
446 dstream<<"WARNING: system-wide share found at \""
447 <<trypath<<"\""<<std::endl;
449 path_share = trypath;
453 path_user = std::string(getenv("HOME")) + "/." + PROJECT_NAME;
458 #elif defined(__APPLE__)
461 // http://stackoverflow.com/questions/516200/relative-paths-not-working-in-xcode-c
462 CFBundleRef main_bundle = CFBundleGetMainBundle();
463 CFURLRef resources_url = CFBundleCopyResourcesDirectoryURL(main_bundle);
465 if(CFURLGetFileSystemRepresentation(resources_url, TRUE, (UInt8 *)path, PATH_MAX))
467 dstream<<"Bundle resource path: "<<path<<std::endl;
469 path_share = std::string(path) + "/share";
474 dstream<<"WARNING: Could not determine bundle resource path"<<std::endl;
476 CFRelease(resources_url);
478 path_user = std::string(getenv("HOME")) + "/Library/Application Support/" + PROJECT_NAME;
480 #elif defined(__FreeBSD__)
482 path_share = STATIC_SHAREDIR;
483 path_user = std::string(getenv("HOME")) + "/." + PROJECT_NAME;
487 #endif // RUN_IN_PLACE
490 } //namespace porting