aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/SongSort.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-26 09:17:41 +0100
committerMax Kellermann <max@duempel.org>2014-02-26 09:17:41 +0100
commit4d73e4d605a8abecff28b7e8c015d252b25954a9 (patch)
tree3b563de109eef41acf1cd3c2bd84cdee9b465f8b /src/db/SongSort.cxx
parentd86cc5bf42bc22e1903f0d1fada5282e7ec9ac89 (diff)
downloadmpd-4d73e4d605a8abecff28b7e8c015d252b25954a9.tar.gz
mpd-4d73e4d605a8abecff28b7e8c015d252b25954a9.tar.xz
mpd-4d73e4d605a8abecff28b7e8c015d252b25954a9.zip
db/simple: create dedicated directory
Diffstat (limited to 'src/db/SongSort.cxx')
-rw-r--r--src/db/SongSort.cxx113
1 files changed, 0 insertions, 113 deletions
diff --git a/src/db/SongSort.cxx b/src/db/SongSort.cxx
deleted file mode 100644
index c5752f568..000000000
--- a/src/db/SongSort.cxx
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * Copyright (C) 2003-2014 The Music Player Daemon Project
- * 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.
- */
-
-#include "config.h"
-#include "SongSort.hxx"
-#include "Song.hxx"
-#include "tag/Tag.hxx"
-#include "lib/icu/Collate.hxx"
-
-extern "C" {
-#include "util/list_sort.h"
-}
-
-#include <stdlib.h>
-
-static int
-compare_utf8_string(const char *a, const char *b)
-{
- if (a == nullptr)
- return b == nullptr ? 0 : -1;
-
- if (b == nullptr)
- return 1;
-
- return IcuCollate(a, b);
-}
-
-/**
- * Compare two string tag values, ignoring case. Either one may be
- * nullptr.
- */
-static int
-compare_string_tag_item(const Tag &a, const Tag &b,
- TagType type)
-{
- return compare_utf8_string(a.GetValue(type),
- b.GetValue(type));
-}
-
-/**
- * Compare two tag values which should contain an integer value
- * (e.g. disc or track number). Either one may be nullptr.
- */
-static int
-compare_number_string(const char *a, const char *b)
-{
- long ai = a == nullptr ? 0 : strtol(a, nullptr, 10);
- long bi = b == nullptr ? 0 : strtol(b, nullptr, 10);
-
- if (ai <= 0)
- return bi <= 0 ? 0 : -1;
-
- if (bi <= 0)
- return 1;
-
- return ai - bi;
-}
-
-static int
-compare_tag_item(const Tag &a, const Tag &b, TagType type)
-{
- return compare_number_string(a.GetValue(type),
- b.GetValue(type));
-}
-
-/* Only used for sorting/searchin a songvec, not general purpose compares */
-static int
-song_cmp(gcc_unused void *priv, struct list_head *_a, struct list_head *_b)
-{
- const Song *a = (const Song *)_a;
- const Song *b = (const Song *)_b;
- int ret;
-
- /* first sort by album */
- ret = compare_string_tag_item(a->tag, b->tag, TAG_ALBUM);
- if (ret != 0)
- return ret;
-
- /* then sort by disc */
- ret = compare_tag_item(a->tag, b->tag, TAG_DISC);
- if (ret != 0)
- return ret;
-
- /* then by track number */
- ret = compare_tag_item(a->tag, b->tag, TAG_TRACK);
- if (ret != 0)
- return ret;
-
- /* still no difference? compare file name */
- return IcuCollate(a->uri, b->uri);
-}
-
-void
-song_list_sort(struct list_head *songs)
-{
- list_sort(nullptr, songs, song_cmp);
-}