1

我正在尝试索引只有一个 ID3 帧的 mp3 文件。使用 CLucene 和 TagLib。以下代码工作正常:

...
TagLib::MPEG::File file("/home/user/Depeche Mode - Personal Jesus.mp3");
if (file.ID3v2Tag()) {
    TagLib::ID3v2::FrameList frameList = file.ID3v2Tag()->frameList();
    lucene::document::Document *document = new lucene::document::Document;
    TagLib::ID3v2::FrameList::ConstIterator frame = frameList.begin();
    std::wstring field_name((*frame)->frameID().begin(), (*frame)->frameID().end());
    const wchar_t *fieldName = field_name.c_str();
    const wchar_t *fieldValue = (*frame)->toString().toWString().c_str();
    lucene::document::Field field(fieldName, fieldValue, true, true, true, false);
    document->add(field);
    writer->addDocument(document);
}
...

但这会使应用程序崩溃:

...
TagLib::MPEG::File file("/home/user/Depeche Mode - Personal Jesus.mp3");
if (file.ID3v2Tag()) {
    TagLib::ID3v2::FrameList frameList = file.ID3v2Tag()->frameList();
    lucene::document::Document *document = new lucene::document::Document;
    for (TagLib::ID3v2::FrameList::ConstIterator frame = frameList.begin(); frame != frameList.end(); frame++) {
            std::wstring field_name((*frame)->frameID().begin(), (*frame)->frameID().end());
            const wchar_t *fieldName = field_name.c_str();
            const wchar_t *fieldValue = (*frame)->toString().toWString().c_str();
            lucene::document::Field field(fieldName, fieldValue, true, true, true, false);
            document->add(field);
    }
    writer->addDocument(document);
}
...

这是为什么?!

4

2 回答 2

2

这是一个范围问题——当您调用 writer->addDocument 时,您添加到其中的字段已被释放。请改用此代码:

document->add(* new lucene::document::Field(fieldName, fieldValue, true, true, true, false));

您可能想查看 cl_demo 和 cl_test 以查看一些代码示例。

于 2010-07-01T15:06:11.700 回答
0

您不需要为每个要添加的标签构建一个新的 lucene::document::Field 吗?似乎您为此重用了相同的地址,这是有问题的。我想调试器可以告诉你更多。

于 2010-07-01T13:40:51.903 回答