| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2014 Google Inc. | 3 * Copyright 2014 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef TALK_MEDIA_BASE_EXECUTABLEHELPERS_H_ | 28 #ifndef TALK_MEDIA_BASE_EXECUTABLEHELPERS_H_ |
| 29 #define TALK_MEDIA_BASE_EXECUTABLEHELPERS_H_ | 29 #define TALK_MEDIA_BASE_EXECUTABLEHELPERS_H_ |
| 30 | 30 |
| 31 #ifdef OSX | 31 #if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) |
| 32 #include <mach-o/dyld.h> | 32 #include <mach-o/dyld.h> |
| 33 #endif | 33 #endif |
| 34 | 34 |
| 35 #include <string> | 35 #include <string> |
| 36 | 36 |
| 37 #include "webrtc/base/logging.h" | 37 #include "webrtc/base/logging.h" |
| 38 #include "webrtc/base/pathutils.h" | 38 #include "webrtc/base/pathutils.h" |
| 39 | 39 |
| 40 namespace rtc { | 40 namespace rtc { |
| 41 | 41 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 55 LOG(LS_ERROR) << "Buffer too small"; | 55 LOG(LS_ERROR) << "Buffer too small"; |
| 56 return rtc::Pathname(); | 56 return rtc::Pathname(); |
| 57 } | 57 } |
| 58 #ifdef UNICODE | 58 #ifdef UNICODE |
| 59 std::wstring wdir(exe_path_buffer); | 59 std::wstring wdir(exe_path_buffer); |
| 60 std::string dir_tmp(wdir.begin(), wdir.end()); | 60 std::string dir_tmp(wdir.begin(), wdir.end()); |
| 61 rtc::Pathname path(dir_tmp); | 61 rtc::Pathname path(dir_tmp); |
| 62 #else // UNICODE | 62 #else // UNICODE |
| 63 rtc::Pathname path(exe_path_buffer); | 63 rtc::Pathname path(exe_path_buffer); |
| 64 #endif // UNICODE | 64 #endif // UNICODE |
| 65 #elif defined(OSX) || defined(LINUX) | 65 #elif (defined(WEBRTC_MAC) && !defined(WEBRTC_IOS)) || defined(WEBRTC_LINUX) |
| 66 char exe_path_buffer[kMaxExePathSize]; | 66 char exe_path_buffer[kMaxExePathSize]; |
| 67 #ifdef OSX | 67 #if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) |
| 68 uint32_t copied_length = kMaxExePathSize - 1; | 68 uint32_t copied_length = kMaxExePathSize - 1; |
| 69 if (_NSGetExecutablePath(exe_path_buffer, &copied_length) == -1) { | 69 if (_NSGetExecutablePath(exe_path_buffer, &copied_length) == -1) { |
| 70 LOG(LS_ERROR) << "Buffer too small"; | 70 LOG(LS_ERROR) << "Buffer too small"; |
| 71 return rtc::Pathname(); | 71 return rtc::Pathname(); |
| 72 } | 72 } |
| 73 #elif defined LINUX | 73 #elif defined WEBRTC_LINUX |
| 74 int32_t copied_length = kMaxExePathSize - 1; | 74 int32_t copied_length = kMaxExePathSize - 1; |
| 75 const char* kProcExeFmt = "/proc/%d/exe"; | 75 const char* kProcExeFmt = "/proc/%d/exe"; |
| 76 char proc_exe_link[40]; | 76 char proc_exe_link[40]; |
| 77 snprintf(proc_exe_link, sizeof(proc_exe_link), kProcExeFmt, getpid()); | 77 snprintf(proc_exe_link, sizeof(proc_exe_link), kProcExeFmt, getpid()); |
| 78 copied_length = readlink(proc_exe_link, exe_path_buffer, copied_length); | 78 copied_length = readlink(proc_exe_link, exe_path_buffer, copied_length); |
| 79 if (copied_length == -1) { | 79 if (copied_length == -1) { |
| 80 LOG_ERR(LS_ERROR) << "Error reading link " << proc_exe_link; | 80 LOG_ERR(LS_ERROR) << "Error reading link " << proc_exe_link; |
| 81 return rtc::Pathname(); | 81 return rtc::Pathname(); |
| 82 } | 82 } |
| 83 if (copied_length == kMaxExePathSize - 1) { | 83 if (copied_length == kMaxExePathSize - 1) { |
| 84 LOG(LS_ERROR) << "Probably truncated result when reading link " | 84 LOG(LS_ERROR) << "Probably truncated result when reading link " |
| 85 << proc_exe_link; | 85 << proc_exe_link; |
| 86 return rtc::Pathname(); | 86 return rtc::Pathname(); |
| 87 } | 87 } |
| 88 exe_path_buffer[copied_length] = '\0'; | 88 exe_path_buffer[copied_length] = '\0'; |
| 89 #endif // LINUX | 89 #endif // WEBRTC_LINUX |
| 90 rtc::Pathname path(exe_path_buffer); | 90 rtc::Pathname path(exe_path_buffer); |
| 91 #else // Android || IOS | 91 #else // Android || iOS |
| 92 rtc::Pathname path; | 92 rtc::Pathname path; |
| 93 #endif // OSX || LINUX | 93 #endif // Mac || Linux |
| 94 return path; | 94 return path; |
| 95 } | 95 } |
| 96 | 96 |
| 97 } // namespace rtc | 97 } // namespace rtc |
| 98 | 98 |
| 99 #endif // TALK_MEDIA_BASE_EXECUTABLEHELPERS_H_ | 99 #endif // TALK_MEDIA_BASE_EXECUTABLEHELPERS_H_ |
| 100 | 100 |
| OLD | NEW |