1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Nicolas Pennequin
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "string-extra.h"
26 #include "buffering.h"
29 #include "filefuncs.h"
33 /* Define LOGF_ENABLE to enable logf output in this file */
34 /*#define LOGF_ENABLE*/
37 #if defined(HAVE_JPEG) || defined(PLUGIN)
38 #define USE_JPEG_COVER
41 /* Strip filename from a full path
43 * buf - buffer to extract directory to.
44 * buf_size - size of buffer.
45 * fullpath - fullpath to extract from.
47 * Split the directory part of the given fullpath and store it in buf
48 * (including last '/').
49 * The function return parameter is a pointer to the filename
50 * inside the given fullpath.
52 static char* strip_filename(char* buf
, int buf_size
, const char* fullpath
)
57 if (!buf
|| buf_size
<= 0 || !fullpath
)
60 /* if 'fullpath' is only a filename return immediately */
61 sep
= strrchr(fullpath
, '/');
65 return (char*)fullpath
;
68 len
= MIN(sep
- fullpath
+ 1, buf_size
- 1);
69 strlcpy(buf
, fullpath
, len
+ 1);
73 /* Make sure part of path only contain chars valid for a FAT32 long name.
74 * Double quotes are replaced with single quotes, other unsupported chars
75 * are replaced with an underscore.
77 * path - path to modify.
78 * offset - where in path to start checking.
79 * count - number of chars to check.
81 static void fix_path_part(char* path
, int offset
, int count
)
83 static const char invalid_chars
[] = "*/:<>?\\|";
88 for (i
= 0; i
<= count
; i
++, path
++)
94 else if (strchr(invalid_chars
, *path
))
100 static const char * extensions
[] = { "jpeg", "jpg", "bmp" };
101 static const unsigned char extension_lens
[] = { 4, 3, 3 };
102 /* Try checking for several file extensions, return true if a file is found and
103 * leaving the path modified to include the matching extension.
105 static bool try_exts(char *path
, int len
)
108 for (i
= 0; i
< 3; i
++)
110 if (extension_lens
[i
] + len
> MAX_PATH
)
112 strcpy(path
+ len
, extensions
[i
]);
113 if (file_exists(path
))
121 #define try_exts(path, len) file_exists(path)
124 /* Look for the first matching album art bitmap in the following list:
125 * ./<trackname><size>.{jpeg,jpg,bmp}
126 * ./<albumname><size>.{jpeg,jpg,bmp}
128 * ../<albumname><size>.{jpeg,jpg,bmp}
129 * ../cover<size>.{jpeg,jpg,bmp}
130 * ROCKBOX_DIR/albumart/<artist>-<albumname><size>.{jpeg,jpg,bmp}
131 * <size> is the value of the size_string parameter, <trackname> and
132 * <albumname> are read from the ID3 metadata.
133 * If a matching bitmap is found, its filename is stored in buf.
134 * Return value is true if a bitmap was found, false otherwise.
136 * If the first symbol in size_string is a colon (e.g. ":100x100")
137 * then the colon is skipped ("100x100" will be used) and the track
138 * specific image (./<trackname><size>.bmp) is tried last instead of first.
140 bool search_albumart_files(const struct mp3entry
*id3
, const char *size_string
,
141 char *buf
, int buflen
)
143 char path
[MAX_PATH
+ 1];
144 char dir
[MAX_PATH
+ 1];
148 const char *trackname
;
157 trackname
= id3
->path
;
159 if (strcmp(trackname
, "No file!") == 0)
162 if (*size_string
== ':')
168 strip_filename(dir
, sizeof(dir
), trackname
);
169 dirlen
= strlen(dir
);
170 albumlen
= id3
->album
? strlen(id3
->album
) : 0;
172 for(pass
= 0; pass
< 2 - track_first
; pass
++)
174 if (track_first
|| pass
)
176 /* the first file we look for is one specific to the
178 strip_extension(path
, sizeof(path
) - strlen(size_string
) - 4,
180 strcat(path
, size_string
);
181 strcat(path
, "." EXT
);
182 #ifdef USE_JPEG_COVER
183 pathlen
= strlen(path
);
185 found
= try_exts(path
, pathlen
);
189 if (!found
&& albumlen
> 0)
191 /* if it doesn't exist,
192 * we look for a file specific to the track's album name */
193 pathlen
= snprintf(path
, sizeof(path
),
194 "%s%s%s." EXT
, dir
, id3
->album
, size_string
);
195 fix_path_part(path
, dirlen
, albumlen
);
196 found
= try_exts(path
, pathlen
);
201 /* if it still doesn't exist, we look for a generic file */
202 pathlen
= snprintf(path
, sizeof(path
),
203 "%scover%s." EXT
, dir
, size_string
);
204 found
= try_exts(path
, pathlen
);
207 #ifdef USE_JPEG_COVER
208 if (!found
&& !*size_string
)
210 snprintf (path
, sizeof(path
), "%sfolder.jpg", dir
);
211 found
= file_exists(path
);
215 artist
= id3
->albumartist
!= NULL
? id3
->albumartist
: id3
->artist
;
217 if (!found
&& artist
&& id3
->album
)
219 /* look in the albumart subdir of .rockbox */
220 pathlen
= snprintf(path
, sizeof(path
),
221 ROCKBOX_DIR
"/albumart/%s-%s%s." EXT
,
225 fix_path_part(path
, strlen(ROCKBOX_DIR
"/albumart/"), MAX_PATH
);
226 found
= try_exts(path
, pathlen
);
231 /* if it still doesn't exist,
232 * we continue to search in the parent directory */
234 path
[dirlen
- 1] = 0;
235 strip_filename(dir
, sizeof(dir
), path
);
236 dirlen
= strlen(dir
);
239 /* only try parent if there is one */
242 if (!found
&& albumlen
> 0)
244 /* we look in the parent directory
245 * for a file specific to the track's album name */
246 pathlen
= snprintf(path
, sizeof(path
),
247 "%s%s%s." EXT
, dir
, id3
->album
, size_string
);
248 fix_path_part(path
, dirlen
, albumlen
);
249 found
= try_exts(path
, pathlen
);
254 /* if it still doesn't exist, we look in the parent directory
255 * for a generic file */
256 pathlen
= snprintf(path
, sizeof(path
),
257 "%scover%s." EXT
, dir
, size_string
);
258 found
= try_exts(path
, pathlen
);
268 strlcpy(buf
, path
, buflen
);
269 logf("Album art found: %s", path
);
274 /* Look for albumart bitmap in the same dir as the track and in its parent dir.
275 * Stores the found filename in the buf parameter.
276 * Returns true if a bitmap was found, false otherwise */
277 bool find_albumart(const struct mp3entry
*id3
, char *buf
, int buflen
,
284 logf("Looking for album art for %s", id3
->path
);
286 /* Write the size string, e.g. ".100x100". */
287 snprintf(size_string
, sizeof(size_string
), ".%dx%d",
288 dim
->width
, dim
->height
);
290 /* First we look for a bitmap of the right size */
291 if (search_albumart_files(id3
, size_string
, buf
, buflen
))
294 /* Then we look for generic bitmaps */
296 return search_albumart_files(id3
, size_string
, buf
, buflen
);
299 /* Draw the album art bitmap from the given handle ID onto the given WPS.
300 Call with clear = true to clear the bitmap instead of drawing it. */
301 void draw_album_art(struct gui_wps
*gwps
, int handle_id
, bool clear
)
303 if (!gwps
|| !gwps
->data
|| !gwps
->display
|| handle_id
< 0)
306 struct wps_data
*data
= gwps
->data
;
307 struct skin_albumart
*aa
= data
->albumart
;
313 if (bufgetdata(handle_id
, 0, (void *)&bmp
) <= 0)
318 short width
= bmp
->width
;
319 short height
= bmp
->height
;
323 /* Crop if the bitmap is too wide */
324 width
= MIN(bmp
->width
, aa
->width
);
327 if (aa
->xalign
& WPS_ALBUMART_ALIGN_RIGHT
)
328 x
+= aa
->width
- width
;
329 else if (aa
->xalign
& WPS_ALBUMART_ALIGN_CENTER
)
330 x
+= (aa
->width
- width
) / 2;
335 /* Crop if the bitmap is too high */
336 height
= MIN(bmp
->height
, aa
->height
);
339 if (aa
->yalign
& WPS_ALBUMART_ALIGN_BOTTOM
)
340 y
+= aa
->height
- height
;
341 else if (aa
->yalign
& WPS_ALBUMART_ALIGN_CENTER
)
342 y
+= (aa
->height
- height
) / 2;
347 /* Draw the bitmap */
348 gwps
->display
->bitmap_part((fb_data
*)bmp
->data
, 0, 0,
349 STRIDE(gwps
->display
->screen_type
,
350 bmp
->width
, bmp
->height
),
351 x
, y
, width
, height
);
352 #ifdef HAVE_LCD_INVERT
353 if (global_settings
.invert
) {
354 gwps
->display
->set_drawmode(DRMODE_COMPLEMENT
);
355 gwps
->display
->fillrect(x
, y
, width
, height
);
356 gwps
->display
->set_drawmode(DRMODE_SOLID
);
362 /* Clear the bitmap */
363 gwps
->display
->set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
364 gwps
->display
->fillrect(x
, y
, width
, height
);
365 gwps
->display
->set_drawmode(DRMODE_SOLID
);