mirror of
https://github.com/akheron/jansson.git
synced 2025-04-06 05:55:05 +00:00
add comments noting inefficiency of stream ops
This commit is contained in:
parent
f88a5a0e6b
commit
df35adc438
2 changed files with 6 additions and 2 deletions
|
@ -293,10 +293,10 @@ namespace jansson {
|
|||
|
||||
} // namespace jansson
|
||||
|
||||
// stream JSON value out
|
||||
// stream JSON value out -- inefficient and not recommended for production use
|
||||
inline std::ostream& operator<<(std::ostream& os, const jansson::Value& value);
|
||||
|
||||
// read JSON value
|
||||
// read JSON value -- inefficient and not recommended for production use
|
||||
inline std::istream& operator>>(std::istream& is, jansson::Value& value);
|
||||
|
||||
// include implementation code
|
||||
|
|
|
@ -438,8 +438,10 @@ namespace jansson {
|
|||
|
||||
// stream JSON value out
|
||||
std::ostream& operator<<(std::ostream& os, const jansson::Value& value) {
|
||||
// get the temporary serialize string
|
||||
char* tmp = value.save_string();
|
||||
if (tmp != 0) {
|
||||
// stream temp string out and release it
|
||||
os << tmp;
|
||||
free(tmp);
|
||||
}
|
||||
|
@ -448,9 +450,11 @@ std::ostream& operator<<(std::ostream& os, const jansson::Value& value) {
|
|||
|
||||
// read JSON value
|
||||
std::istream& operator>>(std::istream& is, jansson::Value& value) {
|
||||
// buffer the remaining bytes into a single string for Jansson
|
||||
std::stringstream tmp;
|
||||
while (is)
|
||||
tmp << static_cast<char>(is.get());
|
||||
// parse the buffered string
|
||||
value = jansson::Value::load_string(tmp.str().c_str());
|
||||
return is;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue