song_sort.c 2.91 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2012 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

20
#include "config.h"
21
#include "song_sort.h"
22
#include "song.h"
23 24
#include "util/list.h"
#include "util/list_sort.h"
25
#include "tag.h"
26 27

#include <glib.h>
28

29
#include <assert.h>
30
#include <stdlib.h>
31

32 33 34 35 36 37 38 39
static const char *
tag_get_value_checked(const struct tag *tag, enum tag_type type)
{
	return tag != NULL
		? tag_get_value(tag, type)
		: NULL;
}

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
static int
compare_utf8_string(const char *a, const char *b)
{
	if (a == NULL)
		return b == NULL ? 0 : -1;

	if (b == NULL)
		return 1;

	return g_utf8_collate(a, b);
}

/**
 * Compare two string tag values, ignoring case.  Either one may be
 * NULL.
 */
static int
compare_string_tag_item(const struct tag *a, const struct tag *b,
			enum tag_type type)
{
	return compare_utf8_string(tag_get_value_checked(a, type),
				   tag_get_value_checked(b, type));
}

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/**
 * Compare two tag values which should contain an integer value
 * (e.g. disc or track number).  Either one may be NULL.
 */
static int
compare_number_string(const char *a, const char *b)
{
	long ai = a == NULL ? 0 : strtol(a, NULL, 10);
	long bi = b == NULL ? 0 : strtol(b, NULL, 10);

	if (ai <= 0)
		return bi <= 0 ? 0 : -1;

	if (bi <= 0)
		return 1;

	return ai - bi;
}

static int
compare_tag_item(const struct tag *a, const struct tag *b, enum tag_type type)
{
86 87
	return compare_number_string(tag_get_value_checked(a, type),
				     tag_get_value_checked(b, type));
88 89
}

90
/* Only used for sorting/searchin a songvec, not general purpose compares */
91 92
static int
song_cmp(G_GNUC_UNUSED void *priv, struct list_head *_a, struct list_head *_b)
93
{
94 95
	const struct song *a = (const struct song *)_a;
	const struct song *b = (const struct song *)_b;
96 97
	int ret;

98 99 100 101 102 103
	/* first sort by album */
	ret = compare_string_tag_item(a->tag, b->tag, TAG_ALBUM);
	if (ret != 0)
		return ret;

	/* then sort by disc */
104
	ret = compare_tag_item(a->tag, b->tag, TAG_DISC);
105 106 107 108
	if (ret != 0)
		return ret;

	/* then by track number */
109
	ret = compare_tag_item(a->tag, b->tag, TAG_TRACK);
110 111 112 113
	if (ret != 0)
		return ret;

	/* still no difference?  compare file name */
114
	return g_utf8_collate(a->uri, b->uri);
115 116
}

117
void
118
song_list_sort(struct list_head *songs)
119
{
120
	list_sort(NULL, songs, song_cmp);
121
}