add message history to Exception
[platform/upstream/libzypp.git] / zypp / base / Exception.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/base/Exception.cc
10  *
11 */
12 #include <iostream>
13 #include <sstream>
14
15 #include "zypp/base/Logger.h"
16 #include "zypp/base/Gettext.h"
17 #include "zypp/base/String.h"
18 #include "zypp/base/Exception.h"
19
20 using std::endl;
21
22 ///////////////////////////////////////////////////////////////////
23 namespace zypp
24 { /////////////////////////////////////////////////////////////////
25   ///////////////////////////////////////////////////////////////////
26   namespace exception_detail
27   { /////////////////////////////////////////////////////////////////
28
29     std::string CodeLocation::asString() const
30     {
31       return str::form( "%s(%s):%u",
32                         _file.c_str(),
33                         _func.c_str(),
34                         _line );
35     }
36
37     std::ostream & operator<<( std::ostream & str, const CodeLocation & obj )
38     { return str << obj.asString(); }
39
40     /////////////////////////////////////////////////////////////////
41   } // namespace exception_detail
42   ///////////////////////////////////////////////////////////////////
43
44   Exception::Exception()
45   {}
46
47   Exception::Exception( const std::string & msg_r )
48   : _msg( msg_r )
49   {}
50
51   Exception::~Exception() throw()
52   {}
53
54   std::string Exception::asString() const
55   {
56     std::ostringstream str;
57     dumpOn( str );
58     return str.str();
59   }
60
61   std::string Exception::asUserString() const
62   {
63     std::ostringstream str;
64     dumpOn( str );
65     // call gettext to translate the message. This will
66     // not work if dumpOn() uses composed messages.
67     return _(str.str().c_str());
68   }
69
70   void Exception::remember( const Exception & old_r )
71   {
72     if ( &old_r != this ) // no self-remember
73     {
74       History newh( old_r._history.begin(), old_r._history.end() );
75       newh.push_front( old_r.asUserString() );
76       _history.swap( newh );
77     }
78   }
79
80   void Exception::addHistory( const std::string & msg_r )
81   {
82     _history.push_front( msg_r );
83   }
84
85   std::ostream & Exception::dumpOn( std::ostream & str ) const
86   { return str << _msg; }
87
88   std::ostream & Exception::dumpError( std::ostream & str ) const
89   { return dumpOn( str << _where << ": " ); }
90
91   std::ostream & operator<<( std::ostream & str, const Exception & obj )
92   { return obj.dumpError( str ); }
93
94
95   std::string Exception::strErrno( int errno_r )
96   { return str::strerror( errno_r ); }
97
98   std::string Exception::strErrno( int errno_r, const std::string & msg_r )
99   {
100     std::string ret( msg_r );
101     ret += ": ";
102     return ret += strErrno( errno_r );
103   }
104
105   void Exception::log( const Exception & excpt_r, const CodeLocation & where_r,
106                        const char *const prefix_r )
107   {
108     INT << where_r << " " << prefix_r << " " << excpt_r << endl;
109   }
110
111   /////////////////////////////////////////////////////////////////
112 } // namespace zypp
113 ///////////////////////////////////////////////////////////////////