SongSort.cxx 2.65 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 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 "SongSort.hxx"
22
#include "Song.hxx"
23
#include "tag/Tag.hxx"
24
#include "lib/icu/Collate.hxx"
25

26 27 28 29
extern "C" {
#include "util/list_sort.h"
}

30
#include <stdlib.h>
31

32 33 34
static int
compare_utf8_string(const char *a, const char *b)
{
35 36
	if (a == nullptr)
		return b == nullptr ? 0 : -1;
37

38
	if (b == nullptr)
39 40
		return 1;

41
	return IcuCollate(a, b);
42 43 44 45
}

/**
 * Compare two string tag values, ignoring case.  Either one may be
46
 * nullptr.
47 48
 */
static int
49
compare_string_tag_item(const Tag &a, const Tag &b,
50
			TagType type)
51
{
52 53
	return compare_utf8_string(a.GetValue(type),
				   b.GetValue(type));
54 55
}

56 57
/**
 * Compare two tag values which should contain an integer value
58
 * (e.g. disc or track number).  Either one may be nullptr.
59 60 61 62
 */
static int
compare_number_string(const char *a, const char *b)
{
63 64
	long ai = a == nullptr ? 0 : strtol(a, nullptr, 10);
	long bi = b == nullptr ? 0 : strtol(b, nullptr, 10);
65 66 67 68 69 70 71 72 73 74 75

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

	if (bi <= 0)
		return 1;

	return ai - bi;
}

static int
76
compare_tag_item(const Tag &a, const Tag &b, TagType type)
77
{
78 79
	return compare_number_string(a.GetValue(type),
				     b.GetValue(type));
80 81
}

82
/* Only used for sorting/searchin a songvec, not general purpose compares */
83
static int
84
song_cmp(gcc_unused void *priv, struct list_head *_a, struct list_head *_b)
85
{
86 87
	const Song *a = (const Song *)_a;
	const Song *b = (const Song *)_b;
88 89
	int ret;

90 91 92 93 94 95
	/* first sort by album */
	ret = compare_string_tag_item(a->tag, b->tag, TAG_ALBUM);
	if (ret != 0)
		return ret;

	/* then sort by disc */
96
	ret = compare_tag_item(a->tag, b->tag, TAG_DISC);
97 98 99 100
	if (ret != 0)
		return ret;

	/* then by track number */
101
	ret = compare_tag_item(a->tag, b->tag, TAG_TRACK);
102 103 104 105
	if (ret != 0)
		return ret;

	/* still no difference?  compare file name */
106
	return IcuCollate(a->uri, b->uri);
107 108
}

109
void
110
song_list_sort(struct list_head *songs)
111
{
112
	list_sort(nullptr, songs, song_cmp);
113
}