blob: 01b022b5e6b4329dcf9df5817ae673094b8f8fc6 [file] [log] [blame]
// Copyright (c) 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 CONTENT_COMMON_INPUT_ACTIONS_PARSER_H_
#define CONTENT_COMMON_INPUT_ACTIONS_PARSER_H_
#include <cstddef>
#include <set>
#include <string>
#include "content/common/input/synthetic_pointer_action_list_params.h"
namespace base {
class DictionaryValue;
class ListValue;
} // namespace base
namespace content {
// This class takes the arugment of json format from
// GpuBenchmarking::PointerActionSequence, parses it and warps
// it into a SyntheticPointerActionListParams object.
class CONTENT_EXPORT ActionsParser {
public:
explicit ActionsParser(base::Value* value);
~ActionsParser();
bool ParsePointerActionSequence();
std::string error_message() { return error_message_; }
const SyntheticPointerActionListParams& gesture_params() const {
return gesture_params_;
}
private:
bool ParsePointerActions(const base::DictionaryValue& pointer_actions);
bool ParseActions(const base::ListValue& actions, int pointer_id);
bool ParseAction(const base::DictionaryValue& action,
SyntheticPointerActionListParams::ParamList& param_list,
int pointer_id);
SyntheticPointerActionListParams gesture_params_;
std::vector<SyntheticPointerActionListParams::ParamList>
pointer_actions_list_;
size_t longest_action_sequence_;
std::string source_type_;
std::string pointer_type_;
std::string error_message_;
base::Value* pointer_actions_value_;
int action_index_;
std::set<int> pointer_id_set_;
std::set<std::string> pointer_name_set_;
DISALLOW_COPY_AND_ASSIGN(ActionsParser);
};
} // namespace content
#endif // CONTENT_COMMON_INPUT_ACTIONS_PARSER_H_