chromium/chromeos/components/onc/onc_mapper.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROMEOS_COMPONENTS_ONC_ONC_MAPPER_H_
#define CHROMEOS_COMPONENTS_ONC_ONC_MAPPER_H_

#include <memory>
#include <string>

#include "base/component_export.h"
#include "base/values.h"

namespace chromeos::onc {

struct OncValueSignature;

// This class implements a DeepCopy of base::Values for ONC objects that
// iterates over both the ONC signature and the object hierarchy. DCHECKs if a
// field signature without value signature or an array signature without entry
// signature is reached.
//
// The general term "map" is used here, as this class is meant as base class and
// the copy behavior can be adapted by overriding the methods. By comparing the
// address of a signature object to the list of signatures in "onc_signature.h",
// accurate signature-specific translations or validations can be applied in the
// overriding methods.
//
// The ONC validator and normalizer derive from this class and adapt the default
// copy behavior.
class COMPONENT_EXPORT(CHROMEOS_ONC) Mapper {
 public:
  Mapper();

  Mapper(const Mapper&) = delete;
  Mapper& operator=(const Mapper&) = delete;

  virtual ~Mapper();

 protected:
  // Calls |MapObject|, |MapArray| and |MapPrimitive| according to |onc_value|'s
  // type, which always return an object of the according type. Result of the
  // mapping is returned. Only on error sets |error| to true.
  virtual base::Value MapValue(const OncValueSignature& signature,
                               const base::Value& onc_value,
                               bool* error);

  // Maps objects/dictionaries. By default calls |MapFields|, which recurses
  // into each field of |onc_object|, and drops unknown fields. Result of the
  // mapping is returned. Only on error sets |error| to true. In this
  // implementation only unknown fields are errors.
  virtual base::Value::Dict MapObject(const OncValueSignature& signature,
                                      const base::Value::Dict& onc_object,
                                      bool* error);

  // Maps primitive values like BinaryValue, StringValue, IntegerValue... (all
  // but dictionaries and lists). By default copies |onc_primitive|. Result of
  // the mapping is returned. Only on error sets |error| to true.
  virtual base::Value MapPrimitive(const OncValueSignature& signature,
                                   const base::Value& onc_primitive,
                                   bool* error);

  // Maps each field of the given |onc_object| according to |object_signature|.
  // Adds the mapping of each field to |result| using |MapField| and drops
  // unknown fields by default. Sets |found_unknown_field| to true if this
  // dictionary contains any unknown fields. Set |nested_error| to true only if
  // nested errors occurred.
  virtual void MapFields(const OncValueSignature& object_signature,
                         const base::Value::Dict& onc_object,
                         bool* found_unknown_field,
                         bool* nested_error,
                         base::Value::Dict* result);

  // Maps the value |onc_value| of field |field_name| according to its field
  // signature in |object_signature| using |MapValue|. Sets
  // |found_unknown_field| to true and returns a Value of type
  // base::Value::Type::NONEif |field_name| cannot be found in
  // |object_signature|. Otherwise returns the mapping of |onc_value|.
  virtual base::Value MapField(const std::string& field_name,
                               const OncValueSignature& object_signature,
                               const base::Value& onc_value,
                               bool* found_unknown_field,
                               bool* error);

  // Maps the array |onc_array| according to |array_signature|, which defines
  // the type of the entries. Maps each entry by calling |MapValue|. If any of
  // the nested mappings failed, the flag |nested_error| is set to true and the
  // entry is dropped from the result. Otherwise |nested_error| isn't
  // modified. The resulting array is returned.
  virtual base::Value::List MapArray(const OncValueSignature& array_signature,
                                     const base::Value::List& onc_array,
                                     bool* nested_error);

  // Calls |MapValue| and returns its result. Called by |MapArray| for each
  // entry and its index in the enclosing array.
  virtual base::Value MapEntry(int index,
                               const OncValueSignature& signature,
                               const base::Value& onc_value,
                               bool* error);
};

}  // namespace chromeos::onc

#endif  // CHROMEOS_COMPONENTS_ONC_ONC_MAPPER_H_