2015-06-10 150 views
1

我現在有2個功能重載:C++ va_list的函數重載

void log(const char* format, ...); 
void log(const string& message); 

,我想,在這個呼叫的情況下:log("hello");字符串版本將被調用,或者換句話說,第一個重載只應調用在2個參數或更多的情況下。

我想過這樣做:

template<typename T> 
void log(const char* format, T first, ...); 

但在這種情況下,我將在代碼中使用va_list正確的麻煩。

是否還有其他解決方案可能會丟失?

編輯: 我想過從函數內部檢查va_list的大小,並在重定向的情況下爲0,但據我瞭解,這是不可能得到的va_list大小。

+0

你能使用C++ 11? – WaeCo

+0

@WaeCo是的我可以 – Vladp

回答

3
  1. 力型結構:log(std::string{"hello})。但這不是你想要的。
  2. 在這兩個函數中,調用另一個函數。

    void log(const string& s) 
    { 
         log(s.c_str());  
    } 
    

    但它不是非常有效的,因爲你有一個無用的string對象,儘管編譯器可能能夠內聯調用。

  3. 使用可變參數模板和SFINAE:

    void log(const string&); 
    auto log(const char *ptr, Args&& ... args) -> 
        typename std::enable_if<sizeof...(Args) != 0, void>::type 
    

    第二個重載將成爲該組候選函數只有在有是尾隨參數可用。 Showcase。在C++ 14,可以使用的std::enable_if短手版,std::enable_if_t,這使得語法更清晰:

    auto log(const char *ptr, Args&& ... args) -> std::enable_if_t<sizeof...(Args) != 0, void> 
    

    您仍然可以通過使用

    template <bool B, typename T> 
    using enable_if_t = typename std::enable_if<B, T>::type; 
    
  4. 簡化它在C++ 11

如果你調用它接受一個va_list(如printf),你仍然能夠擴大參數包的函數:

std::printf(ptr, args...); 

但反之亦然。

+0

對不起,格式不對,我無法讓其他人工作。如果你能解決,謝謝! – edmz

+0

看起來像我需要的東西,我會檢查它是否適用於我,並很快接受。 – Vladp

+0

downvoting的原因? – edmz

0

你可能會忽略「的printf」功能的風格,並使用一個流處理器(採取可變數量的參數(可變參數模板)):

// Header 
// ============================================================================ 

#include <iostream> 
#include <sstream> 
#include <tuple> 

// Format 
// ============================================================================ 

namespace Detail { 

    template<unsigned I, unsigned N> 
    struct Format; 

    template<unsigned N> 
    struct Format<N, N> { 
     template<typename... Args> 
     static void write(std::ostream&, const std::tuple<Args...>&, std::size_t offset) 
     {} 
    }; 

    template<unsigned I, unsigned N> 
    struct Format { 
     template<typename... Args> 
     static void write(
      std::ostream& stream, 
      const std::tuple<Args...>& values, 
      std::size_t offset) 
     { 
      if(offset == 0) stream << std::get<I>(values); 
      else Format<I+1, N>::write(stream, values, offset - 1); 
     } 
    }; 

    class FormatParser 
    { 
     public: 
     const char* fmt; 
     const std::size_t size; 

     FormatParser(const char* fmt, std::size_t size) 
     : fmt(fmt), size(size) 
     {} 

     virtual ~FormatParser() {} 

     void write(std::ostream& stream) const; 

     protected: 
     virtual void write_value(std::ostream&, std::size_t index) const = 0; 
    }; 

} // namespace Detail 

template<typename... Args> 
class Format : public Detail::FormatParser 
{ 
    public: 
    typedef std::tuple<const Args&...> Tuple; 
    static constexpr std::size_t Size = std::tuple_size<Tuple>::value; 

    const std::tuple<const Args&...> values; 

    Format(const char* fmt, const Args&... values) 
    : Detail::FormatParser(fmt, Size), values(values...) 
    {} 

    protected: 
    void write_value(std::ostream& stream, std::size_t index) const { 
     Detail::Format<0, Size>::write(stream, values, index); 
    } 
}; 

template <typename... Args> 
inline Format<Args...> format(const char* fmt, const Args&... values) { 
    return Format<Args...>(fmt, values...); 
} 

template <typename... Args> 
inline std::ostream& operator << (std::ostream& stream, const Format<Args...>& format) { 
    format.write(stream); 
    return stream; 
} 

template <typename... Args> 
inline std::string format_string(const char* fmt, const Args&... values) { 
    std::ostringstream result; 
    result << format(fmt, values...); 
    return result.str(); 
} 

// Source 
// ============================================================================ 

#include <cctype> 
#include <cstdlib> 
#include <stdexcept> 

namespace Detail { 

    void FormatParser::write(std::ostream& stream) const { 
     const char* s = fmt; 
     while(*s) { 
      switch(*s) { 
       case '{': 
       if(*(++s) != '{') { 
        char* end; 
        unsigned long index = std::strtoul(s, &end, 10); 
        while(*end != '}') { 
         if(! std::isspace(*end)) { 
          s = end; 
          if(! *s) s = "End"; 
          throw std::runtime_error(std::string(
           "Invalid Format String `") + fmt + "` at " + s); 
         } 
         ++end; 
        } 
        s = end + 1; 
        if(index < size) write_value(stream, index); 
        else throw std::runtime_error(std::string(
         "Invalid Format Index `") + std::to_string(index) 
         + "` in `" + fmt + '`'); 
        continue; 
       } 
       break; 

       case '}': 
       if(*(++s) != '}') { 
        if(! *s) s = "End"; 
        throw std::runtime_error(
         std::string("Invalid Format String `") + fmt + "`" 
         "Missing `}` at " + s); 
       } 
       break; 
      } 
      stream.put(*s++); 
     } 
    } 
} // namespace Detail 


// Usage 
// ============================================================================ 

int main() { 
    // a = 1; b = 2; 1 + 2 = 3 
    std::cout << format("a = {0}; b = {1}; {0} + {1} = {2}", 1, 2, 3) << "\n"; 
} 

另外:看一看boost::format