2006-03-04 18:16:49 +00:00
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - Object.c
|
2012-12-05 15:12:20 +00:00
|
|
|
(C) 2004-2012 Hisham H. Muhammad
|
2006-03-04 18:16:49 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Object.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
/*{
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "RichString.h"
|
2006-07-11 06:13:32 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct Object_ Object;
|
|
|
|
|
|
|
|
typedef void(*Object_Display)(Object*, RichString*);
|
2014-04-25 22:41:23 +00:00
|
|
|
typedef long(*Object_Compare)(const void*, const void*);
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef void(*Object_Delete)(Object*);
|
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
#define Object_getClass(obj_) ((Object*)(obj_))->klass
|
|
|
|
#define Object_setClass(obj_, class_) Object_getClass(obj_) = (ObjectClass*) class_
|
|
|
|
|
|
|
|
#define Object_delete(obj_) Object_getClass(obj_)->delete((Object*)(obj_))
|
|
|
|
#define Object_displayFn(obj_) Object_getClass(obj_)->display
|
|
|
|
#define Object_display(obj_, str_) Object_getClass(obj_)->display((Object*)(obj_), str_)
|
|
|
|
#define Object_compare(obj_, other_) Object_getClass(obj_)->compare((const void*)(obj_), other_)
|
|
|
|
|
|
|
|
#define Class(class_) ((ObjectClass*)(&(class_ ## _class)))
|
|
|
|
|
|
|
|
#define AllocThis(class_) (class_*) malloc(sizeof(class_)); Object_setClass(this, Class(class_));
|
|
|
|
|
|
|
|
typedef struct ObjectClass_ {
|
|
|
|
const void* extends;
|
|
|
|
const Object_Display display;
|
|
|
|
const Object_Delete delete;
|
|
|
|
const Object_Compare compare;
|
|
|
|
} ObjectClass;
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
struct Object_ {
|
2012-12-05 15:12:20 +00:00
|
|
|
ObjectClass* klass;
|
2006-03-04 18:16:49 +00:00
|
|
|
};
|
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
}*/
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
ObjectClass Object_class = {
|
|
|
|
.extends = NULL
|
|
|
|
};
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
bool Object_isA(Object* o, const ObjectClass* klass) {
|
|
|
|
if (!o)
|
|
|
|
return false;
|
|
|
|
const ObjectClass* type = o->klass;
|
|
|
|
while (type) {
|
|
|
|
if (type == klass)
|
|
|
|
return true;
|
|
|
|
type = type->extends;
|
|
|
|
}
|
|
|
|
return false;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#endif
|