ref: 3ecd4002c0b2242d71d0af98e773c1ba5b9f97db
dir: /id3.c/
#include <u.h> #include <libc.h> #include <thread.h> #include <draw.h> #include "dat.h" #include "fncs.h" /* If we can't read the tag, at least default to file names */ void fillnotag(ID3v1 *id, int fd) { char buf[512]; char *slash, *dot; fd2path(fd, buf, 512); slash = strrchr(buf, '/'); dot = strrchr(buf, '.'); *dot = '\0'; id->title = runesmprint("%s", slash+1); } ID3v1* readid3(int fd) { Dir *d; ID3v1 *id; char buf[128]; char fieldbuf[31]; int length; d = dirfstat(fd); if(d == nil) return nil; length = d->length; free(d); if(pread(fd, buf, 128, length-128) != 128) return nil; id = emalloc(sizeof(ID3v1)); if(memcmp(buf, "TAG", 3) != 0){ fillnotag(id, fd); return id; } memcpy(fieldbuf, buf+3, 30); fieldbuf[30] = '\0'; id->title = emalloc(sizeof(Rune) * 31); runesprint(id->title, "%s", fieldbuf); memcpy(fieldbuf, buf+33, 30); id->artist = emalloc(sizeof(Rune) * 31); runesprint(id->artist, "%s", fieldbuf); memcpy(fieldbuf, buf+63, 30); id->album = emalloc(sizeof(Rune) * 31); runesprint(id->album, "%s", fieldbuf); memcpy(fieldbuf, buf+93, 4); fieldbuf[4] = '\0'; id->year = atoi(fieldbuf); memcpy(fieldbuf, buf+97, 30); fieldbuf[30] = '\0'; id->comment = emalloc(sizeof(Rune) * 31); runesprint(id->comment, "%s", fieldbuf); id->genre = buf[127]; return id; } void destroyid3(ID3v1 *id) { free(id->title); free(id->artist); free(id->album); free(id->comment); free(id); }