blob: 43f434e87bc551618e492bcbac9b4c48fa7f8d81 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_JSON_JSON_PARSER_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_JSON_JSON_PARSER_H_
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include <memory>
namespace blink {
class JSONValue;
enum class JSONParseErrorType {
kNoError,
kUnexpectedToken,
kSyntaxError,
kInvalidEscape,
kTooMuchNesting,
kUnexpectedDataAfterRoot,
kUnsupportedEncoding,
};
struct PLATFORM_EXPORT JSONParseError {
JSONParseErrorType type;
int line;
int column;
String message;
};
// Parses |json| string and returns a value it represents.
// In case of parsing failure, returns nullptr.
// Optional error struct may be passed in, which will contain
// error details or |kNoError| if parsing succeeded.
PLATFORM_EXPORT std::unique_ptr<JSONValue> ParseJSON(
const String& json,
JSONParseError* opt_error = nullptr);
PLATFORM_EXPORT std::unique_ptr<JSONValue> ParseJSON(
const String& json,
int max_depth,
JSONParseError* opt_error = nullptr);
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_JSON_JSON_PARSER_H_