~ubuntu-branches/debian/sid/banshee/sid

« back to all changes in this revision

Viewing changes to .pc/Database-fix-performance-for-the-new-SQLite-s-query-.patch/src/Core/Banshee.Services/Banshee.Collection.Database/DatabaseYearListModel.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2015-01-23 13:11:42 UTC
  • Revision ID: package-import@ubuntu.com-20150123131142-sn1lrc5rqspsebc2
Tags: 2.6.2-3
* [967721a] Reexport patches via gbp-pq
* [03d8a90] Import upstream patch to fix SQLite performance regression
  (Closes: #766560)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// DatabaseYearListModel.cs
 
3
//
 
4
// Author:
 
5
//   Frank Ziegler <funtastix@googlemail.com>
 
6
//
 
7
// Permission is hereby granted, free of charge, to any person obtaining
 
8
// a copy of this software and associated documentation files (the
 
9
// "Software"), to deal in the Software without restriction, including
 
10
// without limitation the rights to use, copy, modify, merge, publish,
 
11
// distribute, sublicense, and/or sell copies of the Software, and to
 
12
// permit persons to whom the Software is furnished to do so, subject to
 
13
// the following conditions:
 
14
//
 
15
// The above copyright notice and this permission notice shall be
 
16
// included in all copies or substantial portions of the Software.
 
17
//
 
18
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
19
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
20
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
21
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
22
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
23
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
24
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
25
//
 
26
 
 
27
using System;
 
28
using System.Collections.Generic;
 
29
using Mono.Unix;
 
30
 
 
31
using Hyena;
 
32
using Hyena.Data.Sqlite;
 
33
using Hyena.Query;
 
34
 
 
35
using Banshee.Database;
 
36
 
 
37
namespace Banshee.Collection.Database
 
38
{
 
39
    public class DatabaseYearListModel : DatabaseFilterListModel<DatabaseYearInfo, YearInfo>
 
40
    {
 
41
        public DatabaseYearListModel (Banshee.Sources.DatabaseSource source, DatabaseTrackListModel trackModel, BansheeDbConnection connection, string uuid)
 
42
            : base (Banshee.Query.BansheeQuery.YearField.Name, Banshee.Query.BansheeQuery.YearField.Label,
 
43
                    source, trackModel, connection, DatabaseYearInfo.Provider, new YearInfo (), uuid)
 
44
        {
 
45
            QueryFields = new QueryFieldSet (Banshee.Query.BansheeQuery.YearField);
 
46
            ReloadFragmentFormat = @"
 
47
                FROM (SELECT MIN(CoreTracks.TrackID) AS TrackID, CoreTracks.Year FROM CoreTracks GROUP BY CoreTracks.Year) AS CoreTracks
 
48
                WHERE CoreTracks.Year IN
 
49
                    (SELECT CoreTracks.Year FROM CoreTracks, CoreCache{0}
 
50
                        WHERE CoreCache.ModelID = {1} AND
 
51
                              CoreCache.ItemID = {2} {3})
 
52
                    ORDER BY Year";
 
53
        }
 
54
 
 
55
        public override string FilterColumn {
 
56
            get { return "CoreTracks.Year"; }
 
57
        }
 
58
 
 
59
        protected override string ItemToFilterValue (object item)
 
60
        {
 
61
            return (item is DatabaseYearInfo) ? (item as DatabaseYearInfo).Year.ToString () : null;
 
62
        }
 
63
 
 
64
        public override void UpdateSelectAllItem (long count)
 
65
        {
 
66
            select_all_item.Name = String.Format (Catalog.GetString ("All Years ({0})"), count);
 
67
        }
 
68
    }
 
69
}