00001 //------------------------------------------------------------------------------ 00002 // This file is part of the OpenStructure project <www.openstructure.org> 00003 // 00004 // Copyright (C) 2008-2011 by the OpenStructure authors 00005 // 00006 // This library is free software; you can redistribute it and/or modify it under 00007 // the terms of the GNU Lesser General Public License as published by the Free 00008 // Software Foundation; either version 3.0 of the License, or (at your option) 00009 // any later version. 00010 // This library is distributed in the hope that it will be useful, but WITHOUT 00011 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00012 // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00013 // details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with this library; if not, write to the Free Software Foundation, Inc., 00017 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 //------------------------------------------------------------------------------ 00019 /* 00020 Author: Valerio Mariani 00021 */ 00022 00023 #ifndef OST_BOOST_FILESYSTEM_HELPER_HH 00024 #define OST_BOOST_FILESYSTEM_HELPER_HH 00025 00026 #include <boost/filesystem/path.hpp> 00027 00028 namespace { 00029 00030 inline 00031 String BFPathToString(const boost::filesystem::path& path) 00032 { 00033 #if BOOST_FILESYSTEM_VERSION==3 || BOOST_VERSION<103400 00034 return path.string(); 00035 #else 00036 return path.file_string(); 00037 #endif 00038 } 00039 00040 inline String BFPathStem(const boost::filesystem::path& path) { 00041 #if BOOST_FILESYSTEM_VERSION<103400 00042 String name = BFPathToString(path); 00043 size_t n = name.rfind('.'); 00044 return name.substr(0, n); 00045 #else 00046 return path.stem(); 00047 #endif 00048 } 00049 00050 } 00051 00052 00053 00054 #endif // OST_BOOST_FILESYSTEM_HELPER