1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
/*
* himdcli.c - list contents (tracks, holes), dump tracks and show diskid of a HiMD
*/
#include <stdio.h>
#include <stdlib.h>
#include <glib.h>
#include <locale.h>
#include <string.h>
#include <glib/gstdio.h>
#include "himd.h"
#include "sony_oma.h"
void usage(char * cmdname)
{
printf("Usage: %s <HiMD path> <command>, where <command> is either of:\n\n\
strings - dumps all strings found in the tracklist file\n\
tracks - lists all tracks on disc\n\
tracks verbose - lists details of all tracks on disc\n\
discid - reads the disc id of the inserted medium\n\
holes - lists all holes on disc\n\
mp3key <TRK> - show the MP3 encryption key for track <TRK>\n\
dumptrack <TRK> - dump track <TRK>\n\
dumpmp3 <TRK> - dump MP3 track <TRK>\n\
dumpnonmp3 <TRK> - dump non-MP3 track <TRK>\n\
writemp3 <FILE> - write mp3 to disc\n", cmdname);
}
static const char * hexdump(unsigned char * input, int len)
{
static char dumpspace[5][41];
static int dumpindex = 0;
int i;
if(len > 20) return "TOO LONG";
dumpindex %= 5;
for(i = 0;i < len;++i)
sprintf(dumpspace[dumpindex]+i*2,"%02x",input[i]);
return dumpspace[dumpindex++];
}
char * get_locale_str(struct himd * himd, int idx)
{
char * str, * outstr;
if(idx == 0)
return NULL;
str = himd_get_string_utf8(himd, idx, NULL, NULL);
if(!str)
return NULL;
outstr = g_locale_from_utf8(str,-1,NULL,NULL,NULL);
himd_free(str);
return outstr;
}
void himd_trackdump(struct himd * himd, int verbose)
{
int i;
struct himderrinfo status;
for(i = HIMD_FIRST_TRACK;i <= HIMD_LAST_TRACK;i++)
{
struct trackinfo t;
if(himd_get_track_info(himd, i, &t, NULL) >= 0)
{
char *title, *artist, *album;
title = get_locale_str(himd, t.title);
artist = get_locale_str(himd, t.artist);
album = get_locale_str(himd, t.album);
printf("%4d: %d:%02d %s %s:%s (%s %d)%s\n",
i, t.seconds/60, t.seconds % 60, himd_get_codec_name(&t),
artist ? artist : "Unknown artist",
title ? title : "Unknown title",
album ? album : "Unknown album", t.trackinalbum,
himd_track_uploadable(himd, &t) ? " [uploadable]":"");
g_free(title);
g_free(artist);
g_free(album);
if(verbose)
{
char rtime[30],stime[30],etime[30];
struct fraginfo f;
int fnum = t.firstfrag;
int blocks;
if((blocks = himd_track_blocks(himd, &t, &status)) < 0)
fprintf(stderr, "Can't get block count for Track %d: %s\n", i, status.statusmsg);
else
printf(" %5d Blocks of 16 KB each, %dkbps\n",
blocks, sony_codecinfo_kbps(&t.codec_info));
while(fnum != 0)
{
if(himd_get_fragment_info(himd, fnum, &f, &status) >= 0)
{
printf(" %3d@%05d .. %3d@%05d (%s)\n", f.firstframe, f.firstblock, f.lastframe, f.lastblock, hexdump(f.key, 8));
fnum = f.nextfrag;
}
else
{
printf(" ERROR reading fragment %d info: %s\n", fnum, status.statusmsg);
break;
}
}
printf(" Content ID: %s\n", hexdump(t.contentid, 20));
printf(" Key: %s (EKB %08x); MAC: %s\n", hexdump(t.key, 8), t.ekbnum, hexdump(t.mac, 8));
if(t.recordingtime.tm_mon != -1)
strftime(rtime,sizeof rtime, "%x %X", &t.recordingtime);
else
strcpy(rtime, "?");
if(t.licensestarttime.tm_mon != -1)
strftime(stime,sizeof stime, "%x %X", &t.licensestarttime);
else
strcpy(stime, "any time");
if(t.licenseendtime.tm_mon != -1)
strftime(etime,sizeof etime, "%x %X", &t.licenseendtime);
else
strcpy(etime, "any time");
printf(" Recorded: %s, licensed: %s-%s\n", rtime, stime, etime);
}
}
}
}
void himd_stringdump(struct himd * himd)
{
int i;
struct himderrinfo status;
for(i = 1;i < 4096;i++)
{
char * str;
int type;
if((str = himd_get_string_utf8(himd, i, &type, &status)) != NULL)
{
char * typestr;
char * outstr;
switch(type)
{
case STRING_TYPE_TITLE: typestr="Title"; break;
case STRING_TYPE_ARTIST: typestr="Artist"; break;
case STRING_TYPE_ALBUM: typestr="Album"; break;
case STRING_TYPE_GROUP: typestr="Group"; break;
default: typestr=""; break;
}
outstr = g_locale_from_utf8(str,-1,NULL,NULL,NULL);
printf("%4d: %-6s %s\n", i, typestr, outstr);
g_free(outstr);
himd_free(str);
}
else if(status.status != HIMD_ERROR_NOT_STRING_HEAD)
printf("%04d: ERROR %s\n", i, status.statusmsg);
}
}
void himd_dumpdiscid(struct himd * h)
{
int i;
struct himderrinfo status;
const unsigned char * discid = himd_get_discid(h, &status);
if(!discid)
{
fprintf(stderr,"Error obtaining disc ID: %s", status.statusmsg);
return;
}
printf("Disc ID: ");
for(i = 0;i < 16;++i)
printf("%02X",discid[i]);
puts("");
}
void himd_dumptrack(struct himd * himd, int trknum)
{
struct trackinfo t;
struct himd_blockstream str;
struct himderrinfo status;
FILE * strdumpf;
unsigned int firstframe, lastframe;
unsigned char block[16384];
unsigned char fragkey[8];
int blocknum = 0;
strdumpf = fopen("stream.dmp","wb");
if(!strdumpf)
{
perror("Opening stream.dmp");
return;
}
if(himd_get_track_info(himd, trknum, &t, &status) < 0)
{
fprintf(stderr, "Error obtaining track info: %s\n", status.statusmsg);
return;
}
if(himd_blockstream_open(himd, t.firstfrag, himd_trackinfo_framesperblock(&t), &str, &status) < 0)
{
fprintf(stderr, "Error opening stream %d: %s\n", t.firstfrag, status.statusmsg);
return;
}
while(himd_blockstream_read(&str, block, &firstframe, &lastframe, fragkey, &status) >= 0)
{
if(fwrite(block,16384,1,strdumpf) != 1)
{
perror("writing dumped stream");
goto clean;
}
printf("%d: %u..%u %s\n",
blocknum++,firstframe,lastframe,hexdump(fragkey,8));
}
if(status.status != HIMD_STATUS_AUDIO_EOF)
fprintf(stderr,"Error reading MP3 data: %s\n", status.statusmsg);
clean:
fclose(strdumpf);
himd_blockstream_close(&str);
}
void himd_dumpmp3(struct himd * himd, int trknum)
{
struct himd_mp3stream str;
struct himderrinfo status;
FILE * strdumpf;
unsigned int len;
const unsigned char * data;
strdumpf = fopen("stream.mp3","wb");
if(!strdumpf)
{
perror("Opening stream.mp3");
return;
}
if(himd_mp3stream_open(himd, trknum, &str, &status) < 0)
{
fprintf(stderr, "Error opening track %d: %s\n", trknum, status.statusmsg);
return;
}
while(himd_mp3stream_read_block(&str, &data, &len, NULL, &status) >= 0)
{
if(fwrite(data,len,1,strdumpf) != 1)
{
perror("writing dumped stream");
goto clean;
}
}
if(status.status != HIMD_STATUS_AUDIO_EOF)
fprintf(stderr,"Error reading MP3 data: %s\n", status.statusmsg);
clean:
fclose(strdumpf);
himd_mp3stream_close(&str);
}
int write_oma_header(FILE * f, const struct trackinfo * trkinfo)
{
char header[EA3_FORMAT_HEADER_SIZE];
make_ea3_format_header(header, &trkinfo->codec_info);
if(fwrite(header, sizeof header, 1, f) != 1)
{
perror("Writing OMA header");
return -1;
}
return 0;
}
/* For LPCM: creates headerless PCM
play with: play -t s2 -r 44100 -B -c2 stream.pcm
For ATRAC3/ATRAC3+: creates a .oma file (with ea3 tag header)
play with Sonic Stage (ffmpeg needs support of tagless files,
ffmpeg does not support ATRAC3+)
*/
void himd_dumpnonmp3(struct himd * himd, int trknum)
{
struct himd_nonmp3stream str;
struct himderrinfo status;
struct trackinfo trkinfo;
FILE * strdumpf;
const char * filename = "stream.pcm";
unsigned int len;
const unsigned char * data;
if(himd_get_track_info(himd, trknum, &trkinfo, &status) < 0)
{
fprintf(stderr, "Error obtaining track info: %s\n", status.statusmsg);
return;
}
if(!sony_codecinfo_is_lpcm(&trkinfo.codec_info))
filename = "stream.oma";
strdumpf = fopen(filename,"wb");
if(!strdumpf)
{
fprintf(stderr, "opening ");
perror(filename);
return;
}
if(himd_nonmp3stream_open(himd, trknum, &str, &status) < 0)
{
fprintf(stderr, "Error opening track %d: %s\n", trknum, status.statusmsg);
fclose(strdumpf);
return;
}
if(!sony_codecinfo_is_lpcm(&trkinfo.codec_info) &&
write_oma_header(strdumpf, &trkinfo) < 0)
return;
while(himd_nonmp3stream_read_block(&str, &data, &len, NULL, &status) >= 0)
{
if(fwrite(data,len,1,strdumpf) != 1)
{
perror("writing dumped stream");
goto clean;
}
}
if(status.status != HIMD_STATUS_AUDIO_EOF)
fprintf(stderr,"Error reading PCM data: %s\n", status.statusmsg);
clean:
fclose(strdumpf);
himd_nonmp3stream_close(&str);
}
void himd_dumpholes(struct himd * h)
{
int i;
struct himd_holelist holes;
struct himderrinfo status;
if(himd_find_holes(h, &holes, &status) < 0)
{
fprintf(stderr, "Collecting holes: %s\n", status.statusmsg);
return;
}
for(i = 0; i < holes.holecnt;i++)
printf("%d: %05u-%05u\n", i, holes.holes[i].firstblock, holes.holes[i].lastblock);
}
int main(int argc, char ** argv)
{
int idx;
struct himd h;
struct himderrinfo status;
setlocale(LC_ALL,"");
if (argc == 2 && (strcmp (argv[1], "help") == 0)) {
usage(argv[0]);
return 0;
}
if (argc < 2) {
printf("Please specify HiMD path and command to be sent. Use \"%s help\" to display a help.\n", argv[0]);
return 0;
}
if(himd_open(&h,argv[1], &status) < 0)
{
puts(status.statusmsg);
return 1;
}
if(argc == 2 || strcmp(argv[2],"tracks") == 0)
himd_trackdump(&h, argc > 3);
else if(strcmp(argv[2],"strings") == 0)
himd_stringdump(&h);
else if(strcmp(argv[2],"discid") == 0)
himd_dumpdiscid(&h);
else if(strcmp(argv[2],"holes") == 0)
himd_dumpholes(&h);
else if(strcmp(argv[2],"mp3key") == 0 && argc > 3)
{
mp3key k;
idx = 1;
sscanf(argv[3], "%d", &idx);
himd_obtain_mp3key(&h, idx, &k, NULL);
printf("Track key: %02x%02x%02x%02x\n", k[0], k[1], k[2], k[3]);
}
else if(strcmp(argv[2],"dumptrack") == 0 && argc > 3)
{
idx = 1;
sscanf(argv[3], "%d", &idx);
himd_dumptrack(&h, idx);
}
else if(strcmp(argv[2],"dumpmp3") == 0 && argc > 3)
{
idx = 1;
sscanf(argv[3], "%d", &idx);
himd_dumpmp3(&h, idx);
}
else if(strcmp(argv[2],"dumpnonmp3") == 0 && argc > 3)
{
idx = 1;
sscanf(argv[3], "%d", &idx);
himd_dumpnonmp3(&h, idx);
}
else if(strcmp(argv[2],"writemp3") == 0 && argc > 3)
{
if (himd_writemp3(&h, argv[3]) != 0) {
fputs("Could not write MP3, is libhimd compiled with libmad?\n", stderr);
}
}
himd_close(&h);
return 0;
}
|