/* Copyright © 2005-2007  Roger Leigh <rleigh@debian.org>
 *
 * schroot is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * schroot 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 *********************************************************************/

#ifndef SBUILD_PARSE_ERROR_H
#define SBUILD_PARSE_ERROR_H

#include <sbuild/sbuild-custom-error.h>
#include <sbuild/sbuild-null.h>

#include <map>
#include <string>

namespace sbuild
{

  /**
   * Parse error.
   */
  template<typename T>
  class parse_error : public error<T>
  {
  public:
    typedef typename error<T>::error_type error_type;

    /**
     * The constructor.
     *
     * @param context the context of the error.
     * @param error the error code.
     */
    template<typename C>
    parse_error (C const&   context,
		 error_type error):
      sbuild::error<T>(format_error(context, null(), null(), error, null(), null(), null()),
		       format_reason(context, null(), null(), error, null(), null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param error the error code.
     * @param detail the details of the error.
     */
    template<typename D>
    parse_error (error_type error,
		 D const&   detail):
      sbuild::error<T>(format_error(null(), null(), null(), error, detail, null(), null()),
		       format_reason(null(), null(), null(), error, detail, null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param line the line the error occurred on.
     * @param error the error code.
     * @param detail the details of the error.
     */
    template<typename D>
    parse_error (size_t     line,
		 error_type error,
		 D const&   detail):
      sbuild::error<T>(format_error(line, null(), null(), error, detail, null(), null()),
		       format_reason(line, null(), null(), error, detail, null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param line the line the error occurred on.
     * @param group the group the error occurred within.
     * @param error the error code.
     * @param detail the details of the error.
     */
    template<typename D>
    parse_error (size_t             line,
		 std::string const& group,
		 error_type         error,
		 D const&           detail):
      sbuild::error<T>(format_error(line, group, null(), error, detail, null(), null()),
		       format_reason(line, group, null(), error, detail, null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param line the line the error occurred on.
     * @param group the group the error occurred within.
     * @param key the key the error occurred within.
     * @param error the error code.
     * @param detail the details of the error.
     */
    template<typename D>
    parse_error (size_t             line,
		 std::string const& group,
		 std::string const& key,
		 error_type         error,
		 D const&           detail):
      sbuild::error<T>(format_error(line, group, key, error, detail, null(), null()),
		       format_reason(line, group, key, error, detail, null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param group the group the error occurred within.
     * @param error the error code.
     * @param detail the details of the error.
     */
    template<typename D>
    parse_error (std::string const& group,
		 error_type         error,
		 D const&           detail):
      sbuild::error<T>(format_error(group, null(), null(), error, detail, null(), null()),
		       format_reason(group, null(), null(), error, detail, null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param group the group the error occurred within.
     * @param key the key the error occurred within.
     * @param error the error code.
     * @param detail the details of the error.
     */
    template<typename D>
    parse_error (std::string const& group,
		 std::string const& key,
		 error_type         error,
		 D const&           detail):
      sbuild::error<T>(format_error(group, key, null(), error, detail, null(), null()),
		       format_reason(group, key, null(), error, detail, null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param context the context of the error.
     * @param error the error.
     */
    template<typename C>
    parse_error (C const&                  context,
		 std::runtime_error const& error):
      sbuild::error<T>(sbuild::error<T>::format_error(context, null(), null(), error, null(), null(), null()),
		       sbuild::error<T>::format_reason(context, null(), null(), error, null(), null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param line the line the error occurred on.
     * @param error the error.
     */
    parse_error (size_t                    line,
		 std::runtime_error const& error):
      sbuild::error<T>(sbuild::error<T>::format_error(line, null(), null(), error, null(), null(), null()),
		       sbuild::error<T>::format_reason(line, null(), null(), error, null(), null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param line the line the error occurred on.
     * @param group the group the error occurred within.
     * @param error the error.
     */
    parse_error (size_t                    line,
		 std::string const&        group,
		 std::runtime_error const& error):
      sbuild::error<T>(sbuild::error<T>::format_error(line, group, null(), error, null(), null(), null()),
		       sbuild::error<T>::format_reason(line, group, null(), error, null(), null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param line the line the error occurred on.
     * @param group the group the error occurred within.
     * @param key the key the error occurred within.
     * @param error the error.
     */
    parse_error (size_t                    line,
		 std::string const&        group,
		 std::string const&        key,
		 std::runtime_error const& error):
      sbuild::error<T>(sbuild::error<T>::format_error(line, group, key, error, null(), null(), null()),
		       sbuild::error<T>::format_reason(line, group, key, error, null(), null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param group the group the error occurred within.
     * @param error the error.
     */
    parse_error (std::string const&        group,
		 std::runtime_error const& error):
      sbuild::error<T>(sbuild::error<T>::format_error(group, null(), null(), error, null(), null(), null()),
		       sbuild::error<T>::format_reason(group, null(), null(), error, null(), null(), null()))
    {
    }

    /**
     * The constructor.
     *
     * @param group the group the error occurred within.
     * @param key the key the error occurred within.
     * @param error the error.
     */
    parse_error (std::string const&        group,
		 std::string const&        key,
		 std::runtime_error const& error):
      sbuild::error<T>(sbuild::error<T>::format_error(group, key, null(), error, null(), null(), null()),
		       sbuild::error<T>::format_reason(group, key, null(), error, null(), null(), null()))
    {
    }

  };

}

#endif /* SBUILD_PARSE_ERROR_H */

/*
 * Local Variables:
 * mode:C++
 * End:
 */
