XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
executable.hpp
Go to the documentation of this file.
1 
8 #pragma once
9 
10 #include <xtd/xtd.hpp>
11 
12 #if ((XTD_OS_LINUX | XTD_OS_CYGWIN | XTD_OS_MSYS) & XTD_OS)
13  #include <limits.h>
14  #include <unistd.h>
15 #endif
16 
17 #include <xtd/filesystem.hpp>
18 #include <xtd/exception.hpp>
19 
20 namespace xtd {
21 
25  class executable{
27 
28  explicit executable(const xtd::filesystem::path& oPath) : _Path(oPath){}
29 
30 #if ((XTD_OS_WINDOWS | XTD_OS_MINGW) & XTD_OS)
31  static inline xtd::filesystem::path get_path(){
32  static xtd::filesystem::path sRet="";
33  if (0 != sRet.string().size()){
34  return sRet;
35  }
36  std::string sTemp(MAX_PATH, 0);
37  forever {
38  auto iLen = xtd::crt_exception::throw_if(GetModuleFileName(nullptr, &sTemp[0], static_cast<DWORD>(sTemp.size())), [](DWORD ret){ return (0==ret); });
39  if (iLen >= sTemp.size()){
40  sTemp.resize(sTemp.size() * 2);
41  }else{
42  sTemp.resize(iLen);
43  break;
44  }
45  }
46  sRet = sTemp;
47  return sRet;
48  }
49 #elif ((XTD_OS_LINUX | XTD_OS_CYGWIN | XTD_OS_MSYS) & XTD_OS)
50 
51  static inline xtd::filesystem::path get_path() {
52  static std::string sRet(PATH_MAX, 0);
53  if (!sRet[0]) {
54  sRet.resize(xtd::crt_exception::throw_if(::readlink("/proc/self/exe", &sRet[0], sRet.size()), [](int i) { return (-1 == i); }));
55  }
56  return sRet;
57  }
58 
59 #endif
60 
61  public:
62 
64  const xtd::filesystem::path& path() const { return _Path; }
65 
66  static executable& this_executable(){
67  static executable _executable(get_path());
68  return _executable;
69  }
70 
71  };
72 
73 }
74 
host, target and build configurations and settings Various components are purpose built for specific ...
#define throw_if(_test, _expression)
Simplifies use of exception::_throw_if.
Definition: exception.hpp:22
generic and special purpose exceptions
handle necessary filesystem and path functionality until C++17 is finalized
Represents an executable binary Provides access to the executable binary file structure.
Definition: executable.hpp:25