diff --git a/Makefile.am b/Makefile.am index b7bb728196..5996b3ee93 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = externals src scripts corepkgs doc +SUBDIRS = externals boost src scripts corepkgs doc -EXTRA_DIST = boost/*.hpp boost/format/*.hpp substitute.mk \ No newline at end of file +EXTRA_DIST = substitute.mk diff --git a/boost/Makefile.am b/boost/Makefile.am new file mode 100644 index 0000000000..fad59a1b95 --- /dev/null +++ b/boost/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = format diff --git a/boost/format.hpp b/boost/format.hpp index f5bdada050..a287048ed3 100644 --- a/boost/format.hpp +++ b/boost/format.hpp @@ -25,6 +25,9 @@ #include #include +//#define BOOST_NO_STD_LOCALE +//#define BOOST_NO_LOCALE_ISIDIGIT +//#include #include @@ -54,15 +57,15 @@ namespace boost #include // **** Implementation ------------------------------------------- -#include // member functions +//#include // member functions #include // class for grouping arguments #include // argument-feeding functions -#include // format-string parsing (member-)functions +//#include // format-string parsing (member-)functions // **** Implementation of the free functions ---------------------- -#include +//#include #endif // BOOST_FORMAT_HPP diff --git a/boost/format/Makefile.am b/boost/format/Makefile.am new file mode 100644 index 0000000000..43a44a216b --- /dev/null +++ b/boost/format/Makefile.am @@ -0,0 +1,3 @@ +noinst_LIBRARIES = libformat.a + +libformat_a_SOURCES = format_implementation.cc free_funcs.cc parsing.cc diff --git a/boost/format/feed_args.hpp b/boost/format/feed_args.hpp index 2e678ca3b4..ba107dce66 100644 --- a/boost/format/feed_args.hpp +++ b/boost/format/feed_args.hpp @@ -31,17 +31,16 @@ namespace io { namespace detail { namespace { - template inline - void empty_buf(BOOST_IO_STD basic_ostringstream & os) { - static const std::basic_string emptyStr; + inline + void empty_buf(BOOST_IO_STD ostringstream & os) { + static const std::string emptyStr; os.str(emptyStr); } - template - void do_pad( std::basic_string & s, + void do_pad( std::string & s, std::streamsize w, - const Ch c, - std::ios_base::fmtflags f, + const char c, + std::ios::fmtflags f, bool center) // applies centered / left / right padding to the string s. // Effects : string s is padded. @@ -59,7 +58,7 @@ namespace { } else { - if(f & std::ios_base::left) { + if(f & std::ios::left) { s.append(n, c); } else { @@ -69,32 +68,32 @@ namespace { } // -do_pad(..) - template< class Ch, class Tr, class T> inline - void put_head(BOOST_IO_STD basic_ostream& , const T& ) { + template inline + void put_head(BOOST_IO_STD ostream& , const T& ) { } - template< class Ch, class Tr, class T> inline - void put_head( BOOST_IO_STD basic_ostream& os, const group1& x ) { + template inline + void put_head( BOOST_IO_STD ostream& os, const group1& x ) { os << group_head(x.a1_); // send the first N-1 items, not the last } - template< class Ch, class Tr, class T> inline - void put_last( BOOST_IO_STD basic_ostream& os, const T& x ) { + template inline + void put_last( BOOST_IO_STD ostream& os, const T& x ) { os << x ; } - template< class Ch, class Tr, class T> inline - void put_last( BOOST_IO_STD basic_ostream& os, const group1& x ) { + template inline + void put_last( BOOST_IO_STD ostream& os, const group1& x ) { os << group_last(x.a1_); // this selects the last element } #ifndef BOOST_NO_OVERLOAD_FOR_NON_CONST - template< class Ch, class Tr, class T> inline - void put_head( BOOST_IO_STD basic_ostream& , T& ) { + template inline + void put_head( BOOST_IO_STD ostream& , T& ) { } - template< class Ch, class Tr, class T> inline - void put_last( BOOST_IO_STD basic_ostream& os, T& x ) { + template inline + void put_last( BOOST_IO_STD ostream& os, T& x ) { os << x ; } #endif @@ -102,19 +101,19 @@ namespace { -template< class Ch, class Tr, class T> +template void put( T x, - const format_item& specs, - std::basic_string & res, - BOOST_IO_STD basic_ostringstream& oss_ ) + const format_item& specs, + std::string & res, + BOOST_IO_STD ostringstream& oss_ ) { // does the actual conversion of x, with given params, into a string // using the *supplied* strinstream. (the stream state is important) - typedef std::basic_string string_t; - typedef format_item format_item_t; + typedef std::string string_t; + typedef format_item format_item_t; - stream_format_state prev_state(oss_); + stream_format_state prev_state(oss_); specs.state_.apply_on(oss_); @@ -124,8 +123,8 @@ void put( T x, empty_buf( oss_); const std::streamsize w=oss_.width(); - const std::ios_base::fmtflags fl=oss_.flags(); - const bool internal = (fl & std::ios_base::internal) != 0; + const std::ios::fmtflags fl=oss_.flags(); + const bool internal = (fl & std::ios::internal) != 0; const bool two_stepped_padding = internal && ! ( specs.pad_scheme_ & format_item_t::spacepad ) && specs.truncate_ < 0 ; @@ -203,8 +202,8 @@ void put( T x, -template< class Ch, class Tr, class T> -void distribute(basic_format& self, T x) +template +void distribute(basic_format& self, T x) // call put(x, ..) on every occurence of the current argument : { if(self.cur_arg_ >= self.num_args_) @@ -217,16 +216,16 @@ void distribute(basic_format& self, T x) { if(self.items_[i].argN_ == self.cur_arg_) { - put (x, self.items_[i], self.items_[i].res_, self.oss_ ); + put (x, self.items_[i], self.items_[i].res_, self.oss_ ); } } } -template -basic_format& feed(basic_format& self, T x) +template +basic_format& feed(basic_format& self, T x) { if(self.dumped_) self.clear(); - distribute (self, x); + distribute (self, x); ++self.cur_arg_; if(self.bound_.size() != 0) { diff --git a/boost/format/format_class.hpp b/boost/format/format_class.hpp index 9126bfad36..6875623acb 100644 --- a/boost/format/format_class.hpp +++ b/boost/format/format_class.hpp @@ -30,26 +30,21 @@ namespace boost { -template class basic_format { public: - typedef Ch CharT; // those 2 are necessary for borland compatibilty, - typedef Tr Traits; // in the body of the operator% template. - - - typedef std::basic_string string_t; - typedef BOOST_IO_STD basic_ostringstream internal_stream_t; + typedef std::string string_t; + typedef BOOST_IO_STD ostringstream internal_stream_t; private: - typedef BOOST_IO_STD basic_ostream stream_t; - typedef io::detail::stream_format_state stream_format_state; - typedef io::detail::format_item format_item_t; + typedef BOOST_IO_STD ostream stream_t; + typedef io::detail::stream_format_state stream_format_state; + typedef io::detail::format_item format_item_t; public: - basic_format(const Ch* str); + basic_format(const char* str); basic_format(const string_t& s); #ifndef BOOST_NO_STD_LOCALE - basic_format(const Ch* str, const std::locale & loc); + basic_format(const char* str, const std::locale & loc); basic_format(const string_t& s, const std::locale & loc); #endif // no locale basic_format(const basic_format& x); @@ -60,13 +55,13 @@ public: // pass arguments through those operators : template basic_format& operator%(const T& x) { - return io::detail::feed(*this,x); + return io::detail::feed(*this,x); } #ifndef BOOST_NO_OVERLOAD_FOR_NON_CONST template basic_format& operator%(T& x) { - return io::detail::feed(*this,x); + return io::detail::feed(*this,x); } #endif @@ -93,21 +88,21 @@ public: // final output string_t str() const; - friend BOOST_IO_STD basic_ostream& - operator<< ( BOOST_IO_STD basic_ostream& , const basic_format& ); + friend BOOST_IO_STD ostream& + operator<< ( BOOST_IO_STD ostream& , const basic_format& ); - template friend basic_format& - io::detail::feed(basic_format&, T); + template friend basic_format& + io::detail::feed(basic_format&, T); - template friend - void io::detail::distribute(basic_format&, T); + template friend + void io::detail::distribute(basic_format&, T); - template friend - basic_format& io::detail::modify_item_body(basic_format&, int, const T&); + template friend + basic_format& io::detail::modify_item_body(basic_format&, int, const T&); - template friend - basic_format& io::detail::bind_arg_body(basic_format&, int, const T&); + template friend + basic_format& io::detail::bind_arg_body(basic_format&, int, const T&); // make the members private only if the friend templates are supported private: diff --git a/boost/format/format_fwd.hpp b/boost/format/format_fwd.hpp index bad2f72385..97c55f6684 100644 --- a/boost/format/format_fwd.hpp +++ b/boost/format/format_fwd.hpp @@ -24,13 +24,9 @@ namespace boost { -template > class basic_format; +class basic_format; -typedef basic_format format; - -#if !defined(BOOST_NO_STD_WSTRING) && !defined(BOOST_NO_STD_WSTREAMBUF) -typedef basic_format wformat; -#endif +typedef basic_format format; namespace io { enum format_error_bits { bad_format_string_bit = 1, @@ -39,15 +35,13 @@ enum format_error_bits { bad_format_string_bit = 1, all_error_bits = 255, no_error_bits=0 }; // Convertion: format to string -template -std::basic_string str(const basic_format& ) ; +std::string str(const basic_format& ) ; } // namespace io -template< class Ch, class Tr> -BOOST_IO_STD basic_ostream& -operator<<( BOOST_IO_STD basic_ostream&, const basic_format&); +BOOST_IO_STD ostream& +operator<<( BOOST_IO_STD ostream&, const basic_format&); } // namespace boost diff --git a/boost/format/format_implementation.hpp b/boost/format/format_implementation.cc similarity index 83% rename from boost/format/format_implementation.hpp rename to boost/format/format_implementation.cc index 58372bb13b..41cb5fc9fa 100644 --- a/boost/format/format_implementation.hpp +++ b/boost/format/format_implementation.cc @@ -22,13 +22,12 @@ //#include //#include -#include +#include namespace boost { // -------- format:: ------------------------------------------- -template< class Ch, class Tr> -basic_format ::basic_format(const Ch* str) +basic_format::basic_format(const char* str) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), items_(), oss_(), exceptions_(io::all_error_bits) { @@ -39,8 +38,7 @@ basic_format ::basic_format(const Ch* str) } #ifndef BOOST_NO_STD_LOCALE -template< class Ch, class Tr> -basic_format ::basic_format(const Ch* str, const std::locale & loc) +basic_format::basic_format(const char* str, const std::locale & loc) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), items_(), oss_(), exceptions_(io::all_error_bits) { @@ -51,8 +49,7 @@ basic_format ::basic_format(const Ch* str, const std::locale & loc) parse( str ); } -template< class Ch, class Tr> -basic_format ::basic_format(const string_t& s, const std::locale & loc) +basic_format::basic_format(const string_t& s, const std::locale & loc) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), items_(), oss_(), exceptions_(io::all_error_bits) { @@ -62,8 +59,7 @@ basic_format ::basic_format(const string_t& s, const std::locale & loc) } #endif //BOOST_NO_STD_LOCALE -template< class Ch, class Tr> -basic_format ::basic_format(const string_t& s) +basic_format::basic_format(const string_t& s) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), items_(), oss_(), exceptions_(io::all_error_bits) { @@ -71,8 +67,7 @@ basic_format ::basic_format(const string_t& s) parse(s); } -template< class Ch, class Tr> -basic_format :: basic_format(const basic_format& x) +basic_format:: basic_format(const basic_format& x) : style_(x.style_), cur_arg_(x.cur_arg_), num_args_(x.num_args_), dumped_(false), items_(x.items_), prefix_(x.prefix_), bound_(x.bound_), oss_(), // <- we obviously can't copy x.oss_ @@ -81,8 +76,7 @@ basic_format :: basic_format(const basic_format& x) state0_.apply_on(oss_); } -template< class Ch, class Tr> -basic_format& basic_format ::operator= (const basic_format& x) +basic_format& basic_format::operator= (const basic_format& x) { if(this == &x) return *this; @@ -102,14 +96,12 @@ basic_format& basic_format ::operator= (const basic_format& x) } -template< class Ch, class Tr> -unsigned char basic_format ::exceptions() const +unsigned char basic_format::exceptions() const { return exceptions_; } -template< class Ch, class Tr> -unsigned char basic_format ::exceptions(unsigned char newexcept) +unsigned char basic_format::exceptions(unsigned char newexcept) { unsigned char swp = exceptions_; exceptions_ = newexcept; @@ -117,8 +109,7 @@ unsigned char basic_format ::exceptions(unsigned char newexcept) } -template< class Ch, class Tr> -basic_format& basic_format ::clear() +basic_format& basic_format ::clear() // empty the string buffers (except bound arguments, see clear_binds() ) // and make the format object ready for formatting a new set of arguments { @@ -138,8 +129,7 @@ basic_format& basic_format ::clear() return *this; } -template< class Ch, class Tr> -basic_format& basic_format ::clear_binds() +basic_format& basic_format ::clear_binds() // cancel all bindings, and clear() { bound_.resize(0); @@ -147,8 +137,7 @@ basic_format& basic_format ::clear_binds() return *this; } -template< class Ch, class Tr> -basic_format& basic_format ::clear_bind(int argN) +basic_format& basic_format::clear_bind(int argN) // cancel the binding of ONE argument, and clear() { if(argN<1 || argN > num_args_ || bound_.size()==0 || !bound_[argN-1] ) @@ -164,8 +153,7 @@ basic_format& basic_format ::clear_bind(int argN) -template< class Ch, class Tr> -std::basic_string basic_format ::str() const +std::string basic_format::str() const { dumped_=true; if(items_.size()==0) @@ -201,8 +189,8 @@ std::basic_string basic_format ::str() const namespace io { namespace detail { -template -basic_format& bind_arg_body( basic_format& self, +template +basic_format& bind_arg_body( basic_format& self, int argN, const T& val) // bind one argument to a fixed value @@ -239,8 +227,8 @@ basic_format& bind_arg_body( basic_format& self, return self; } -template -basic_format& modify_item_body( basic_format& self, +template +basic_format& modify_item_body( basic_format& self, int itemN, const T& manipulator) // applies a manipulator to the format_item describing a given directive. diff --git a/boost/format/free_funcs.hpp b/boost/format/free_funcs.cc similarity index 81% rename from boost/format/free_funcs.hpp rename to boost/format/free_funcs.cc index d552e8baa2..b2ac01774b 100644 --- a/boost/format/free_funcs.hpp +++ b/boost/format/free_funcs.cc @@ -19,27 +19,26 @@ #ifndef BOOST_FORMAT_FUNCS_HPP #define BOOST_FORMAT_FUNCS_HPP -#include "boost/format/format_class.hpp" +#include "boost/format.hpp" //#include "boost/throw_exception.hpp" namespace boost { namespace io { - template inline - std::basic_string str(const basic_format& f) + inline + std::string str(const basic_format& f) // adds up all pieces of strings and converted items, and return the formatted string { return f.str(); } } // - namespace io -template< class Ch, class Tr> -BOOST_IO_STD basic_ostream& -operator<<( BOOST_IO_STD basic_ostream& os, - const boost::basic_format& f) +BOOST_IO_STD ostream& +operator<<( BOOST_IO_STD ostream& os, + const boost::basic_format& f) // effect: "return os << str(f);" but we can try to do it faster { - typedef boost::basic_format format_t; + typedef boost::basic_format format_t; if(f.items_.size()==0) os << f.prefix_; else { @@ -53,7 +52,7 @@ operator<<( BOOST_IO_STD basic_ostream& os, os << f.prefix_; for(unsigned long i=0; i inline -BOOST_IO_STD basic_ostream& -operator << ( BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << ( BOOST_IO_STD ostream& os, const group0& ) { return os; @@ -63,8 +63,8 @@ struct group1 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group1& x) { os << x.a1_; @@ -86,8 +86,8 @@ struct group2 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group2& x) { os << x.a1_<< x.a2_; @@ -107,8 +107,8 @@ struct group3 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group3& x) { os << x.a1_<< x.a2_<< x.a3_; @@ -129,8 +129,8 @@ struct group4 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group4& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_; @@ -152,8 +152,8 @@ struct group5 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group5& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_<< x.a5_; @@ -176,8 +176,8 @@ struct group6 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group6& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_<< x.a5_<< x.a6_; @@ -201,8 +201,8 @@ struct group7 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group7& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_<< x.a5_<< x.a6_<< x.a7_; @@ -227,8 +227,8 @@ struct group8 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group8& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_<< x.a5_<< x.a6_<< x.a7_<< x.a8_; @@ -254,8 +254,8 @@ struct group9 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group9& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_<< x.a5_<< x.a6_<< x.a7_<< x.a8_<< x.a9_; @@ -282,8 +282,8 @@ struct group10 template inline -BOOST_IO_STD basic_ostream& -operator << (BOOST_IO_STD basic_ostream& os, +BOOST_IO_STD ostream& +operator << (BOOST_IO_STD ostream& os, const group10& x) { os << x.a1_<< x.a2_<< x.a3_<< x.a4_<< x.a5_<< x.a6_<< x.a7_<< x.a8_<< x.a9_<< x.a10_; diff --git a/boost/format/internals.hpp b/boost/format/internals.hpp index 52448b731c..d25eb4c864 100644 --- a/boost/format/internals.hpp +++ b/boost/format/internals.hpp @@ -33,22 +33,21 @@ namespace detail { // -------------- // set of params that define the format state of a stream -template struct stream_format_state { - typedef BOOST_IO_STD basic_ios basic_ios; + typedef std::ios basic_ios; std::streamsize width_; std::streamsize precision_; - Ch fill_; - std::ios_base::fmtflags flags_; + char fill_; + std::ios::fmtflags flags_; - stream_format_state() : width_(-1), precision_(-1), fill_(0), flags_(std::ios_base::dec) {} + stream_format_state() : width_(-1), precision_(-1), fill_(0), flags_(std::ios::dec) {} stream_format_state(basic_ios& os) {set_by_stream(os); } void apply_on(basic_ios & os) const; //- applies format_state to the stream template void apply_manip(T manipulator) //- modifies state by applying manipulator. - { apply_manip_body( *this, manipulator) ; } + { apply_manip_body( *this, manipulator) ; } void reset(); //- sets to default state. void set_by_stream(const basic_ios& os); //- sets to os's state. }; @@ -58,7 +57,6 @@ struct stream_format_state // -------------- // format_item : stores all parameters that can be defined by directives in the format-string -template struct format_item { enum pad_values { zeropad = 1, spacepad =2, centered=4, tabulation = 8 }; @@ -67,10 +65,10 @@ struct format_item argN_tabulation = -2, // tabulation directive. (no argument read) argN_ignored = -3 // ignored directive. (no argument read) }; - typedef BOOST_IO_STD basic_ios basic_ios; - typedef detail::stream_format_state stream_format_state; - typedef std::basic_string string_t; - typedef BOOST_IO_STD basic_ostringstream internal_stream_t; + typedef BOOST_IO_STD ios basic_ios; + typedef detail::stream_format_state stream_format_state; + typedef std::string string_t; + typedef BOOST_IO_STD ostringstream internal_stream_t; int argN_; //- argument number (starts at 0, eg : %1 => argN=0) @@ -98,8 +96,8 @@ struct format_item // ----------------------------------------------------------- // --- stream_format_state:: ------------------------------------------- -template inline -void stream_format_state ::apply_on(basic_ios & os) const +inline +void stream_format_state::apply_on(basic_ios & os) const // set the state of this stream according to our params { if(width_ != -1) @@ -111,8 +109,8 @@ void stream_format_state ::apply_on(basic_ios & os) const os.flags(flags_); } -template inline -void stream_format_state ::set_by_stream(const basic_ios& os) +inline +void stream_format_state::set_by_stream(const basic_ios& os) // set our params according to the state of this stream { flags_ = os.flags(); @@ -121,42 +119,42 @@ void stream_format_state ::set_by_stream(const basic_ios& os) fill_ = os.fill(); } -template inline -void apply_manip_body( stream_format_state& self, +template inline +void apply_manip_body( stream_format_state& self, T manipulator) // modify our params according to the manipulator { - BOOST_IO_STD basic_stringstream ss; + BOOST_IO_STD stringstream ss; self.apply_on( ss ); ss << manipulator; self.set_by_stream( ss ); } -template inline -void stream_format_state ::reset() +inline +void stream_format_state::reset() // set our params to standard's default state { width_=-1; precision_=-1; fill_=0; - flags_ = std::ios_base::dec; + flags_ = std::ios::dec; } // --- format_items:: ------------------------------------------- -template inline -void format_item ::compute_states() +inline +void format_item::compute_states() // reflect pad_scheme_ on state_ and ref_state_ // because some pad_schemes has complex consequences on several state params. { if(pad_scheme_ & zeropad) { - if(ref_state_.flags_ & std::ios_base::left) + if(ref_state_.flags_ & std::ios::left) { pad_scheme_ = pad_scheme_ & (~zeropad); // ignore zeropad in left alignment } else { ref_state_.fill_='0'; - ref_state_.flags_ |= std::ios_base::internal; + ref_state_.flags_ |= std::ios::internal; } } state_ = ref_state_; diff --git a/boost/format/internals_fwd.hpp b/boost/format/internals_fwd.hpp index f260e6dec9..a8ebf7c3ab 100644 --- a/boost/format/internals_fwd.hpp +++ b/boost/format/internals_fwd.hpp @@ -26,8 +26,8 @@ namespace boost { namespace io { namespace detail { - template struct stream_format_state; - template struct format_item; + struct stream_format_state; + struct format_item; } @@ -37,24 +37,24 @@ namespace detail { // but MSVC have problems with template member functions : // defined in format_implementation.hpp : - template - basic_format& modify_item_body( basic_format& self, + template + basic_format& modify_item_body( basic_format& self, int itemN, const T& manipulator); - template - basic_format& bind_arg_body( basic_format& self, + template + basic_format& bind_arg_body( basic_format& self, int argN, const T& val); - template - void apply_manip_body( stream_format_state& self, + template + void apply_manip_body( stream_format_state& self, T manipulator); // argument feeding (defined in feed_args.hpp ) : - template - void distribute(basic_format& self, T x); + template + void distribute(basic_format& self, T x); - template - basic_format& feed(basic_format& self, T x); + template + basic_format& feed(basic_format& self, T x); } // namespace detail diff --git a/boost/format/parsing.hpp b/boost/format/parsing.cc similarity index 79% rename from boost/format/parsing.hpp rename to boost/format/parsing.cc index a461314f98..1e12dea9bf 100644 --- a/boost/format/parsing.hpp +++ b/boost/format/parsing.cc @@ -22,7 +22,7 @@ #define BOOST_FORMAT_PARSING_HPP -#include +#include //#include //#include @@ -31,8 +31,8 @@ namespace boost { namespace io { namespace detail { - template inline - bool wrap_isdigit(Ch c, Stream &os) + template inline + bool wrap_isdigit(char c, Stream &os) { #ifndef BOOST_NO_LOCALE_ISIDIGIT return std::isdigit(c, os.rdbuf()->getloc() ); @@ -42,10 +42,10 @@ namespace detail { #endif } //end- wrap_isdigit(..) - template inline - Res str2int(const std::basic_string& s, - typename std::basic_string::size_type start, - BOOST_IO_STD basic_ios &os, + template inline + Res str2int(const std::string& s, + std::string::size_type start, + BOOST_IO_STD ios &os, const Res = Res(0) ) // Input : char string, with starting index // a basic_ios& merely to call its widen/narrow member function in the desired locale. @@ -54,7 +54,7 @@ namespace detail { { Res n = 0; while(start - void skip_asterisk(const std::basic_string & buf, - typename std::basic_string::size_type * pos_p, - BOOST_IO_STD basic_ios &os) + void skip_asterisk(const std::string & buf, + std::string::size_type * pos_p, + BOOST_IO_STD ios &os) // skip printf's "asterisk-fields" directives in the format-string buf // Input : char string, with starting index *pos_p // a basic_ios& merely to call its widen/narrow member function in the desired locale. @@ -76,10 +75,10 @@ namespace detail { using namespace std; BOOST_ASSERT( pos_p != 0); if(*pos_p >= buf.size() ) return; - if(buf[ *pos_p]==os.widen('*')) { + if(buf[ *pos_p]=='*') { ++ (*pos_p); while (*pos_p < buf.size() && wrap_isdigit(buf[*pos_p],os)) ++(*pos_p); - if(buf[*pos_p]==os.widen('$')) ++(*pos_p); + if(buf[*pos_p]=='$') ++(*pos_p); } } @@ -95,11 +94,10 @@ namespace detail { - template - bool parse_printf_directive(const std::basic_string & buf, - typename std::basic_string::size_type * pos_p, - detail::format_item * fpar, - BOOST_IO_STD basic_ios &os, + bool parse_printf_directive(const std::string & buf, + std::string::size_type * pos_p, + detail::format_item * fpar, + BOOST_IO_STD ios &os, unsigned char exceptions) // Input : a 'printf-directive' in the format-string, starting at buf[ *pos_p ] // a basic_ios& merely to call its widen/narrow member function in the desired locale. @@ -109,14 +107,14 @@ namespace detail { // Effects : - *pos_p is incremented so that buf[*pos_p] is the first char after the directive // - *fpar is set with the parameters read in the directive { - typedef format_item format_item_t; + typedef format_item format_item_t; BOOST_ASSERT( pos_p != 0); - typename std::basic_string::size_type &i1 = *pos_p, + std::string::size_type &i1 = *pos_p, i0; fpar->argN_ = format_item_t::argN_no_posit; // if no positional-directive bool in_brackets=false; - if(buf[i1]==os.widen('|')) + if(buf[i1]=='|') { in_brackets=true; if( ++i1 >= buf.size() ) { @@ -126,7 +124,7 @@ namespace detail { } // the flag '0' would be picked as a digit for argument order, but here it's a flag : - if(buf[i1]==os.widen('0')) + if(buf[i1]=='0') goto parse_flags; // handle argument order (%2$d) or possibly width specification: %2d @@ -142,7 +140,7 @@ namespace detail { int n=str2int(buf,i0, os, int(0) ); // %N% case : this is already the end of the directive - if( buf[i1] == os.widen('%') ) + if( buf[i1] == '%' ) { fpar->argN_ = n-1; ++i1; @@ -152,7 +150,7 @@ namespace detail { else return true; } - if ( buf[i1]==os.widen('$') ) + if ( buf[i1]=='$' ) { fpar->argN_ = n-1; ++i1; @@ -171,14 +169,14 @@ namespace detail { while ( i1 ref_state_.flags_ |= std::ios_base::left; + fpar->ref_state_.flags_ |= std::ios::left; break; case '=': fpar->pad_scheme_ |= format_item_t::centered; @@ -187,7 +185,7 @@ namespace detail { fpar->pad_scheme_ |= format_item_t::spacepad; break; case '+': - fpar->ref_state_.flags_ |= std::ios_base::showpos; + fpar->ref_state_.flags_ |= std::ios::showpos; break; case '0': fpar->pad_scheme_ |= format_item_t::zeropad; @@ -195,7 +193,7 @@ namespace detail { // so just add 'zeropad' flag for now, it will be processed later. break; case '#': - fpar->ref_state_.flags_ |= std::ios_base::showpoint | std::ios_base::showbase; + fpar->ref_state_.flags_ |= std::ios::showpoint | std::ios::showbase; break; default: goto parse_width; @@ -223,7 +221,7 @@ namespace detail { return true; } // handle precision spec - if (buf[i1]==os.widen('.')) + if (buf[i1]=='.') { ++i1; skip_asterisk(buf, &i1, os); @@ -239,51 +237,51 @@ namespace detail { // handle formatting-type flags : while( i1=buf.size()) { maybe_throw_exception(exceptions); return true; } - if( in_brackets && buf[i1]==os.widen('|') ) + if( in_brackets && buf[i1]=='|' ) { ++i1; return true; } - switch (os.narrow(buf[i1], 0) ) + switch (buf[i1]) { case 'X': - fpar->ref_state_.flags_ |= std::ios_base::uppercase; + fpar->ref_state_.flags_ |= std::ios::uppercase; case 'p': // pointer => set hex. case 'x': - fpar->ref_state_.flags_ &= ~std::ios_base::basefield; - fpar->ref_state_.flags_ |= std::ios_base::hex; + fpar->ref_state_.flags_ &= ~std::ios::basefield; + fpar->ref_state_.flags_ |= std::ios::hex; break; case 'o': - fpar->ref_state_.flags_ &= ~std::ios_base::basefield; - fpar->ref_state_.flags_ |= std::ios_base::oct; + fpar->ref_state_.flags_ &= ~std::ios::basefield; + fpar->ref_state_.flags_ |= std::ios::oct; break; case 'E': - fpar->ref_state_.flags_ |= std::ios_base::uppercase; + fpar->ref_state_.flags_ |= std::ios::uppercase; case 'e': - fpar->ref_state_.flags_ &= ~std::ios_base::floatfield; - fpar->ref_state_.flags_ |= std::ios_base::scientific; + fpar->ref_state_.flags_ &= ~std::ios::floatfield; + fpar->ref_state_.flags_ |= std::ios::scientific; - fpar->ref_state_.flags_ &= ~std::ios_base::basefield; - fpar->ref_state_.flags_ |= std::ios_base::dec; + fpar->ref_state_.flags_ &= ~std::ios::basefield; + fpar->ref_state_.flags_ |= std::ios::dec; break; case 'f': - fpar->ref_state_.flags_ &= ~std::ios_base::floatfield; - fpar->ref_state_.flags_ |= std::ios_base::fixed; + fpar->ref_state_.flags_ &= ~std::ios::floatfield; + fpar->ref_state_.flags_ |= std::ios::fixed; case 'u': case 'd': case 'i': - fpar->ref_state_.flags_ &= ~std::ios_base::basefield; - fpar->ref_state_.flags_ |= std::ios_base::dec; + fpar->ref_state_.flags_ &= ~std::ios::basefield; + fpar->ref_state_.flags_ |= std::ios::dec; break; case 'T': @@ -296,20 +294,20 @@ namespace detail { fpar->argN_ = format_item_t::argN_tabulation; break; case 't': - fpar->ref_state_.fill_ = os.widen(' '); + fpar->ref_state_.fill_ = ' '; fpar->pad_scheme_ |= format_item_t::tabulation; fpar->argN_ = format_item_t::argN_tabulation; break; case 'G': - fpar->ref_state_.flags_ |= std::ios_base::uppercase; + fpar->ref_state_.flags_ |= std::ios::uppercase; break; case 'g': // 'g' conversion is default for floats. - fpar->ref_state_.flags_ &= ~std::ios_base::basefield; - fpar->ref_state_.flags_ |= std::ios_base::dec; + fpar->ref_state_.flags_ &= ~std::ios::basefield; + fpar->ref_state_.flags_ |= std::ios::dec; // CLEAR all floatield flags, so stream will CHOOSE - fpar->ref_state_.flags_ &= ~std::ios_base::floatfield; + fpar->ref_state_.flags_ &= ~std::ios::floatfield; break; case 'C': @@ -331,7 +329,7 @@ namespace detail { if( in_brackets ) { - if( i1 -void basic_format ::parse(const string_t & buf) +void basic_format::parse(const string_t & buf) // parse the format-string { using namespace std; - const Ch arg_mark = oss_.widen('%'); + const char arg_mark = '%'; bool ordered_args=true; int max_argN=-1; - typename string_t::size_type i1=0; + string_t::size_type i1=0; int num_items=0; // A: find upper_bound on num_items and allocates arrays @@ -382,7 +379,7 @@ void basic_format ::parse(const string_t & buf) // B: Now the real parsing of the format string : num_items=0; i1 = 0; - typename string_t::size_type i0 = i1; + string_t::size_type i0 = i1; bool special_things=false; int cur_it=0; while( (i1=buf.find(arg_mark,i1)) != string::npos ) diff --git a/configure.ac b/configure.ac index 3ad8ed7ff7..2f7d8333f5 100644 --- a/configure.ac +++ b/configure.ac @@ -16,8 +16,12 @@ AC_PATH_PROG(wget, wget) AC_CHECK_LIB(pthread, pthread_mutex_init) AM_CONFIG_HEADER([config.h]) -AC_CONFIG_FILES([Makefile externals/Makefile src/Makefile scripts/Makefile - corepkgs/Makefile corepkgs/fetchurl/Makefile - corepkgs/nar/Makefile - doc/Makefile doc/manual/Makefile]) +AC_CONFIG_FILES([Makefile + externals/Makefile + boost/Makefile boost/format/Makefile + src/Makefile + scripts/Makefile + corepkgs/Makefile corepkgs/fetchurl/Makefile corepkgs/nar/Makefile + doc/Makefile doc/manual/Makefile + ]) AC_OUTPUT diff --git a/src/Makefile.am b/src/Makefile.am index cddcae1c66..a422fb8cff 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,22 +1,24 @@ bin_PROGRAMS = nix nix-hash fix check_PROGRAMS = test + AM_CXXFLAGS = -DSYSTEM=\"@host@\" -Wall -I.. -I../externals/inst/include $(CXXFLAGS) -AM_LDFLAGS = -L../externals/inst/lib -ldb_cxx -lATerm $(LDFLAGS) +LDADD = -L../externals/inst/lib -ldb_cxx -lATerm -L../boost/format -lformat nix_SOURCES = nix.cc dotgraph.cc -nix_LDADD = libshared.a libnix.a -ldb_cxx -lATerm +nix_LDADD = libshared.a libnix.a $(LDADD) nix_hash_SOURCES = nix-hash.cc -nix_hash_LDADD = libshared.a libnix.a -ldb_cxx -lATerm +nix_hash_LDADD = libshared.a libnix.a $(LDADD) fix_SOURCES = fix.cc -fix_LDADD = libshared.a libnix.a -ldb_cxx -lATerm +fix_LDADD = libshared.a libnix.a $(LDADD) TESTS = test test_SOURCES = test.cc -test_LDADD = libshared.a libnix.a -ldb_cxx -lATerm +test_LDADD = libshared.a libnix.a $(LDADD) + noinst_LIBRARIES = libnix.a libshared.a