mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-05 13:17:10 +01:00
6ec11b532e
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
69 lines
1.1 KiB
C
69 lines
1.1 KiB
C
#include <sys/stat.h>
|
|
#include <string.h>
|
|
|
|
#include "image_entry.h"
|
|
|
|
static int compare_ent(image_entry_t *a, image_entry_t *b)
|
|
{
|
|
if (S_ISDIR(a->mode)) {
|
|
if (S_ISDIR(b->mode))
|
|
goto out_len;
|
|
return -1;
|
|
}
|
|
if (S_ISDIR(b->mode))
|
|
return 1;
|
|
|
|
if (S_ISREG(a->mode)) {
|
|
if (S_ISREG(b->mode)) {
|
|
if (a->data.file.size > b->data.file.size)
|
|
return 1;
|
|
if (a->data.file.size < b->data.file.size)
|
|
return -1;
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
if (S_ISREG(b->mode))
|
|
return 1;
|
|
out_len:
|
|
return (int)strlen(a->name) - (int)strlen(b->name);
|
|
}
|
|
|
|
static image_entry_t *insert_sorted(image_entry_t *list, image_entry_t *ent)
|
|
{
|
|
image_entry_t *it, *prev;
|
|
|
|
if (list == NULL || compare_ent(list, ent) > 0) {
|
|
ent->next = list;
|
|
return ent;
|
|
}
|
|
|
|
it = list->next;
|
|
prev = list;
|
|
|
|
while (it != NULL) {
|
|
if (compare_ent(it, ent) > 0)
|
|
break;
|
|
|
|
prev = it;
|
|
it = it->next;
|
|
}
|
|
|
|
prev->next = ent;
|
|
ent->next = it;
|
|
return list;
|
|
}
|
|
|
|
image_entry_t *image_entry_sort(image_entry_t *list)
|
|
{
|
|
image_entry_t *sorted = NULL, *ent;
|
|
|
|
while (list != NULL) {
|
|
ent = list;
|
|
list = list->next;
|
|
|
|
sorted = insert_sorted(sorted, ent);
|
|
}
|
|
|
|
return sorted;
|
|
}
|