lms plugin: do not skip files with absent mimetypes
[profile/ivi/rygel.git] / src / plugins / lms / rygel-lms-all-images.vala
1 /*
2  * Copyright (C) 2013 Intel Corporation.
3  *
4  * Author: Jussi Kukkonen <jussi.kukkonen@intel.com>
5  *
6  * This file is part of Rygel.
7  *
8  * Rygel is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Rygel is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  */
22
23 using Rygel;
24 using Sqlite;
25
26 public class Rygel.LMS.AllImages : Rygel.LMS.CategoryContainer {
27     private static const string SQL_ALL =
28         "SELECT images.id, title, artist, date, width, height, path, size, dlna_profile, dlna_mime " +
29         "FROM images, files " +
30         "WHERE images.id = files.id " +
31         "LIMIT ? OFFSET ?;";
32
33     private static const string SQL_COUNT =
34         "SELECT count(images.id) " +
35         "FROM images, files " +
36         "WHERE images.id = files.id;";
37
38     private static const string SQL_FIND_OBJECT =
39         "SELECT images.id, title, artist, date, width, height, path, size, dlna_profile, dlna_mime " +
40         "FROM images, files " +
41         "WHERE files.id = ? AND images.id = files.id;";
42
43     protected override MediaObject? object_from_statement (Statement statement) {
44         var id = statement.column_int(0);
45         var path = statement.column_text(6);
46         var mime_type = statement.column_text(9);
47
48         if (mime_type == null || mime_type.length == 0){
49             /* TODO is this correct? */
50             debug ("Image item %d (%s) has no MIME type",
51                    id,
52                    path);
53         }
54
55         var title = statement.column_text(1);
56         var image = new ImageItem(this.build_child_id (id), this, title);
57         image.creator = statement.column_text(2);
58         TimeVal tv = { (long) statement.column_int(3), (long) 0 };
59         image.date = tv.to_iso8601 ();
60         image.width = statement.column_int(4);
61         image.height = statement.column_int(5);
62         image.size = statement.column_int(7);
63         image.mime_type = mime_type;
64         image.dlna_profile = statement.column_text(8);
65         File file = File.new_for_path(path);
66         image.add_uri (file.get_uri ());
67
68         return image;
69     }
70
71     public AllImages (MediaContainer parent, LMS.Database lms_db) {
72         base ("all",
73               parent,
74               _("All"),
75               lms_db,
76               AllImages.SQL_ALL,
77               AllImages.SQL_FIND_OBJECT,
78               AllImages.SQL_COUNT);
79     }
80 }