~ubuntu-branches/ubuntu/edgy/enigma/edgy-backports

« back to all changes in this revision

Viewing changes to src/px/error.hh

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2005-06-20 20:48:19 UTC
  • Revision ID: james.westby@ubuntu.com-20050620204819-ggqswr2gh3w9hhyr
Tags: upstream-0.92
ImportĀ upstreamĀ versionĀ 0.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2002,2004 Daniel Heck
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *  
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 
17
 *
 
18
 * $Id: error.hh,v 1.4 2004/03/20 16:15:29 dheck Exp $
 
19
 */
 
20
#ifndef PX_ERROR_HH
 
21
#define PX_ERROR_HH
 
22
 
 
23
#include <string>
 
24
#include <exception>
 
25
 
 
26
namespace px
 
27
{
 
28
    using std::string;
 
29
 
 
30
    class XGeneric : public std::exception {
 
31
    public:
 
32
        // Constructor.
 
33
        XGeneric (const std::string& str = "")
 
34
        : m_string (str)
 
35
        {}
 
36
        virtual ~XGeneric() throw()
 
37
        {}
 
38
        
 
39
        // Accessors
 
40
        const string& get_string() const { return m_string; }
 
41
        const char *what() const throw() { return m_string.c_str(); }
 
42
    private:
 
43
        std::string m_string;
 
44
    };
 
45
 
 
46
#define PX_DEF_EXCEPTION(name, parent, message)                 \
 
47
    class name : public parent {                                \
 
48
    public:                                                     \
 
49
        name(const std::string &str = message) : parent(str) {} \
 
50
    }
 
51
 
 
52
    PX_DEF_EXCEPTION( XInputOutput,     XGeneric,       "InputOutput" );
 
53
    PX_DEF_EXCEPTION( XFileNotFound,    XInputOutput,   "File not found" );
 
54
    PX_DEF_EXCEPTION( XEndOfFile,       XInputOutput,   "End of file" );
 
55
    PX_DEF_EXCEPTION( XFileFormat,      XInputOutput,   "File format" );
 
56
    PX_DEF_EXCEPTION( XVideo,           XGeneric,       "Video");
 
57
 
 
58
 
 
59
    template <class EXC>
 
60
    void Assert (bool expr, const std::string &msg)
 
61
    {
 
62
        if (!expr)
 
63
            throw EXC(msg);
 
64
    }
 
65
 
 
66
    template <class EXC>
 
67
    void Assert (bool expr)
 
68
    {
 
69
        if (!expr)
 
70
            throw EXC();
 
71
    }
 
72
}
 
73
#endif