Mercurial > audlegacy-plugins
view src/sid/xs_length.c @ 1339:83cbc6968a0b
Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
author | Calin Crisan ccrisan@gmail.com |
---|---|
date | Mon, 23 Jul 2007 21:43:17 +0300 |
parents | 6c3c7b841382 |
children | 22f1948c9c28 |
line wrap: on
line source
/* XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS) Get song length from SLDB for PSID/RSID files Programmed and designed by Matti 'ccr' Hamalainen <ccr@tnsp.org> (C) Copyright 1999-2007 Tecnic Software productions (TNSP) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "xs_length.h" #include "xs_support.h" #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> /* Free memory allocated for given SLDB node */ static void xs_sldb_node_free(t_xs_sldb_node *pNode) { if (pNode) { /* Nothing much to do here ... */ g_free(pNode->sLengths); g_free(pNode); } } /* Insert given node to db linked list */ static void xs_sldb_node_insert(t_xs_sldb *db, t_xs_sldb_node *pNode) { assert(db); if (db->pNodes) { /* The first node's pPrev points to last node */ LPREV = db->pNodes->pPrev; /* New node's prev = Previous last node */ db->pNodes->pPrev->pNext = pNode; /* Previous last node's next = New node */ db->pNodes->pPrev = pNode; /* New last node = New node */ LNEXT = NULL; /* But next is NULL! */ } else { db->pNodes = pNode; /* First node ... */ LPREV = pNode; /* ... it's also last */ LNEXT = NULL; /* But next is NULL! */ } } /* Parse a time-entry in SLDB format */ static gint xs_sldb_gettime(gchar *pcStr, size_t *piPos) { gint iResult, iTemp; /* Check if it starts with a digit */ if (isdigit(pcStr[*piPos])) { /* Get minutes-field */ iResult = 0; while (isdigit(pcStr[*piPos])) iResult = (iResult * 10) + (pcStr[(*piPos)++] - '0'); iResult *= 60; /* Check the field separator char */ if (pcStr[*piPos] == ':') { /* Get seconds-field */ (*piPos)++; iTemp = 0; while (isdigit(pcStr[*piPos])) { iTemp = (iTemp * 10) + (pcStr[(*piPos)++] - '0'); } iResult += iTemp; } else iResult = -2; } else iResult = -1; /* Ignore and skip the possible attributes */ while (pcStr[*piPos] && !isspace(pcStr[*piPos])) (*piPos)++; return iResult; } /* Parse one SLDB definition line, return SLDB node */ t_xs_sldb_node * xs_sldb_read_entry(gchar *inLine) { size_t linePos; gint i; gboolean iOK; t_xs_sldb_node *tmpNode; /* Allocate new node */ tmpNode = (t_xs_sldb_node *) g_malloc0(sizeof(t_xs_sldb_node)); if (!tmpNode) { xs_error(_("Error allocating new node. Fatal error.\n")); return NULL; } /* Get hash value */ linePos = 0; for (i = 0; i < XS_MD5HASH_LENGTH; i++, linePos += 2) { gint tmpu; sscanf(&inLine[linePos], "%2x", &tmpu); tmpNode->md5Hash[i] = tmpu; } /* Get playtimes */ if (inLine[linePos] != 0) { if (inLine[linePos] != '=') { xs_error(_("'=' expected on column #%d.\n"), linePos); xs_sldb_node_free(tmpNode); return NULL; } else { size_t tmpLen, savePos; /* First playtime is after '=' */ savePos = ++linePos; tmpLen = strlen(inLine); /* Get number of sub-tune lengths */ iOK = TRUE; while ((linePos < tmpLen) && iOK) { xs_findnext(inLine, &linePos); if (xs_sldb_gettime(inLine, &linePos) >= 0) tmpNode->nLengths++; else iOK = FALSE; } /* Allocate memory for lengths */ if (tmpNode->nLengths > 0) { tmpNode->sLengths = (gint *) g_malloc0(tmpNode->nLengths * sizeof(gint)); if (!tmpNode->sLengths) { xs_error(_("Could not allocate memory for node.\n")); xs_sldb_node_free(tmpNode); return NULL; } } else { xs_sldb_node_free(tmpNode); return NULL; } /* Read lengths in */ i = 0; linePos = savePos; iOK = TRUE; while ((linePos < tmpLen) && (i < tmpNode->nLengths) && iOK) { gint l; xs_findnext(inLine, &linePos); l = xs_sldb_gettime(inLine, &linePos); if (l >= 0) tmpNode->sLengths[i] = l; else iOK = FALSE; i++; } if (!iOK) { xs_sldb_node_free(tmpNode); return NULL; } else return tmpNode; } } return NULL; } /* Read database to memory */ gint xs_sldb_read(t_xs_sldb *db, const gchar *dbFilename) { FILE *inFile; gchar inLine[XS_BUF_SIZE]; size_t lineNum; t_xs_sldb_node *tmpNode; assert(db); /* Try to open the file */ if ((inFile = fopen(dbFilename, "ra")) == NULL) { xs_error(_("Could not open SongLengthDB '%s'\n"), dbFilename); return -1; } /* Read and parse the data */ lineNum = 0; while (fgets(inLine, XS_BUF_SIZE, inFile) != NULL) { size_t linePos; linePos = 0; lineNum++; xs_findnext(inLine, &linePos); /* Check if it is datafield */ if (isxdigit(inLine[linePos])) { /* Check the length of the hash */ gint hashLen; for (hashLen = 0; inLine[linePos] && isxdigit(inLine[linePos]); hashLen++, linePos++); if (hashLen != XS_MD5HASH_LENGTH_CH) { xs_error(_("Invalid MD5-hash in SongLengthDB file '%s' line #%d!\n"), dbFilename, lineNum); } else { /* Parse and add node to db */ if ((tmpNode = xs_sldb_read_entry(inLine)) != NULL) { xs_sldb_node_insert(db, tmpNode); } else { xs_error(_("Invalid entry in SongLengthDB file '%s' line #%d!\n"), dbFilename, lineNum); } } } else if ((inLine[linePos] != ';') && (inLine[linePos] != '[') && (inLine[linePos] != 0)) { xs_error(_("Invalid line in SongLengthDB file '%s' line #%d\n"), dbFilename, lineNum); } } /* Close the file */ fclose(inFile); return 0; } /* Compare two given MD5-hashes. * Return: 0 if equal * negative if testHash1 < testHash2 * positive if testHash1 > testHash2 */ static gint xs_sldb_cmphash(t_xs_md5hash testHash1, t_xs_md5hash testHash2) { gint i, d; /* Compute difference of hashes */ for (i = 0, d = 0; (i < XS_MD5HASH_LENGTH) && !d; i++) d = (testHash1[i] - testHash2[i]); return d; } /* Compare two nodes */ static gint xs_sldb_cmp(const void *pNode1, const void *pNode2) { /* We assume here that we never ever get NULL-pointers or similar */ return xs_sldb_cmphash( (*(t_xs_sldb_node **) pNode1)->md5Hash, (*(t_xs_sldb_node **) pNode2)->md5Hash); } /* (Re)create index */ gint xs_sldb_index(t_xs_sldb * db) { t_xs_sldb_node *pCurr; size_t i; assert(db); /* Free old index */ if (db->ppIndex) { g_free(db->ppIndex); db->ppIndex = NULL; } /* Get size of db */ pCurr = db->pNodes; db->n = 0; while (pCurr) { db->n++; pCurr = pCurr->pNext; } /* Check number of nodes */ if (db->n > 0) { /* Allocate memory for index-table */ db->ppIndex = (t_xs_sldb_node **) g_malloc(sizeof(t_xs_sldb_node *) * db->n); if (!db->ppIndex) return -1; /* Get node-pointers to table */ i = 0; pCurr = db->pNodes; while (pCurr && (i < db->n)) { db->ppIndex[i++] = pCurr; pCurr = pCurr->pNext; } /* Sort the indexes */ qsort(db->ppIndex, db->n, sizeof(t_xs_sldb_node *), xs_sldb_cmp); } return 0; } /* Free a given song-length database */ void xs_sldb_free(t_xs_sldb * db) { t_xs_sldb_node *pCurr, *pNext; if (!db) return; /* Free the memory allocated for nodes */ pCurr = db->pNodes; while (pCurr) { pNext = pCurr->pNext; xs_sldb_node_free(pCurr); pCurr = pNext; } db->pNodes = NULL; /* Free memory allocated for index */ if (db->ppIndex) { g_free(db->ppIndex); db->ppIndex = NULL; } /* Free structure */ db->n = 0; g_free(db); } /* Compute md5hash of given SID-file */ typedef struct { gchar magicID[4]; /* "PSID" / "RSID" magic identifier */ guint16 version, /* Version number */ dataOffset, /* Start of actual c64 data in file */ loadAddress, /* Loading address */ initAddress, /* Initialization address */ playAddress, /* Play one frame */ nSongs, /* Number of subsongs */ startSong; /* Default starting song */ guint32 speed; /* Speed */ gchar sidName[32]; /* Descriptive text-fields, ASCIIZ */ gchar sidAuthor[32]; gchar sidCopyright[32]; } t_xs_psidv1_header; typedef struct { guint16 flags; /* Flags */ guint8 startPage, pageLength; guint16 reserved; } t_xs_psidv2_header; static gint xs_get_sid_hash(const gchar *pcFilename, t_xs_md5hash hash) { t_xs_file *inFile; t_xs_md5state inState; t_xs_psidv1_header psidH; t_xs_psidv2_header psidH2; guint8 *songData; guint8 ib8[2], i8; gint iIndex, iRes; /* Try to open the file */ if ((inFile = xs_fopen(pcFilename, "rb")) == NULL) return -1; /* Read PSID header in */ xs_fread(psidH.magicID, sizeof(psidH.magicID), 1, inFile); if (strncmp(psidH.magicID, "PSID", 4) && strncmp(psidH.magicID, "RSID", 4)) { xs_fclose(inFile); xs_error(_("Not a PSID or RSID file '%s'\n"), pcFilename); return -2; } psidH.version = xs_fread_be16(inFile); psidH.dataOffset = xs_fread_be16(inFile); psidH.loadAddress = xs_fread_be16(inFile); psidH.initAddress = xs_fread_be16(inFile); psidH.playAddress = xs_fread_be16(inFile); psidH.nSongs = xs_fread_be16(inFile); psidH.startSong = xs_fread_be16(inFile); psidH.speed = xs_fread_be32(inFile); xs_fread(psidH.sidName, sizeof(gchar), sizeof(psidH.sidName), inFile); xs_fread(psidH.sidAuthor, sizeof(gchar), sizeof(psidH.sidAuthor), inFile); xs_fread(psidH.sidCopyright, sizeof(gchar), sizeof(psidH.sidCopyright), inFile); if (xs_feof(inFile) || xs_ferror(inFile)) { xs_fclose(inFile); xs_error(_("Error reading SID file header from '%s'\n"), pcFilename); return -4; } /* Check if we need to load PSIDv2NG header ... */ psidH2.flags = 0; /* Just silence a stupid gcc warning */ if (psidH.version == 2) { /* Yes, we need to */ psidH2.flags = xs_fread_be16(inFile); psidH2.startPage = xs_fgetc(inFile); psidH2.pageLength = xs_fgetc(inFile); psidH2.reserved = xs_fread_be16(inFile); } /* Allocate buffer */ songData = (guint8 *) g_malloc(XS_SIDBUF_SIZE * sizeof(guint8)); if (!songData) { xs_fclose(inFile); xs_error(_("Error allocating temp data buffer for file '%s'\n"), pcFilename); return -3; } /* Read data to buffer */ iRes = xs_fread(songData, sizeof(guint8), XS_SIDBUF_SIZE, inFile); xs_fclose(inFile); /* Initialize and start MD5-hash calculation */ xs_md5_init(&inState); if (psidH.loadAddress == 0) { /* Strip load address (2 first bytes) */ xs_md5_append(&inState, &songData[2], iRes - 2); } else { /* Append "as is" */ xs_md5_append(&inState, songData, iRes); } /* Free buffer */ g_free(songData); /* Append header data to hash */ #define XSADDHASH(QDATAB) { ib8[0] = (QDATAB & 0xff); ib8[1] = (QDATAB >> 8); xs_md5_append(&inState, (guint8 *) &ib8, sizeof(ib8)); } XSADDHASH(psidH.initAddress) XSADDHASH(psidH.playAddress) XSADDHASH(psidH.nSongs) #undef XSADDHASH /* Append song speed data to hash */ i8 = 0; for (iIndex = 0; (iIndex < psidH.nSongs) && (iIndex < 32); iIndex++) { i8 = (psidH.speed & (1 << iIndex)) ? 60 : 0; xs_md5_append(&inState, &i8, sizeof(i8)); } /* Rest of songs (more than 32) */ for (iIndex = 32; iIndex < psidH.nSongs; iIndex++) { xs_md5_append(&inState, &i8, sizeof(i8)); } /* PSIDv2NG specific */ if (psidH.version == 2) { /* SEE SIDPLAY HEADERS FOR INFO */ i8 = (psidH2.flags >> 2) & 3; if (i8 == 2) xs_md5_append(&inState, &i8, sizeof(i8)); } /* Calculate the hash */ xs_md5_finish(&inState, hash); return 0; } /* Get node from db index via binary search */ t_xs_sldb_node *xs_sldb_get(t_xs_sldb *db, const gchar *pcFilename) { t_xs_sldb_node keyItem, *key, **item; /* Check the database pointers */ if (!db || !db->pNodes || !db->ppIndex) return NULL; /* Get the hash and then look up from db */ if (xs_get_sid_hash(pcFilename, keyItem.md5Hash) == 0) { key = &keyItem; item = bsearch(&key, db->ppIndex, db->n, sizeof(db->ppIndex[0]), xs_sldb_cmp); if (item) return *item; else return NULL; } else return NULL; }