RetroArch
istreamwrapper.h
Go to the documentation of this file.
1 // Tencent is pleased to support the open source community by making RapidJSON available.
2 //
3 // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
4 //
5 // Licensed under the MIT License (the "License"); you may not use this file except
6 // in compliance with the License. You may obtain a copy of the License at
7 //
8 // http://opensource.org/licenses/MIT
9 //
10 // Unless required by applicable law or agreed to in writing, software distributed
11 // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
12 // CONDITIONS OF ANY KIND, either express or implied. See the License for the
13 // specific language governing permissions and limitations under the License.
14 
15 #ifndef RAPIDJSON_ISTREAMWRAPPER_H_
16 #define RAPIDJSON_ISTREAMWRAPPER_H_
17 
18 #include "stream.h"
19 #include <iosfwd>
20 
21 #ifdef __clang__
22 RAPIDJSON_DIAG_PUSH
23 RAPIDJSON_DIAG_OFF(padded)
24 #endif
25 
26 #ifdef _MSC_VER
27 RAPIDJSON_DIAG_PUSH
28 RAPIDJSON_DIAG_OFF(4351) // new behavior: elements of array 'array' will be default initialized
29 #endif
30 
32 
34 
49 template <typename StreamType>
51 public:
52  typedef typename StreamType::char_type Ch;
54 
55  Ch Peek() const {
56  typename StreamType::int_type c = stream_.peek();
57  return RAPIDJSON_LIKELY(c != StreamType::traits_type::eof()) ? static_cast<Ch>(c) : '\0';
58  }
59 
60  Ch Take() {
61  typename StreamType::int_type c = stream_.get();
62  if (RAPIDJSON_LIKELY(c != StreamType::traits_type::eof())) {
63  count_++;
64  return static_cast<Ch>(c);
65  }
66  else
67  return '\0';
68  }
69 
70  // tellg() may return -1 when failed. So we count by ourself.
71  size_t Tell() const { return count_; }
72 
73  Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; }
74  void Put(Ch) { RAPIDJSON_ASSERT(false); }
75  void Flush() { RAPIDJSON_ASSERT(false); }
76  size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; }
77 
78  // For encoding detection only.
79  const Ch* Peek4() const {
80  RAPIDJSON_ASSERT(sizeof(Ch) == 1); // Only usable for byte stream.
81  int i;
82  bool hasError = false;
83  for (i = 0; i < 4; ++i) {
84  typename StreamType::int_type c = stream_.get();
85  if (c == StreamType::traits_type::eof()) {
86  hasError = true;
87  stream_.clear();
88  break;
89  }
90  peekBuffer_[i] = static_cast<Ch>(c);
91  }
92  for (--i; i >= 0; --i)
93  stream_.putback(peekBuffer_[i]);
94  return !hasError ? peekBuffer_ : 0;
95  }
96 
97 private:
100 
101  StreamType& stream_;
102  size_t count_;
103  mutable Ch peekBuffer_[4];
104 };
105 
108 
109 #if defined(__clang__) || defined(_MSC_VER)
110 RAPIDJSON_DIAG_POP
111 #endif
112 
114 
115 #endif // RAPIDJSON_ISTREAMWRAPPER_H_
void Put(Ch)
Definition: istreamwrapper.h:74
#define RAPIDJSON_LIKELY(x)
Compiler branching hint for expression with high probability to be true.
Definition: rapidjson.h:455
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Definition: rapidjson.h:119
const GLubyte * c
Definition: glext.h:9812
Ch * PutBegin()
Definition: istreamwrapper.h:73
Wrapper of std::basic_istream into RapidJSON's Stream concept.
Definition: istreamwrapper.h:50
StreamType::char_type Ch
Definition: istreamwrapper.h:52
size_t count_
Number of characters read. Note:
Definition: istreamwrapper.h:102
BasicIStreamWrapper & operator=(const BasicIStreamWrapper &)
size_t PutEnd(Ch *)
Definition: istreamwrapper.h:76
Ch Take()
Definition: istreamwrapper.h:60
#define RAPIDJSON_ASSERT(x)
Assertion.
Definition: rapidjson.h:402
BasicIStreamWrapper< std::wistream > WIStreamWrapper
Definition: istreamwrapper.h:107
const Ch * Peek4() const
Definition: istreamwrapper.h:79
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
Definition: rapidjson.h:116
GLuint GLuint stream
Definition: glext.h:8189
StreamType & stream_
Definition: istreamwrapper.h:101
void Flush()
Definition: istreamwrapper.h:75
size_t Tell() const
Definition: istreamwrapper.h:71
Ch Peek() const
Definition: istreamwrapper.h:55
BasicIStreamWrapper(StreamType &stream)
Definition: istreamwrapper.h:53
BasicIStreamWrapper< std::istream > IStreamWrapper
Definition: istreamwrapper.h:106
Ch peekBuffer_[4]
Definition: istreamwrapper.h:103