////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2007-2009. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/interprocess for documentation. // ////////////////////////////////////////////////////////////////////////////// #ifndef BOOST_INTERPROCESS_DETAIL_TMP_DIR_HELPERS_HPP #define BOOST_INTERPROCESS_DETAIL_TMP_DIR_HELPERS_HPP #include #include #include #include #include #include #if defined(BOOST_INTERPROCESS_WINDOWS) #define BOOST_INTERPROCESS_HAS_WINDOWS_KERNEL_BOOTTIME #define BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME #include #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__) #include #if defined(CTL_KERN) && defined (KERN_BOOTTIME) #define BOOST_INTERPROCESS_HAS_BSD_KERNEL_BOOTTIME #define BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME #endif #endif namespace boost { namespace interprocess { namespace detail { #if defined (BOOST_INTERPROCESS_HAS_WINDOWS_KERNEL_BOOTTIME) inline void get_bootstamp(std::string &s, bool add = false) { char bootstamp[winapi::BootstampLength*2+1]; std::size_t bootstamp_length = winapi::BootstampLength*2; winapi::get_boot_time_str(bootstamp, bootstamp_length); bootstamp[winapi::BootstampLength*2] = 0; if(add){ s += bootstamp; } else{ s = bootstamp; } } #elif defined(BOOST_INTERPROCESS_HAS_BSD_KERNEL_BOOTTIME) inline void get_bootstamp(std::string &s, bool add = false) { // FreeBSD specific: sysctl "kern.boottime" int request[2] = { CTL_KERN, KERN_BOOTTIME }; struct ::timeval result; size_t result_len = sizeof result; if (::sysctl (request, 2, &result, &result_len, NULL, 0) < 0) return; char bootstamp_str[256]; const char Characters [] = { '0', '1', '2', '3', '4', '5', '6', '7' , '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; std::size_t char_counter = 0; long fields[2] = { result.tv_sec, result.tv_usec }; for(std::size_t field = 0; field != 2; ++field){ for(std::size_t i = 0; i != sizeof(long); ++i){ const char *ptr = (const char *)&fields[field]; bootstamp_str[char_counter++] = Characters[(ptr[i]&0xF0)>>4]; bootstamp_str[char_counter++] = Characters[(ptr[i]&0x0F)]; } } bootstamp_str[char_counter] = 0; if(add){ s += bootstamp_str; } else{ s = bootstamp_str; } } #endif inline void get_tmp_base_dir(std::string &tmp_name) { #if defined (BOOST_INTERPROCESS_WINDOWS) winapi::get_shared_documents_folder(tmp_name); if(tmp_name.empty()){ tmp_name = get_temporary_path(); } #else tmp_name = get_temporary_path(); #endif if(tmp_name.empty()){ error_info err = system_error_code(); throw interprocess_exception(err); } //Remove final null. tmp_name += "/boost_interprocess"; } inline void tmp_filename(const char *filename, std::string &tmp_name) { get_tmp_base_dir(tmp_name); //Remove final null. tmp_name += "/"; #ifdef BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME get_bootstamp(tmp_name, true); tmp_name += '/'; #endif tmp_name += filename; } inline void create_tmp_dir_and_get_filename(const char *filename, std::string &tmp_name) { //First get the temp directory get_tmp_base_dir(tmp_name); //If fails, check that it's because already exists if(!create_directory(tmp_name.c_str())){ error_info info(system_error_code()); if(info.get_error_code() != already_exists_error){ throw interprocess_exception(info); } } #ifdef BOOST_INTERPROCESS_HAS_KERNEL_BOOTTIME //Create a new subdirectory with the bootstamp std::string root_tmp_name = tmp_name; tmp_name += '/'; //Obtain bootstamp string std::string bootstamp; get_bootstamp(bootstamp); tmp_name += bootstamp; //If fails, check that it's because already exists if(!create_directory(tmp_name.c_str())){ error_info info(system_error_code()); if(info.get_error_code() != already_exists_error){ throw interprocess_exception(info); } } //Now erase all old directories created in the previous boot sessions delete_subdirectories(root_tmp_name, bootstamp.c_str()); #endif //Add filename tmp_name += '/'; tmp_name += filename; } inline void add_leading_slash(const char *name, std::string &new_name) { if(name[0] != '/'){ new_name = '/'; } new_name += name; } } //namespace boost{ } //namespace interprocess { } //namespace detail { #include #endif //ifndef BOOST_INTERPROCESS_DETAIL_TMP_DIR_HELPERS_HPP