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
|
/******************************************************************************
*
* striptest.cpp -
*
* $Id: striptest.cpp 2833 2013-06-29 06:40:28Z chrislit $
*
* Copyright 2009-2013 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
* P. O. Box 2528
* Tempe, AZ 85280-2528
*
* 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 version 2.
*
* 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.
*
*/
#include <swmgr.h>
#include <swmodule.h>
#include <iostream>
using namespace sword;
using std::cout;
using std::endl;
int main(int argc, char **argv) {
SWBuf modName = (argc > 1) ? argv[2] : "WLC";
SWBuf keyText = (argc > 2) ? argv[3] : "Gen.1.9";
SWBuf searchText = (argc > 3) ? argv[4] : "מתחת";
SWMgr library;
SWModule *book = library.getModule(modName);
StringList filters = library.getGlobalOptions();
for (StringList::iterator it = filters.begin(); it != filters.end(); ++it) {
// blindly turn off all filters. Some filters don't support "Off", but that's ok, we should just silently fail on those.
library.setGlobalOption(*it, "Off");
}
book->setKey(keyText.c_str());
SWBuf entryStripped = book->stripText();
cout << "Module: " << book->getDescription() << "\t Key: " << book->getKeyText() << "\n";
cout << "RawEntry:\n" << book->getRawEntry() << "\n";
cout << "StripText:\n" << entryStripped << "\n";
cout << "Search Target: " << searchText << "\n";
cout << "Search Target StripText: " << book->stripText(searchText) << "\n";
cout << "Found: " << ((strstr(entryStripped.c_str(), book->stripText(searchText))) ? "true":"false") << endl;
return 0;
}
|