123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #ifndef RAPIDJSON_CURSORSTREAMWRAPPER_H_
- #define RAPIDJSON_CURSORSTREAMWRAPPER_H_
- #include "stream.h"
- #if defined(__GNUC__)
- RAPIDJSON_DIAG_PUSH
- RAPIDJSON_DIAG_OFF(effc++)
- #endif
- #if defined(_MSC_VER) && _MSC_VER <= 1800
- RAPIDJSON_DIAG_PUSH
- RAPIDJSON_DIAG_OFF(4702)
- RAPIDJSON_DIAG_OFF(4512)
- #endif
- RAPIDJSON_NAMESPACE_BEGIN
- template <typename InputStream, typename Encoding = UTF8<> >
- class CursorStreamWrapper : public GenericStreamWrapper<InputStream, Encoding> {
- public:
- typedef typename Encoding::Ch Ch;
- CursorStreamWrapper(InputStream& is):
- GenericStreamWrapper<InputStream, Encoding>(is), line_(1), col_(0) {}
-
- Ch Take() {
- Ch ch = this->is_.Take();
- if(ch == '\n') {
- line_ ++;
- col_ = 0;
- } else {
- col_ ++;
- }
- return ch;
- }
-
- size_t GetLine() const { return line_; }
-
- size_t GetColumn() const { return col_; }
- private:
- size_t line_;
- size_t col_;
- };
- #if defined(_MSC_VER) && _MSC_VER <= 1800
- RAPIDJSON_DIAG_POP
- #endif
- #if defined(__GNUC__)
- RAPIDJSON_DIAG_POP
- #endif
- RAPIDJSON_NAMESPACE_END
- #endif
|