2009-02-10 14:04:03 -05:00
|
|
|
/** @file json.h */
|
2008-06-27 18:35:03 -04:00
|
|
|
|
2008-07-20 17:37:33 -04:00
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2008 10gen Inc.
|
2008-12-28 20:28:49 -05:00
|
|
|
*
|
2008-07-20 17:37:33 -04:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
2008-12-28 20:28:49 -05:00
|
|
|
*
|
2008-07-20 17:37:33 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-12-28 20:28:49 -05:00
|
|
|
*
|
2008-07-20 17:37:33 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-06-27 18:35:03 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
2010-04-27 15:27:52 -04:00
|
|
|
#include "../pch.h"
|
2008-06-27 18:35:03 -04:00
|
|
|
#include "jsobj.h"
|
|
|
|
|
|
2009-01-14 17:09:51 -05:00
|
|
|
namespace mongo {
|
|
|
|
|
|
2009-02-05 13:03:26 -05:00
|
|
|
/** Create a BSONObj from a JSON <http://www.json.org> string. In addition
|
|
|
|
|
to the JSON extensions extensions described here
|
|
|
|
|
<http://mongodb.onconfluence.com/display/DOCS/Mongo+Extended+JSON>,
|
|
|
|
|
this function accepts certain unquoted field names and allows single quotes
|
|
|
|
|
to optionally be used when specifying field names and string values instead
|
|
|
|
|
of double quotes. JSON unicode escape sequences (of the form \uXXXX) are
|
|
|
|
|
converted to utf8.
|
2009-02-05 14:11:40 -05:00
|
|
|
\throws MsgAssertionException if parsing fails. The message included with
|
|
|
|
|
this assertion includes a rough indication of where parsing failed.
|
2009-02-05 13:03:26 -05:00
|
|
|
*/
|
2009-01-15 10:17:11 -05:00
|
|
|
BSONObj fromjson(const string &str);
|
2009-01-14 17:09:51 -05:00
|
|
|
|
2010-06-14 08:38:17 -04:00
|
|
|
/** len will be size of JSON object in text chars. */
|
|
|
|
|
BSONObj fromjson(const char *str, int* len=NULL);
|
2009-02-05 13:03:26 -05:00
|
|
|
|
2009-01-14 17:09:51 -05:00
|
|
|
} // namespace mongo
|