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

#ifndef EXTENSIONS_BROWSER_EXTENSION_ERROR_H_
#define EXTENSIONS_BROWSER_EXTENSION_ERROR_H_

#include <stddef.h>

#include <string>
#include <vector>

#include "base/compiler_specific.h"
#include "base/logging.h"
#include "extensions/common/extension_id.h"
#include "extensions/common/stack_frame.h"
#include "url/gurl.h"

namespace extensions {

class ExtensionError {
 public:
  enum class Type {
    kManifestError = 0,
    kRuntimeError,
    kInternalError,
    kNumErrorTypes,  // Put new values above this.
  };

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

  virtual ~ExtensionError();

  virtual std::string GetDebugString() const;

  // Return true if this error and `rhs` are considered equal, and should be
  // grouped together.
  bool IsEqual(const ExtensionError* rhs) const;

  Type type() const { return type_; }
  const ExtensionId& extension_id() const { return extension_id_; }
  int id() const { return id_; }
  void set_id(int id) { id_ = id; }
  bool from_incognito() const { return from_incognito_; }
  logging::LogSeverity level() const { return level_; }
  const std::u16string& source() const { return source_; }
  const std::u16string& message() const { return message_; }
  size_t occurrences() const { return occurrences_; }
  void set_occurrences(size_t occurrences) { occurrences_ = occurrences; }

 protected:
  ExtensionError(Type type,
                 const ExtensionId& extension_id,
                 bool from_incognito,
                 logging::LogSeverity level,
                 const std::u16string& source,
                 const std::u16string& message);

  virtual bool IsEqualImpl(const ExtensionError* rhs) const = 0;

  // Which type of error this is.
  Type type_;
  // The ID of the extension which caused the error.
  ExtensionId extension_id_;
  // The id of this particular error. This can be zero if the id is never set.
  int id_;
  // Whether or not the error was caused while incognito.
  bool from_incognito_;
  // The severity level of the error.
  logging::LogSeverity level_;
  // The source for the error; this can be a script, web page, or manifest file.
  // This is stored as a string (rather than a url) since it can be a Chrome
  // script file (e.g., event_bindings.js).
  std::u16string source_;
  // The error message itself.
  std::u16string message_;
  // The number of times this error has occurred.
  size_t occurrences_;
};

class ManifestError : public ExtensionError {
 public:
  ManifestError(const ExtensionId& extension_id,
                const std::u16string& message,
                const std::string& manifest_key,
                const std::u16string& manifest_specific);

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

  ~ManifestError() override;

  std::string GetDebugString() const override;

  const std::string& manifest_key() const { return manifest_key_; }
  const std::u16string& manifest_specific() const { return manifest_specific_; }

 private:
  bool IsEqualImpl(const ExtensionError* rhs) const override;

  // If present, this indicates the feature in the manifest which caused the
  // error.
  std::string manifest_key_;
  // If present, this is a more-specific location of the error - for instance,
  // a specific permission which is incorrect, rather than simply "permissions".
  std::u16string manifest_specific_;
};

class RuntimeError : public ExtensionError {
 public:
  RuntimeError(const ExtensionId& extension_id,  // optional, sometimes unknown.
               bool from_incognito,
               const std::u16string& source,
               const std::u16string& message,
               const StackTrace& stack_trace,
               const GURL& context_url,
               logging::LogSeverity level,
               int render_frame_id,
               int render_process_id,
               bool is_from_service_worker = false);

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

  ~RuntimeError() override;

  std::string GetDebugString() const override;

  const GURL& context_url() const { return context_url_; }
  const StackTrace& stack_trace() const { return stack_trace_; }
  int render_frame_id() const { return render_frame_id_; }
  int render_process_id() const { return render_process_id_; }
  bool is_from_service_worker() const { return is_from_service_worker_; }

 private:
  bool IsEqualImpl(const ExtensionError* rhs) const override;

  // Since we piggy-back onto other error reporting systems (like V8 and
  // WebKit), the reported information may need to be cleaned up in order to be
  // in a consistent format.
  void CleanUpInit();

  GURL context_url_;
  StackTrace stack_trace_;

  // Keep track of the render process which caused the error in order to
  // inspect the frame later, if possible.
  int render_frame_id_;
  int render_process_id_;
  bool is_from_service_worker_ = false;
};

class InternalError : public ExtensionError {
 public:
  InternalError(const ExtensionId& extension_id,
                const std::u16string& message,
                logging::LogSeverity level);

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

  ~InternalError() override;

  std::string GetDebugString() const override;

 private:
  bool IsEqualImpl(const ExtensionError* rhs) const override;
};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_EXTENSION_ERROR_H_
