/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ //#define LOG_NDEBUG 0 #define LOG_TAG "StagefrightMediaScanner" #include #include #include "include/StagefrightMetadataRetriever.h" // Sonivox includes #include // Ogg Vorbis includes #include "ivorbiscodec.h" #include "ivorbisfile.h" namespace android { StagefrightMediaScanner::StagefrightMediaScanner() : mRetriever(new StagefrightMetadataRetriever) { } StagefrightMediaScanner::~StagefrightMediaScanner() {} static bool FileHasAcceptableExtension(const char *extension) { static const char *kValidExtensions[] = { ".mp3", ".mp4", ".m4a", ".3gp", ".3gpp", ".3g2", ".3gpp2", ".mpeg", ".ogg", ".mid", ".smf", ".imy", ".wma", ".aac", ".wav", ".amr", ".midi", ".xmf", ".rtttl", ".rtx", ".ota" }; static const size_t kNumValidExtensions = sizeof(kValidExtensions) / sizeof(kValidExtensions[0]); for (size_t i = 0; i < kNumValidExtensions; ++i) { if (!strcasecmp(extension, kValidExtensions[i])) { return true; } } return false; } static status_t HandleMIDI( const char *filename, MediaScannerClient *client) { // get the library configuration and do sanity check const S_EAS_LIB_CONFIG* pLibConfig = EAS_Config(); if ((pLibConfig == NULL) || (LIB_VERSION != pLibConfig->libVersion)) { LOGE("EAS library/header mismatch\n"); return UNKNOWN_ERROR; } EAS_I32 temp; // spin up a new EAS engine EAS_DATA_HANDLE easData = NULL; EAS_HANDLE easHandle = NULL; EAS_RESULT result = EAS_Init(&easData); if (result == EAS_SUCCESS) { EAS_FILE file; file.path = filename; file.fd = 0; file.offset = 0; file.length = 0; result = EAS_OpenFile(easData, &file, &easHandle); } if (result == EAS_SUCCESS) { result = EAS_Prepare(easData, easHandle); } if (result == EAS_SUCCESS) { result = EAS_ParseMetaData(easData, easHandle, &temp); } if (easHandle) { EAS_CloseFile(easData, easHandle); } if (easData) { EAS_Shutdown(easData); } if (result != EAS_SUCCESS) { return UNKNOWN_ERROR; } char buffer[20]; sprintf(buffer, "%ld", temp); if (!client->addStringTag("duration", buffer)) return UNKNOWN_ERROR; return OK; } static status_t HandleOGG( const char *filename, MediaScannerClient *client) { int duration; FILE *file = fopen(filename,"r"); if (!file) return UNKNOWN_ERROR; OggVorbis_File vf; if (ov_open(file, &vf, NULL, 0) < 0) { return UNKNOWN_ERROR; } char **ptr=ov_comment(&vf,-1)->user_comments; while(*ptr){ char *val = strstr(*ptr, "="); if (val) { int keylen = val++ - *ptr; char key[keylen + 1]; strncpy(key, *ptr, keylen); key[keylen] = 0; if (!client->addStringTag(key, val)) goto failure; } ++ptr; } // Duration duration = ov_time_total(&vf, -1); if (duration > 0) { char buffer[20]; sprintf(buffer, "%d", duration); if (!client->addStringTag("duration", buffer)) goto failure; } ov_clear(&vf); // this also closes the FILE return OK; failure: ov_clear(&vf); // this also closes the FILE return UNKNOWN_ERROR; } status_t StagefrightMediaScanner::processFile( const char *path, const char *mimeType, MediaScannerClient &client) { client.setLocale(locale()); client.beginFile(); const char *extension = strrchr(path, '.'); if (!extension) { return UNKNOWN_ERROR; } if (!FileHasAcceptableExtension(extension)) { client.endFile(); return UNKNOWN_ERROR; } if (!strcasecmp(extension, ".mid") || !strcasecmp(extension, ".smf") || !strcasecmp(extension, ".imy") || !strcasecmp(extension, ".midi") || !strcasecmp(extension, ".xmf") || !strcasecmp(extension, ".rtttl") || !strcasecmp(extension, ".rtx") || !strcasecmp(extension, ".ota")) { return HandleMIDI(path, &client); } if (!strcasecmp(extension, ".ogg")) { return HandleOGG(path, &client); } if (mRetriever->setDataSource(path) == OK && mRetriever->setMode( METADATA_MODE_METADATA_RETRIEVAL_ONLY) == OK) { const char *value; if ((value = mRetriever->extractMetadata( METADATA_KEY_MIMETYPE)) != NULL) { client.setMimeType(value); } struct KeyMap { const char *tag; int key; }; static const KeyMap kKeyMap[] = { { "tracknumber", METADATA_KEY_CD_TRACK_NUMBER }, { "discnumber", METADATA_KEY_DISC_NUMBER }, { "album", METADATA_KEY_ALBUM }, { "artist", METADATA_KEY_ARTIST }, { "composer", METADATA_KEY_COMPOSER }, { "genre", METADATA_KEY_GENRE }, { "title", METADATA_KEY_TITLE }, { "year", METADATA_KEY_YEAR }, { "duration", METADATA_KEY_DURATION }, { "writer", METADATA_KEY_WRITER }, }; static const size_t kNumEntries = sizeof(kKeyMap) / sizeof(kKeyMap[0]); for (size_t i = 0; i < kNumEntries; ++i) { const char *value; if ((value = mRetriever->extractMetadata(kKeyMap[i].key)) != NULL) { client.addStringTag(kKeyMap[i].tag, value); } } } client.endFile(); return OK; } char *StagefrightMediaScanner::extractAlbumArt(int fd) { off_t size = lseek(fd, 0, SEEK_END); if (size < 0) { return NULL; } lseek(fd, 0, SEEK_SET); if (mRetriever->setDataSource(fd, 0, size) == OK && mRetriever->setMode( METADATA_MODE_FRAME_CAPTURE_ONLY) == OK) { MediaAlbumArt *art = mRetriever->extractAlbumArt(); if (art != NULL) { char *data = (char *)malloc(art->mSize + 4); *(int32_t *)data = art->mSize; memcpy(&data[4], art->mData, art->mSize); delete art; art = NULL; return data; } } return NULL; } } // namespace android