mirror of
https://github.com/boostorg/quickbook.git
synced 2026-01-27 07:02:15 +00:00
65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2002 2004 2006 Joel de Guzman
|
|
Copyright (c) 2004 Eric Niebler
|
|
http://spirit.sourceforge.net/
|
|
|
|
Use, modification and distribution is subject to 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)
|
|
=============================================================================*/
|
|
#if !defined(BOOST_SPIRIT_QUICKBOOK_UTILS_HPP)
|
|
#define BOOST_SPIRIT_QUICKBOOK_UTILS_HPP
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <cctype>
|
|
#include <boost/ref.hpp>
|
|
|
|
namespace quickbook { namespace detail
|
|
{
|
|
char filter_identifier_char(char ch);
|
|
|
|
template <typename Iterator>
|
|
inline std::string
|
|
make_identifier(Iterator const& first, Iterator const& last)
|
|
{
|
|
std::string out_name;
|
|
for (Iterator i = first; i != last; ++i)
|
|
out_name += filter_identifier_char(*i);
|
|
return out_name;
|
|
}
|
|
|
|
// un-indent a code segment
|
|
void unindent(std::string& program);
|
|
|
|
// remove the extension from a filename
|
|
std::string remove_extension(std::string const& filename);
|
|
|
|
std::string escape_uri(std::string uri);
|
|
|
|
// Preformats an error/warning message so that it can be parsed by
|
|
// common IDEs. Uses the ms_errors global to determine if VS format
|
|
// or GCC format. Returns the stream to continue ouput of the verbose
|
|
// error message.
|
|
std::ostream & outerr(std::string const& file, int line = -1);
|
|
std::ostream & outwarn(std::string const& file, int line = -1);
|
|
|
|
// load file into memory with extra trailing newlines to eliminate
|
|
// the need to check for end of file in the grammar.
|
|
int load(std::string const& filename, std::string& storage);
|
|
|
|
// given a file extension, return the type of the source file
|
|
// we'll have an internal database for known file types.
|
|
|
|
enum file_type
|
|
{
|
|
cpp_file
|
|
, python_file
|
|
};
|
|
|
|
file_type get_file_type(std::string const& extension);
|
|
}}
|
|
|
|
#endif // BOOST_SPIRIT_QUICKBOOK_UTILS_HPP
|
|
|