e83a1e8fb224264edfdf4f90307f6754e25787c0
[lms] / lightmediascanner / src / plugins / mp4 / mp4.c
1 /**
2  * Copyright (C) 2008 by INdT
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  * @author Andre Moreira Magalhaes <andre.magalhaes@openbossa.org>
19  */
20
21 /**
22  * @brief
23  *
24  * mp4 file parser.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <lightmediascanner_plugin.h>
32 #include <lightmediascanner_db.h>
33 #include <mp4.h>
34
35 enum StreamTypes {
36     STREAM_TYPE_UNKNOWN = 0,
37     STREAM_TYPE_AUDIO,
38     STREAM_TYPE_VIDEO
39 };
40
41 struct mp4_info {
42     struct lms_string_size title;
43     struct lms_string_size artist;
44     struct lms_string_size album;
45     struct lms_string_size genre;
46 };
47
48 struct plugin {
49     struct lms_plugin plugin;
50     lms_db_audio_t *audio_db;
51     lms_db_video_t *video_db;
52 };
53
54 static const char _name[] = "mp4";
55 static const struct lms_string_size _exts[] = {
56     LMS_STATIC_STRING_SIZE(".mp4")
57 };
58
59 static void
60 _strstrip(char **str, unsigned int *p_len)
61 {
62     if (*str)
63         lms_strstrip(*str, p_len);
64
65     if (*p_len == 0 && *str) {
66         free(*str);
67         *str = NULL;
68     }
69 }
70
71 static void *
72 _match(struct plugin *p, const char *path, int len, int base)
73 {
74     int i;
75
76     i = lms_which_extension(path, len, _exts, LMS_ARRAY_SIZE(_exts));
77     if (i < 0)
78       return NULL;
79     else
80       return (void*)(i + 1);
81 }
82
83 static int
84 _parse(struct plugin *plugin, struct lms_context *ctxt, const struct lms_file_info *finfo, void *match)
85 {
86     struct mp4_info info = {{0}, {0}, {0}, {0}};
87     struct lms_audio_info audio_info = {0, {0}, {0}, {0}, {0}, 0, 0, 0};
88     struct lms_video_info video_info = {0, {0}, {0}};
89     int r, stream_type = STREAM_TYPE_AUDIO;
90     MP4FileHandle mp4_fh;
91     u_int32_t num_tracks;
92
93     mp4_fh = MP4Read(finfo->path, 0);
94     if (mp4_fh == MP4_INVALID_FILE_HANDLE) {
95         fprintf(stderr, "ERROR: cannot read mp4 file\n");
96         return -1;
97     }
98
99     MP4GetMetadataName(mp4_fh, &info.title.str);
100     if (info.title.str)
101         info.title.len = strlen(info.title.str);
102     MP4GetMetadataArtist(mp4_fh, &info.artist.str);
103     if (info.artist.str)
104         info.artist.len = strlen(info.artist.str);
105     MP4GetMetadataAlbum(mp4_fh, &info.album.str);
106     if (info.album.str)
107         info.album.len = strlen(info.album.str);
108     MP4GetMetadataGenre(mp4_fh, &info.genre.str);
109     if (info.genre.str)
110         info.genre.len = strlen(info.genre.str);
111
112     /* check if the file contains a video track */
113     num_tracks = MP4GetNumberOfTracks(mp4_fh, MP4_VIDEO_TRACK_TYPE, 0);
114     if (num_tracks > 0)
115         stream_type = STREAM_TYPE_VIDEO;
116
117     _strstrip(&info.title.str, &info.title.len);
118     _strstrip(&info.artist.str, &info.artist.len);
119     _strstrip(&info.album.str, &info.album.len);
120     _strstrip(&info.genre.str, &info.genre.len);
121
122     if (!info.title.str) {
123         int ext_idx;
124         ext_idx = ((int)match) - 1;
125         info.title.len = finfo->path_len - finfo->base - _exts[ext_idx].len;
126         info.title.str = malloc((info.title.len + 1) * sizeof(char));
127         memcpy(info.title.str, finfo->path + finfo->base, info.title.len);
128         info.title.str[info.title.len] = '\0';
129     }
130     lms_charset_conv(ctxt->cs_conv, &info.title.str, &info.title.len);
131
132     if (info.artist.str)
133         lms_charset_conv(ctxt->cs_conv, &info.artist.str, &info.artist.len);
134     if (info.album.str)
135         lms_charset_conv(ctxt->cs_conv, &info.album.str, &info.album.len);
136     if (info.genre.str)
137         lms_charset_conv(ctxt->cs_conv, &info.genre.str, &info.genre.len);
138
139 #if 1
140     fprintf(stderr, "file %s info\n", finfo->path);
141     fprintf(stderr, "\ttitle='%s'\n", info.title.str);
142     fprintf(stderr, "\tartist='%s'\n", info.artist.str);
143     fprintf(stderr, "\talbum='%s'\n", info.album.str);
144     fprintf(stderr, "\tgenre='%s'\n", info.genre.str);
145 #endif
146
147     if (stream_type == STREAM_TYPE_AUDIO) {
148         audio_info.id = finfo->id;
149         audio_info.title = info.title;
150         audio_info.artist = info.artist;
151         audio_info.album = info.album;
152         audio_info.genre = info.genre;
153         r = lms_db_audio_add(plugin->audio_db, &audio_info);
154     }
155     else {
156         video_info.id = finfo->id;
157         video_info.title = info.title;
158         video_info.artist = info.artist;
159         r = lms_db_video_add(plugin->video_db, &video_info);
160     }
161
162     MP4Close(mp4_fh);
163
164     if (info.title.str)
165         free(info.title.str);
166     if (info.artist.str)
167         free(info.artist.str);
168     if (info.album.str)
169         free(info.album.str);
170     if (info.genre.str)
171         free(info.genre.str);
172
173     return r;
174 }
175
176 static int
177 _setup(struct plugin *plugin, struct lms_context *ctxt)
178 {
179     plugin->audio_db = lms_db_audio_new(ctxt->db);
180     if (!plugin->audio_db)
181         return -1;
182     plugin->video_db = lms_db_video_new(ctxt->db);
183     if (!plugin->video_db)
184         return -1;
185
186     return 0;
187 }
188
189 static int
190 _start(struct plugin *plugin, struct lms_context *ctxt)
191 {
192     int r;
193     r = lms_db_audio_start(plugin->audio_db);
194     r |= lms_db_video_start(plugin->video_db);
195     return r;
196 }
197
198 static int
199 _finish(struct plugin *plugin, struct lms_context *ctxt)
200 {
201     if (plugin->audio_db)
202         lms_db_audio_free(plugin->audio_db);
203     if (plugin->video_db)
204         lms_db_video_free(plugin->video_db);
205
206     return 0;
207 }
208
209 static int
210 _close(struct plugin *plugin)
211 {
212     free(plugin);
213     return 0;
214 }
215
216 API struct lms_plugin *
217 lms_plugin_open(void)
218 {
219     struct plugin *plugin;
220
221     plugin = (struct plugin *)malloc(sizeof(*plugin));
222     plugin->plugin.name = _name;
223     plugin->plugin.match = (lms_plugin_match_fn_t)_match;
224     plugin->plugin.parse = (lms_plugin_parse_fn_t)_parse;
225     plugin->plugin.close = (lms_plugin_close_fn_t)_close;
226     plugin->plugin.setup = (lms_plugin_setup_fn_t)_setup;
227     plugin->plugin.start = (lms_plugin_start_fn_t)_start;
228     plugin->plugin.finish = (lms_plugin_finish_fn_t)_finish;
229
230     return (struct lms_plugin *)plugin;
231 }