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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
/* This file is part of Strigi Desktop Search
*
* Copyright (C) 2002 Shane Wright <me@shanewright.co.uk>
* Copyright (C) 2002 Ryan Cumming <bodnar42@phalynx.dhs.org>
* Copyright (C) 2007 Flavio Castelli <flavio.castelli@gmail.com>
* Copyright (C) 2008 Jos van den Oever <jos@vandenoever.info>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <strigi/streameventanalyzer.h>
#include <strigi/analyzerplugin.h>
#include <stack>
#include <iostream>
#include "rdfnamespaces.h"
const std::string
videoClassName( NFO "Video"),
audioClassName( NFO "Audio");
namespace Strigi {
class RegisteredField;
class FieldRegister;
}
class RiffEventAnalyzerFactory;
class RiffEventAnalyzer : public Strigi::StreamEventAnalyzer {
private:
class RiffChunk {
public:
uint32_t type;
uint32_t size;
uint64_t start;
};
enum State {
StartOfChunkHeader, StartOfChunkList, ChunkBody
};
Strigi::AnalysisResult* analysisresult;
const RiffEventAnalyzerFactory* const factory;
char* left;
uint32_t leftSize;
uint32_t nLeft;
uint64_t offset;
bool valid;
State state;
std::stack<RiffChunk> chunks;
char chunkBuffer[56];
bool inAudioStream;
uint32_t bytes_per_second;
const char* name() const { return "RiffEventAnalyzer"; }
void startAnalysis(Strigi::AnalysisResult*);
void endAnalysis(bool complete);
void handleData(const char* data, uint32_t length);
bool isReadyWithStream();
bool processAvih();
bool processStrh();
bool processStrf();
bool processFmt();
void handleChunkData(uint64_t off, const char* data, uint32_t length);
void appendData(const char* data, uint32_t length);
public:
RiffEventAnalyzer(const RiffEventAnalyzerFactory*);
~RiffEventAnalyzer();
};
class RiffEventAnalyzerFactory
: public Strigi::StreamEventAnalyzerFactory {
friend class RiffEventAnalyzer;
public:
const Strigi::RegisteredField* shafield;
private:
const char* name() const {
return "RiffEventAnalyzer";
}
const Strigi::RegisteredField* typeField;
const Strigi::RegisteredField* lengthField;
const Strigi::RegisteredField* resolutionHeightField;
const Strigi::RegisteredField* resolutionWidthField;
const Strigi::RegisteredField* frameRateField;
const Strigi::RegisteredField* videoCodecField;
const Strigi::RegisteredField* audioCodecField;
const Strigi::RegisteredField* sampleSizeField;
const Strigi::RegisteredField* sampleRateField;
const Strigi::RegisteredField* channelsField;
void registerFields(Strigi::FieldRegister&);
Strigi::StreamEventAnalyzer* newInstance() const {
return new RiffEventAnalyzer(this);
}
};
#include <strigi/textutils.h>
#include <strigi/strigiconfig.h>
#include <strigi/analysisresult.h>
#include <strigi/fieldtypes.h>
#include <cstring>
#include <cstdlib>
using namespace std;
using namespace Strigi;
// AnalyzerFactory
RiffEventAnalyzer::RiffEventAnalyzer(const RiffEventAnalyzerFactory* f)
:factory(f) {
analysisresult = 0;
leftSize = 0;
left = 0;
}
RiffEventAnalyzer::~RiffEventAnalyzer() {
free(left);
}
bool
RiffEventAnalyzer::processAvih() {
AnalysisResult* a = analysisresult;
const char* c = chunkBuffer;
const RiffEventAnalyzerFactory* f = factory;
uint32_t avih_microsecperframe = readLittleEndianUInt32(c);
a->addValue(f->frameRateField, uint32_t(1000000/avih_microsecperframe));
uint32_t avih_totalframes = readLittleEndianUInt32(c+16);
uint32_t length = avih_microsecperframe/1000*avih_totalframes/1000;
a->addValue(f->lengthField, length);
a->addValue(f->resolutionWidthField, readLittleEndianUInt32(c+32));
a->addValue(f->resolutionHeightField, readLittleEndianUInt32(c+36));
return true;
}
bool
RiffEventAnalyzer::processStrh() {
AnalysisResult* a = analysisresult;
const char* c = chunkBuffer;
const RiffEventAnalyzerFactory* f = factory;
inAudioStream = false;
uint32_t type = readLittleEndianUInt32(c);
if (type == 0x73646976) { // vids
if (isalnum(c[4]) && isalnum(c[5]) && isalnum(c[6]) && isalnum(c[7])) {
a->addValue(f->videoCodecField, string(c+4, 4));
} else {
return false;
}
} else if (type == 0x73647561) { // auds
inAudioStream = true;
}
// Add the correct type
if( inAudioStream )
analysisresult->addValue(factory->typeField, audioClassName);
else
analysisresult->addValue(factory->typeField, videoClassName);
return true;
}
const char*
resolve_audio(uint16_t id) {
/*
this really wants to use some sort of KDE global
list. To avoid bloat for the moment it only does
a few common codecs
*/
static const char codec_unknown[] = "Unknown";
static const char codec_01[] = "Microsoft PCM";
static const char codec_02[] = "Microsoft ADPCM";
static const char codec_50[] = "MPEG";
static const char codec_55[] = "MP3";
static const char codec_92[] = "AC3";
static const char codec_160[] = "WMA1";
static const char codec_161[] = "WMA2";
static const char codec_162[] = "WMA3";
static const char codec_2000[] = "DVM";
switch (id) {
case 0x000 : return codec_unknown; break;
case 0x001 : return codec_01; break;
case 0x002 : return codec_02; break;
case 0x050 : return codec_50; break;
case 0x055 : return codec_55; break;
case 0x092 : return codec_92; break;
case 0x160 : return codec_160; break;
case 0x161 : return codec_161; break;
case 0x162 : return codec_162; break;
case 0x2000 : return codec_2000; break;
default : return codec_unknown;
}
return NULL;
}
bool
RiffEventAnalyzer::processStrf() {
if (inAudioStream) {
uint16_t audiotype = readLittleEndianUInt16(chunkBuffer);
const char* type = resolve_audio(audiotype);
if (type) {
analysisresult->addValue(factory->audioCodecField, type);
}
}
return true;
}
bool
RiffEventAnalyzer::processFmt() {
AnalysisResult* a = analysisresult;
const char* c = chunkBuffer;
const RiffEventAnalyzerFactory* f = factory;
a->addValue(f->channelsField, readLittleEndianUInt16(c+2));
a->addValue(f->sampleRateField, readLittleEndianUInt32(c+4));
bytes_per_second = readLittleEndianUInt32(c+8);
a->addValue(f->sampleSizeField, readLittleEndianUInt16(c+14));
a->addValue(factory->typeField, audioClassName);
return true;
}
void
RiffEventAnalyzer::startAnalysis(AnalysisResult* ar) {
analysisresult = ar;
valid = true;
nLeft = 0;
offset = 0;
bytes_per_second = 0;
state = StartOfChunkHeader;
while (!chunks.empty()) chunks.pop();
}
void
RiffEventAnalyzer::appendData(const char* data, uint32_t length) {
if (leftSize - nLeft < length) {
leftSize += length;
left = (char*)realloc(left, leftSize);
}
memcpy(left + nLeft, data, length);
nLeft += length;
}
uint32_t
getMaxForType(uint32_t type) {
switch (type) {
case 0x68697661: // avih
return 52;
case 0x68727473: // strh
return 40;
case 0x66727473: // strf
return 2; // atm we do not need more
case 0x20746D66: // 'fmt '
return 16;
};
return 0;
}
void
RiffEventAnalyzer::handleChunkData(uint64_t off, const char* data,
uint32_t length) {
const RiffChunk &chunk = chunks.top();
// short WAVE intermezzo ...
if (chunk.type == 0x61746164) { // data
if (bytes_per_second) {
float wav_seconds = chunk.size / (float)bytes_per_second;
analysisresult->addValue(factory->lengthField, wav_seconds);
}
bytes_per_second = 0;
}
uint32_t max = getMaxForType(chunk.type);
if (max <= 0) return;
uint32_t s = off - chunk.start;
if (s >= max) return;
// determine how many bytes to copy to the buffer
uint32_t l = min(max, length - s);
memmove(chunkBuffer + s, data, l);
if (max > s + l) { // not enough data yet
return;
}
if (chunk.type == 0x68697661) { // avih
processAvih();
} else if (chunk.type == 0x68727473) { // strh
processStrh();
} else if (chunk.type == 0x66727473) { //strf
processStrf();
} else if (chunk.type == 0x20746D66) { // 'fmt '
processFmt();
}
}
void
RiffEventAnalyzer::handleData(const char* data, uint32_t length) {
if (!valid) return;
// if data was left over from the last analysis, append the new data
// after it
if (nLeft > 0) {
// this can be more efficient, we really only need 8 bytes of buffer
// but that requires a bit more careful programming
appendData(data, length);
data = left;
length = nLeft;
}
uint32_t pos = 0;
while (length - pos > 0) {
if (state == StartOfChunkHeader) {
if (length - pos < 8) {
break;
}
RiffChunk r;
r.type = readLittleEndianUInt32(data + pos);
if (offset + pos == 0 && r.type != 0x46464952) { // RIFF
valid = false;
return;
}
r.size = readLittleEndianUInt32(data + pos + 4);
r.start = offset + pos + 8;
// add padding byte if needed
if (r.size % 2 == 1) {
r.size++;
}
if (r.size > 0 || r.type == 0x46464952) {
chunks.push(r);
// is this a RIFF or a LIST?
if (r.type == 0x46464952 || r.type == 0x5453494C) {
state = StartOfChunkList;
} else {
state = ChunkBody;
}
} else {
valid = false;
return;
}
pos += 8;
} else if (state == StartOfChunkList) {
if (length - pos < 4) {
break;
}
pos += 4;
state = StartOfChunkHeader;
} else {
handleChunkData(offset + pos, data + pos, length - pos);
uint32_t fp = chunks.top().start + chunks.top().size;
if (fp <= offset + length) {
pos = fp - offset;
do {
chunks.pop();
} while (chunks.size()
&& fp == chunks.top().start + chunks.top().size);
state = StartOfChunkHeader;
}
if (state != StartOfChunkHeader ||
pos > length ) {
pos = length;
}
}
}
if (data == left) {
// move the data that's left to the start
nLeft = length - pos;
memmove(left, left+pos, nLeft);
} else {
nLeft = 0;
}
// store the unprocessed data
appendData(data+pos, length-pos);
// advance the position
offset += pos;
}
void
RiffEventAnalyzer::endAnalysis(bool complete) {
analysisresult = 0;
}
bool
RiffEventAnalyzer::isReadyWithStream() {
return !valid;
}
void
RiffEventAnalyzerFactory::registerFields(Strigi::FieldRegister& reg) {
typeField = reg.typeField;
sampleSizeField = reg.registerField(
NFO"bitsPerSample");
sampleRateField = reg.registerField(
NFO"sampleRate");
channelsField = reg.registerField(
NFO"channels");
lengthField = reg.registerField(
NFO"duration");
resolutionHeightField = reg.registerField(
NFO"height");
resolutionWidthField = reg.registerField(
NFO"width");
frameRateField = reg.registerField(
NFO"frameRate");
videoCodecField = reg.registerField(
NFO"codec");
audioCodecField = reg.registerField(
NFO"codec");
addField(sampleSizeField);
addField(sampleRateField);
addField(channelsField);
addField(lengthField);
addField(resolutionHeightField);
addField(resolutionWidthField);
addField(frameRateField);
addField(videoCodecField);
addField(audioCodecField);
}
// Analyzer
//Factory
class Factory : public AnalyzerFactoryFactory {
public:
list<StreamEventAnalyzerFactory*>
streamEventAnalyzerFactories() const {
list<StreamEventAnalyzerFactory*> af;
af.push_back(new RiffEventAnalyzerFactory());
return af;
}
};
STRIGI_ANALYZER_FACTORY(Factory)
|