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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
* Simulator of microcontrollers (error.cc)
*
* Copyright (C) 1997,16 Drotos Daniel, Talker Bt.
*
* To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
*
*/
/* This file is part of microcontroller simulator: ucsim.
UCSIM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
UCSIM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with UCSIM; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
/*@1@*/
#include <stdlib.h>
#include "i_string.h"
// prj (local)
#include "errorcl.h"
#include "globals.h"
#include "utils.h"
// cmd.src
#include "newcmdcl.h"
struct id_element error_on_off_names[]= {
{ ERROR_PARENT, "unset" },
{ ERROR_ON , "on" },
{ ERROR_OFF , "off" },
{ 0 , 0 }
};
static class cl_error_registry error_registry;
class cl_list *cl_error_registry::registered_errors= 0;
/*
*/
cl_error_class::cl_error_class(enum error_type typ, const char *aname,
enum error_on_off be_on/* = ERROR_PARENT*/):
cl_base()
{
type= typ;
on= be_on;
set_name(aname, "not-known");
}
cl_error_class::cl_error_class(enum error_type typ, const char *aname,
class cl_error_class *parent,
enum error_on_off be_on/* = ERROR_PARENT*/):
cl_base()
{
type= typ;
on= be_on;
set_name(aname, "not-known");
if (parent)
parent->add_child(this);
}
void
cl_error_class::set_on(enum error_on_off val)
{
if (!get_parent() &&
val == ERROR_PARENT)
return;
on= val;
}
bool
cl_error_class::is_on(void)
{
if (on == ERROR_PARENT)
{
if (!get_parent())
return(true);
class cl_error_class *p=
dynamic_cast<class cl_error_class *>(get_parent());
return(p->is_on());
}
else
return(on == ERROR_ON);
}
enum error_type
cl_error_class::get_type(void)
{
return(type);
}
/*char *
cl_error_class::get_name(void)
{
return(name);
}*/
char *
cl_error_class::get_type_name()
{
return(get_id_string(error_type_names, type, /*cchars*/((char*)"untyped")));
/*switch (type)
{
case err_unknown: return("unclassified"); break;
case err_error: return("error"); break;
case err_warning: return("warning"); break;
}
return("untyped");*/
}
/*
*/
cl_error::cl_error(void):
cl_base()
{
classification= error_registry.find(/*cchars*/("non-classified"));
}
cl_error::~cl_error(void)
{}
int
cl_error::init(void)
{
//type= get_type();
return(0);
}
enum error_type
cl_error::get_type(void)
{
if (classification)
return(classification->get_type());
return(err_unknown);
}
enum error_on_off
cl_error::get_on(void)
{
if (!classification)
return(ERROR_ON);
return(classification->get_on());
}
bool
cl_error::is_on(void)
{
if (!classification)
return(true);
return(classification->is_on());
}
void
cl_error::print(class cl_commander_base *c)
{
c->dd_printf(cchars("%s\n"), get_type_name());
}
char *
cl_error::get_type_name()
{
enum error_type type= get_type();
return(get_id_string(error_type_names, type, /*cchars*/((char*)"untyped")));
}
cl_error_registry::cl_error_registry(void)
{
if (NULL == error_registry.find(/*cchars*/("non-classified")))
register_error(new cl_error_class(err_error, /*cchars*/("non-classified"), ERROR_ON));
}
/* End of sim.src/error.cc */
|