Add historyAsString()
[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::string Exception::historyAsString() const
86   {
87     // TranslatorExplanation followed by the list of error messages that lead to this exception
88     std::string history( _("History:") );
89     ostringstream ret;
90     dumpRange( ret, err.historyBegin(), err.historyEnd(),
91                "", history+"\n - ", "\n - ", "\n", "" );
92     return ret.str();
93   }
94
95   std::ostream & Exception::dumpOn( std::ostream & str ) const
96   { return str << _msg; }
97
98   std::ostream & Exception::dumpError( std::ostream & str ) const
99   { return dumpOn( str << _where << ": " ); }
100
101   std::ostream & operator<<( std::ostream & str, const Exception & obj )
102   { return obj.dumpError( str ); }
103
104
105   std::string Exception::strErrno( int errno_r )
106   { return str::strerror( errno_r ); }
107
108   std::string Exception::strErrno( int errno_r, const std::string & msg_r )
109   {
110     std::string ret( msg_r );
111     ret += ": ";
112     return ret += strErrno( errno_r );
113   }
114
115   void Exception::log( const Exception & excpt_r, const CodeLocation & where_r,
116                        const char *const prefix_r )
117   {
118     INT << where_r << " " << prefix_r << " " << excpt_r << endl;
119   }
120
121   /////////////////////////////////////////////////////////////////
122 } // namespace zypp
123 ///////////////////////////////////////////////////////////////////