2006-05-30 13:45:40 +00:00
|
|
|
#ifndef HEADER_Vector
|
|
|
|
#define HEADER_Vector
|
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - Vector.h
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-05-30 13:45:40 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Object.h"
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
#ifndef DEFAULT_SIZE
|
2020-10-15 19:45:38 +00:00
|
|
|
#define DEFAULT_SIZE (-1)
|
2006-05-30 13:45:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct Vector_ {
|
2020-10-31 22:28:02 +00:00
|
|
|
Object** array;
|
2020-10-04 15:55:08 +00:00
|
|
|
const ObjectClass* type;
|
2006-05-30 13:45:40 +00:00
|
|
|
int arraySize;
|
|
|
|
int growthRate;
|
|
|
|
int items;
|
|
|
|
bool owner;
|
|
|
|
} Vector;
|
|
|
|
|
2020-10-04 15:55:08 +00:00
|
|
|
Vector* Vector_new(const ObjectClass* type, bool owner, int size);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_delete(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_prune(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-10-21 19:26:09 +00:00
|
|
|
void Vector_quickSortCustomCompare(Vector* this, Object_Compare compare);
|
|
|
|
static inline void Vector_quickSort(Vector* this) {
|
|
|
|
Vector_quickSortCustomCompare(this, this->type->compare);
|
|
|
|
}
|
2011-11-18 06:08:56 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_insertionSort(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_insert(Vector* this, int idx, void* data_);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
Object* Vector_take(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
Object* Vector_remove(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_moveUp(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_moveDown(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_set(Vector* this, int idx, void* data_);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-17 20:27:33 +00:00
|
|
|
#ifndef NDEBUG
|
2011-11-18 06:08:56 +00:00
|
|
|
|
2020-11-17 00:27:27 +00:00
|
|
|
Object* Vector_get(const Vector* this, int idx);
|
2020-10-15 18:41:35 +00:00
|
|
|
int Vector_size(const Vector* this);
|
2020-10-21 19:25:59 +00:00
|
|
|
unsigned int Vector_count(const Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-09-17 20:27:33 +00:00
|
|
|
#else /* NDEBUG */
|
2018-02-05 10:01:35 +00:00
|
|
|
|
2021-01-06 16:14:06 +00:00
|
|
|
static inline Object* Vector_get(const Vector* this, int idx) {
|
2020-10-15 19:45:38 +00:00
|
|
|
return this->array[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int Vector_size(const Vector* this) {
|
|
|
|
return this->items;
|
|
|
|
}
|
2018-02-05 10:01:35 +00:00
|
|
|
|
2020-09-17 20:27:33 +00:00
|
|
|
#endif /* NDEBUG */
|
2018-02-05 10:01:35 +00:00
|
|
|
|
2021-03-12 15:46:55 +00:00
|
|
|
static inline const ObjectClass* Vector_type(const Vector* this) {
|
|
|
|
return this->type;
|
|
|
|
}
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Vector_add(Vector* this, void* data_);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-10-15 18:41:35 +00:00
|
|
|
int Vector_indexOf(const Vector* this, const void* search_, Object_Compare compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-26 00:15:00 +00:00
|
|
|
void Vector_splice(Vector* this, Vector* from);
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
#endif
|