~vcs-imports/kupfer/master-new

« back to all changes in this revision

Viewing changes to waflib/Errors.py

  • Committer: Ulrik Sverdrup
  • Date: 2012-02-26 17:32:06 UTC
  • mto: This revision was merged to the branch mainline in revision 2918.
  • Revision ID: git-v1:684a1e79e28fa3d9e346bdf2c1659e7d2c6e7718
Add waf-light and waflib from waf-1.6.11

http://code.google.com/p/waf/
Acquired from: http://waf.googlecode.com/files/waf-1.6.11.tar.bz2

"""
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. The name of the author may not be used to endorse or promote products
   derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
"""

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# encoding: utf-8
 
3
# Thomas Nagy, 2010 (ita)
 
4
 
 
5
"""
 
6
Exceptions used in the Waf code
 
7
"""
 
8
 
 
9
import traceback, sys
 
10
 
 
11
class WafError(Exception):
 
12
        """Base class for all Waf errors"""
 
13
        def __init__(self, msg='', ex=None):
 
14
                """
 
15
                :param msg: error message
 
16
                :type msg: string
 
17
                :param ex: exception causing this error (optional)
 
18
                :type ex: exception
 
19
                """
 
20
                self.msg = msg
 
21
                assert not isinstance(msg, Exception)
 
22
 
 
23
                self.stack = []
 
24
                if ex:
 
25
                        if not msg:
 
26
                                self.msg = str(ex)
 
27
                        if isinstance(ex, WafError):
 
28
                                self.stack = ex.stack
 
29
                        else:
 
30
                                self.stack = traceback.extract_tb(sys.exc_info()[2])
 
31
                self.stack += traceback.extract_stack()[:-1]
 
32
                self.verbose_msg = ''.join(traceback.format_list(self.stack))
 
33
 
 
34
        def __str__(self):
 
35
                return str(self.msg)
 
36
 
 
37
class BuildError(WafError):
 
38
        """
 
39
        Errors raised during the build and install phases
 
40
        """
 
41
        def __init__(self, error_tasks=[]):
 
42
                """
 
43
                :param error_tasks: tasks that could not complete normally
 
44
                :type error_tasks: list of task objects
 
45
                """
 
46
                self.tasks = error_tasks
 
47
                WafError.__init__(self, self.format_error())
 
48
 
 
49
        def format_error(self):
 
50
                """format the error messages from the tasks that failed"""
 
51
                lst = ['Build failed']
 
52
                for tsk in self.tasks:
 
53
                        txt = tsk.format_error()
 
54
                        if txt: lst.append(txt)
 
55
                return '\n'.join(lst)
 
56
 
 
57
class ConfigurationError(WafError):
 
58
        """
 
59
        Configuration exception raised in particular by :py:meth:`waflib.Context.Context.fatal`
 
60
        """
 
61
        pass
 
62
 
 
63
class TaskRescan(WafError):
 
64
        """task-specific exception type, trigger a signature recomputation"""
 
65
        pass
 
66
 
 
67
class TaskNotReady(WafError):
 
68
        """task-specific exception type, raised when the task signature cannot be computed"""
 
69
        pass
 
70