File: Exception.cpp

package info (click to toggle)
gem 1%3A0.94-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,704 kB
  • sloc: cpp: 174,297; ansic: 42,132; makefile: 3,867; sh: 1,096; objc: 389
file content (68 lines) | stat: -rw-r--r-- 1,498 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
////////////////////////////////////////////////////////
//
// GEM - Graphics Environment for Multimedia
//
// zmoelnig@iem.at
//
// Implementation file
//
//    Copyright (c) 2009-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
//    For information on usage and redistribution, and for a DISCLAIMER OF ALL
//    WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
//
/////////////////////////////////////////////////////////
// for NULL
#include <new>

#include "Exception.h"

// for error()
#include "Gem/RTE.h"
#include <string.h>
#include <stdlib.h>

GemException::GemException(const char *error)
  : runtime_error(error)
{}

GemException::GemException(const std::string&error)
  : runtime_error(error)
{}

GemException::GemException()
  : runtime_error("")
{}

void GemException::report(const char*origin) const
{
  const char*ErrorString = what();
  if(ErrorString && *ErrorString) {
    if (NULL==origin) {
      error("GemException: %s", ErrorString);
    } else {
      error("[%s]: %s", origin, ErrorString);
    }
  }
}


void gem::catchGemException(const char*name, const t_object*obj)
{
  try {
    throw;
  } catch (GemException&ex) {
    if(NULL==obj) {
      ex.report(name);
    } else {
      t_object*o=(t_object*)obj;
      const char*str=ex.what();
      if(NULL!=str) {
        if (NULL==name) {
          pd_error(o, "GemException: %s", str);
        } else {
          pd_error(o, "[%s]: %s", name, str);
        }
      }
    }
  }
}