Skip to content
error.cc 2.33 KiB
Newer Older
Seblu's avatar
Seblu committed
/*
  This file is part of SLL.
Seblu's avatar
Seblu committed
  Copyright (C) 2008 Sebastien LUTTRINGER <contact@seblu.net>

  SLL is free software; you can redistribute it and/or modify
Seblu's avatar
Seblu committed
  it under the terms of the GNU General Public License as published by
Seblu's avatar
Seblu committed
  the Free Software Foundation; version 2 of the License.
Seblu's avatar
Seblu committed

  SLL is distributed in the hope that it will be useful,
Seblu's avatar
Seblu committed
  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 SLL; if not, write to the Free Software
Seblu's avatar
Seblu committed
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

Seblu's avatar
Seblu committed
#include "error.hh"

/*!
** Constructor
**
** @param i error code
** @param s error message
*/
Seblu's avatar
Seblu committed
Error::Error(int i, const string s)
{
  val_ = i;
  msg_ << s;
}

/*!
** Constructor by copy
**
** @param e
*/
Seblu's avatar
Seblu committed
Error::Error(const Error &e)
{
  val_ = e.val_;
  msg_ << e.msg_.str();
}

/*!
** Print and error msg on std err
**
*/
Seblu's avatar
Seblu committed
void Error::print() const
{
  if (msg_.str() != "")
    std::cerr << msg_.str() << "." << std::endl;
Seblu's avatar
Seblu committed
}

/*!
** @return a copy of message description
*/
Seblu's avatar
Seblu committed
string Error::message() const
{
  return msg_.str();
}

/*!
** @return the error code
*/
Seblu's avatar
Seblu committed
int Error::code() const
{
  return val_;
}

/*!
** Set error code to @param v
*/
Seblu's avatar
Seblu committed
void Error::code(int v)
{
  val_ = v;
}

/*!
** Concatenate @param s before error message
*/
void Error::prefix(const string &s) {
  string buf = s + msg_.str();

  msg_.str("");
  msg_ << buf;
}

/*!
** Concatenate @param s to errror message
*/
void Error::suffix(const string &s) {
  msg_ << s;
}

/*!
** Copy operator
*/
Seblu's avatar
Seblu committed
Error &Error::operator=(const Error &rhs)
{
  val_ = rhs.val_;
  msg_.str("");
  msg_ << rhs.msg_.str();
  return *this;
}

/*!
** Print error message to @param o stream
*/
Seblu's avatar
Seblu committed
ostream &operator<<(ostream &o, const Error &e)
{
  o << e.msg_.str();
  return o;
}

/*!
** Concatenate @param val to errror message
*/
Seblu's avatar
Seblu committed
Error &operator<<(Error &e, int val)
{
  e.msg_ << val;
  return e;
}

/*!
** Concatenate @param s to errror message
*/
Seblu's avatar
Seblu committed
Error &operator<<(Error &e, const string &s)
{
  e.msg_ << s;
  return e;
}

/*!
** Concatenate @param s before error message
*/
Seblu's avatar
Seblu committed
Error &operator>>(Error &e, const string &s)
{
  string buf = s + e.msg_.str();

  e.msg_.str("");
  e.msg_ << buf;
  return e;
}