list.h 3.53 KB
Newer Older
Warren Dukes's avatar
Warren Dukes committed
1
/* the Music Player Daemon (MPD)
2
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
Warren Dukes's avatar
Warren Dukes committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * This project's homepage is: http://www.musicpd.org
 *
 * 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; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

19 20
#ifndef MPD_LIST_H
#define MPD_LIST_H
Warren Dukes's avatar
Warren Dukes committed
21 22 23 24 25 26 27 28 29

/* used to make a list where free() will be used to free data in list */
#define DEFAULT_FREE_DATA_FUNC	free

/* typedef for function to free data stored in the list nodes */
typedef void ListFreeDataFunc(void *);

typedef struct _ListNode {
	/* used to identify node (ie. when using findInList) */
Max Kellermann's avatar
Max Kellermann committed
30
	const char *key;
Warren Dukes's avatar
Warren Dukes committed
31
	/* data store in node */
Avuton Olrich's avatar
Avuton Olrich committed
32
	void *data;
Warren Dukes's avatar
Warren Dukes committed
33
	/* next node in list */
Avuton Olrich's avatar
Avuton Olrich committed
34
	struct _ListNode *nextNode;
Warren Dukes's avatar
Warren Dukes committed
35
	/* previous node in list */
Avuton Olrich's avatar
Avuton Olrich committed
36
	struct _ListNode *prevNode;
Warren Dukes's avatar
Warren Dukes committed
37 38 39 40
} ListNode;

typedef struct _List {
	/* first node in list */
Avuton Olrich's avatar
Avuton Olrich committed
41
	ListNode *firstNode;
Warren Dukes's avatar
Warren Dukes committed
42
	/* last node in list */
Avuton Olrich's avatar
Avuton Olrich committed
43
	ListNode *lastNode;
Warren Dukes's avatar
Warren Dukes committed
44
	/* function used to free data stored in nodes of the list */
Avuton Olrich's avatar
Avuton Olrich committed
45
	ListFreeDataFunc *freeDataFunc;
Warren Dukes's avatar
Warren Dukes committed
46 47 48
	/* number of nodes */
	long numberOfNodes;
	/* array for searching when list is sorted */
Avuton Olrich's avatar
Avuton Olrich committed
49
	ListNode **nodesArray;
50 51
	/* sorted */
	int sorted;
52
	/* whether to strdup() key's on insertion */
53
	int strdupKeys;
Warren Dukes's avatar
Warren Dukes committed
54 55 56 57 58 59 60
} List;

/* allocates memory for a new list and initializes it
 *  _freeDataFunc_ -> pointer to function used to free data, use 
 *                    DEFAULT_FREE_DATAFUNC to use free()
 * returns pointer to new list if successful, NULL otherwise
 */
Avuton Olrich's avatar
Avuton Olrich committed
61
List *makeList(ListFreeDataFunc * freeDataFunc, int strdupKeys);
Warren Dukes's avatar
Warren Dukes committed
62 63 64 65 66 67

/* inserts a node into _list_ with _key_ and _data_
 *  _list_ -> list the data will be inserted in
 *  _key_ -> identifier for node/data to be inserted into list
 *  _data_ -> data to be inserted in list
 * returns 1 if successful, 0 otherwise
Avuton Olrich's avatar
Avuton Olrich committed
68
 */
Max Kellermann's avatar
Max Kellermann committed
69
ListNode *insertInList(List * list, const char *key, void *data);
Avuton Olrich's avatar
Avuton Olrich committed
70 71

ListNode *insertInListBeforeNode(List * list, ListNode * beforeNode,
Max Kellermann's avatar
Max Kellermann committed
72
				 int pos, const char *key, void *data);
Warren Dukes's avatar
Warren Dukes committed
73

Avuton Olrich's avatar
Avuton Olrich committed
74
int insertInListWithoutKey(List * list, void *data);
Warren Dukes's avatar
Warren Dukes committed
75 76 77 78 79 80

/* deletes the first node in the list with the key _key_
 *  _list_ -> list the node will be deleted from
 *  _key_ -> key used to identify node to delete
 *  returns 1 if node is found and deleted, 0 otherwise
 */
Max Kellermann's avatar
Max Kellermann committed
81
int deleteFromList(List * list, const char *key);
Warren Dukes's avatar
Warren Dukes committed
82

Avuton Olrich's avatar
Avuton Olrich committed
83
void deleteNodeFromList(List * list, ListNode * node);
Warren Dukes's avatar
Warren Dukes committed
84 85 86 87 88 89

/* finds data in a list based on key
 *  _list_ -> list to search for _key_ in
 * _key_ -> which node is being searched for
 * _data_ -> a pointer to where data will be placed, 
 *	_data_ memory should not by allocated or freed
90
 *      _data_ can be NULL
Warren Dukes's avatar
Warren Dukes committed
91 92
 * returns 1 if successful, 0 otherwise
 */
Max Kellermann's avatar
Max Kellermann committed
93
int findInList(List * list, const char *key, void **data);
Warren Dukes's avatar
Warren Dukes committed
94

95 96
/* if _key_ is not found, *_node_ is assigned to the node before which
	the info would be found */
Max Kellermann's avatar
Max Kellermann committed
97
int findNodeInList(List * list, const char *key, ListNode ** node, int *pos);
98

Warren Dukes's avatar
Warren Dukes committed
99 100 101
/* frees memory malloc'd for list and its nodes
 *  _list_ -> List to be free'd
 */
Avuton Olrich's avatar
Avuton Olrich committed
102
void freeList(void *list);
Warren Dukes's avatar
Warren Dukes committed
103 104 105 106

void sortList(List * list);

#endif