1
Fork 0

list_sort()

This commit is contained in:
Nedko Arnaudov 2009-05-31 19:59:55 +03:00
parent bb7a987f40
commit 630c7df78a
4 changed files with 179 additions and 0 deletions

View File

@ -381,6 +381,8 @@ main(
struct stat st;
char timestamp_str[26];
//test_list_sort();
st.st_mtime = 0;
stat(argv[0], &st);
ctime_r(&st.st_mtime, timestamp_str);

147
list.c Normal file
View File

@ -0,0 +1,147 @@
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*****************************************************************************
*
* list_sort() adapted from linux kernel.
*
* This program 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; version 2 of the License
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*****************************************************************************/
#include <assert.h>
#include "list.h"
/* list sort from Mark J Roberts (mjr@znex.org) */
void
__list_sort(
struct list_head *head,
int member_offset,
int (*cmp)(void * a, void * b))
{
struct list_head *p, *q, *e, *list, *tail, *oldhead;
int insize, nmerges, psize, qsize, i;
list = head->next;
list_del(head);
insize = 1;
for (;;) {
p = oldhead = list;
list = tail = NULL;
nmerges = 0;
while (p) {
nmerges++;
q = p;
psize = 0;
for (i = 0; i < insize; i++) {
psize++;
q = q->next == oldhead ? NULL : q->next;
if (!q)
break;
}
qsize = insize;
while (psize > 0 || (qsize > 0 && q)) {
if (!psize) {
e = q;
q = q->next;
qsize--;
if (q == oldhead)
q = NULL;
} else if (!qsize || !q) {
e = p;
p = p->next;
psize--;
if (p == oldhead)
p = NULL;
} else if (cmp((void *)p - member_offset, (void *)q - member_offset) <= 0) {
e = p;
p = p->next;
psize--;
if (p == oldhead)
p = NULL;
} else {
e = q;
q = q->next;
qsize--;
if (q == oldhead)
q = NULL;
}
if (tail)
tail->next = e;
else
list = e;
e->prev = tail;
tail = e;
}
p = q;
}
tail->next = list;
list->prev = tail;
if (nmerges <= 1)
break;
insize *= 2;
}
head->next = list;
head->prev = list->prev;
list->prev->next = head;
list->prev = head;
}
struct test_list_el {
int value;
struct list_head test_list_node;
};
int test_list_sort_comparator(struct test_list_el * e1, struct test_list_el * e2)
{
return e1->value - e2->value;
}
void test_list_sort(void)
{
struct list_head test_list;
struct test_list_el *el, *next;
struct test_list_el te1 = {.value = 1};
struct test_list_el te2 = {.value = 2};
struct test_list_el te3 = {.value = 3};
struct test_list_el te4 = {.value = 4};
struct test_list_el te5 = {.value = 5};
struct test_list_el te6 = {.value = 6};
struct test_list_el te7 = {.value = 7};
const int expected[] = {1, 2, 3, 4, 5, 6, 7};
int i;
INIT_LIST_HEAD(&test_list);
list_add_tail(&te2.test_list_node, &test_list);
list_add_tail(&te6.test_list_node, &test_list);
list_add_tail(&te4.test_list_node, &test_list);
list_add_tail(&te5.test_list_node, &test_list);
list_add_tail(&te7.test_list_node, &test_list);
list_add_tail(&te1.test_list_node, &test_list);
list_add_tail(&te3.test_list_node, &test_list);
list_sort(&test_list, struct test_list_el, test_list_node, test_list_sort_comparator);
i = 0;
list_for_each_entry_safe(el, next, &test_list, test_list_node) {
assert(el->value == expected[i]);
i++;
}
}

29
list.h
View File

@ -872,3 +872,32 @@ static inline void hlist_add_after_rcu(struct hlist_node *prev,
pos = pos->next)
#endif
/**
* __list_sort - sort the list using given comparator with merge-sort algorithm
* @head: is a head of the list to be sorted
* @member_offset: is machine offset inside the list entry structure to the
* field of type struct list_head which links that entry with
* the list.
*/
extern void __list_sort(struct list_head * head,
int member_offset,
int (*comparator)(void*,void*));
/**
* list_sort - wrapper for __list_sort
* @head: is a head of the list to be sorted
* @type: is the type of list entry
* @member: is the name of the field inside entry that links that entry with
* other entries in the list.
* @comaprator: function comparing two entries, should return value lesser
* than 0 when the first argument is lesser than the second one.
*/
#define list_sort(head,type,member,comparator) \
({ \
__list_sort(head, \
offsetof(type, member), \
(int (*)(void*, void*)) comparator); \
})
void test_list_sort(void);

View File

@ -125,6 +125,7 @@ def build(bld):
#'conf.c',
'jack.c',
'sigsegv.c',
'list.c',
]
prog.includes = '.' # make waf dependency tracking work
prog.target = 'a2jmidid'