Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
799fdea9
Commit
799fdea9
authored
Sep 28, 2017
by
KaitoHH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add cursor wrapper
parent
143641c7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
72 additions
and
47 deletions
+72
-47
cursorstreamwrapper.h
include/rapidjson/cursorstreamwrapper.h
+59
-0
document.h
include/rapidjson/document.h
+1
-10
error.h
include/rapidjson/error/error.h
+2
-10
stream.h
include/rapidjson/stream.h
+10
-27
No files found.
include/rapidjson/cursorstreamwrapper.h
0 → 100644
View file @
799fdea9
// Tencent is pleased to support the open source community by making RapidJSON available.
//
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// Licensed under the MIT License (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// http://opensource.org/licenses/MIT
//
// Unless required by applicable law or agreed to in writing, software distributed
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
#ifndef RAPIDJSON_CURSORSTREAMWRAPPER_H_
#define RAPIDJSON_CURSORSTREAMWRAPPER_H_
#include "stream.h"
RAPIDJSON_NAMESPACE_BEGIN
//! Cursor stream wrapper for counting line and column number if error exists.
/*!
\tparam InputStream Any stream that implements Stream Concept
*/
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
)
{}
// counting line and column number
Ch
Take
()
{
Ch
ch
=
this
->
is_
.
Take
();
if
(
ch
==
'\n'
)
{
line_
++
;
col_
=
0
;
}
else
{
col_
++
;
}
return
ch
;
}
//! Get the error line number, if error exists.
size_t
GetLine
()
const
{
return
line_
;
}
//! Get the error column number, if error exists.
size_t
GetColumn
()
const
{
return
col_
;
}
private
:
size_t
line_
;
//!< Current Line
size_t
col_
;
//!< Current Column
};
RAPIDJSON_NAMESPACE_END
#endif // RAPIDJSON_CURSORSTREAMWRAPPER_H_
include/rapidjson/document.h
View file @
799fdea9
...
...
@@ -2219,17 +2219,14 @@ public:
\return The document itself for fluent API.
*/
template
<
unsigned
parseFlags
,
typename
SourceEncoding
,
typename
InputStream
>
GenericDocument
&
ParseStream
(
InputStream
&
is
_
)
{
GenericDocument
&
ParseStream
(
InputStream
&
is
)
{
GenericReader
<
SourceEncoding
,
Encoding
,
StackAllocator
>
reader
(
stack_
.
HasAllocator
()
?
&
stack_
.
GetAllocator
()
:
0
);
ClearStackOnExit
scope
(
*
this
);
GenericStreamWrapper
<
InputStream
,
SourceEncoding
>
is
(
is_
);
parseResult_
=
reader
.
template
Parse
<
parseFlags
>
(
is
,
*
this
);
if
(
parseResult_
)
{
RAPIDJSON_ASSERT
(
stack_
.
GetSize
()
==
sizeof
(
ValueType
));
// Got one and only one root object
ValueType
::
operator
=
(
*
stack_
.
template
Pop
<
ValueType
>
(
1
));
// Move value from stack to document
}
else
{
parseResult_
.
SetPos
(
is
.
line_
,
is
.
col_
);
}
return
*
this
;
}
...
...
@@ -2358,12 +2355,6 @@ public:
//! Get the position of last parsing error in input, 0 otherwise.
size_t
GetErrorOffset
()
const
{
return
parseResult_
.
Offset
();
}
//! Get the position of last parsing error in input, 0 otherwise.
size_t
GetErrorLine
()
const
{
return
parseResult_
.
Line
();
}
//! Get the position of last parsing error in input, 0 otherwise.
size_t
GetErrorColumn
()
const
{
return
parseResult_
.
Col
();
}
//! Implicit conversion to get the last parse result
#ifndef __clang // -Wdocumentation
...
...
include/rapidjson/error/error.h
View file @
799fdea9
...
...
@@ -108,18 +108,14 @@ struct ParseResult {
typedef
bool
(
ParseResult
::*
BooleanType
)()
const
;
public
:
//! Default constructor, no error.
ParseResult
()
:
code_
(
kParseErrorNone
),
offset_
(
0
)
,
line_
(
0
),
col_
(
0
)
{}
ParseResult
()
:
code_
(
kParseErrorNone
),
offset_
(
0
)
{}
//! Constructor to set an error.
ParseResult
(
ParseErrorCode
code
,
size_t
offset
)
:
code_
(
code
),
offset_
(
offset
)
,
line_
(
0
),
col_
(
0
)
{}
ParseResult
(
ParseErrorCode
code
,
size_t
offset
)
:
code_
(
code
),
offset_
(
offset
)
{}
//! Get the error code.
ParseErrorCode
Code
()
const
{
return
code_
;
}
//! Get the error offset, if \ref IsError(), 0 otherwise.
size_t
Offset
()
const
{
return
offset_
;
}
//! Get the position of line number if error exists.
size_t
Line
()
const
{
return
line_
;
}
//! Get the position of column number if error exists.
size_t
Col
()
const
{
return
col_
;
}
//! Explicit conversion to \c bool, returns \c true, iff !\ref IsError().
operator
BooleanType
()
const
{
return
!
IsError
()
?
&
ParseResult
::
IsError
:
NULL
;
}
...
...
@@ -138,14 +134,10 @@ public:
void
Clear
()
{
Set
(
kParseErrorNone
);
}
//! Update error code and offset.
void
Set
(
ParseErrorCode
code
,
size_t
offset
=
0
)
{
code_
=
code
;
offset_
=
offset
;
}
//! Update line number and column number of the error position
void
SetPos
(
size_t
line
,
size_t
col
)
{
line_
=
line
;
col_
=
col
;
}
private
:
ParseErrorCode
code_
;
size_t
offset_
;
size_t
line_
;
size_t
col_
;
};
//! Function pointer type of GetParseError().
...
...
include/rapidjson/stream.h
View file @
799fdea9
...
...
@@ -104,40 +104,28 @@ inline void PutN(Stream& stream, Ch c, size_t n) {
// GenericStreamWrapper
//! A Stream Wrapper
/*! \tThis string stream is designed for counting line and column number
\tof the error (if exists) position, while just forwarding any received
\tmessage to the origin stream.
/*! \tThis string stream is a wrapper for any stream by just forwarding any
\treceived message to the origin stream.
\note implements Stream concept
*/
#if defined(_MSC_VER) && _MSC_VER <= 1
7
00
#if defined(_MSC_VER) && _MSC_VER <= 1
8
00
RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF
(
4702
)
// disable unreachable code
RAPIDJSON_DIAG_OFF
(
4702
)
// unreachable code
RAPIDJSON_DIAG_OFF
(
4512
)
// assignment operator could not be generated
#endif
template
<
typename
InputStream
,
typename
Encoding
>
template
<
typename
InputStream
,
typename
Encoding
=
UTF8
<>
>
class
GenericStreamWrapper
{
public
:
typedef
typename
Encoding
::
Ch
Ch
;
size_t
line_
;
size_t
col_
;
GenericStreamWrapper
(
InputStream
&
is
)
:
line_
(
1
),
col_
(
0
),
is_
(
is
)
{}
GenericStreamWrapper
(
InputStream
&
is
)
:
is_
(
is
)
{}
Ch
Peek
()
const
{
return
is_
.
Peek
();
}
// counting line and column number
Ch
Take
()
{
Ch
ch
=
is_
.
Take
();
if
(
ch
==
'\n'
)
{
line_
++
;
col_
=
0
;
}
else
{
col_
++
;
}
return
ch
;
}
Ch
Take
()
{
return
is_
.
Take
();
}
size_t
Tell
()
{
return
is_
.
Tell
();
}
Ch
*
PutBegin
()
{
return
is_
.
PutBegin
();
}
void
Put
(
Ch
ch
)
{
is_
.
Put
(
ch
);
}
void
Flush
()
{
is_
.
Flush
();
}
...
...
@@ -150,16 +138,11 @@ public:
UTFType
GetType
()
const
{
return
is_
.
GetType
();
}
bool
HasBOM
()
const
{
return
is_
.
HasBOM
();
}
pr
ivate
:
pr
otected
:
InputStream
&
is_
;
// elimante vs2010-2013 C4512 warning by
// prohibiting copy constructor & assignment operator.
GenericStreamWrapper
&
operator
=
(
const
GenericStreamWrapper
&
);
GenericStreamWrapper
(
const
GenericStreamWrapper
&
);
};
#if defined(_MSC_VER) && _MSC_VER <= 1
7
00
#if defined(_MSC_VER) && _MSC_VER <= 1
8
00
RAPIDJSON_DIAG_POP
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment