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
|
/*
* Copyright 2009 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 <iostream>
#include <versekey.h>
#include <localemgr.h>
#include <swlog.h>
#ifndef NO_SWORD_NAMESPACE
using namespace sword;
#endif
int main(int argc, char **argv) {
if ((argc < 2) || (argc > 7)) {
std::cerr << "usage: " << *argv << " <\"string to parse\"> [locale_name] [v11n] [context] [echo params 1|0] [test-in-set-verse]\n";
exit(-1);
}
if (argc > 2)
LocaleMgr::getSystemLocaleMgr()->setDefaultLocaleName(argv[2]);
VerseKey DefaultVSKey;
// DefaultVSKey.AutoNormalize(0);
if (argc > 3)
DefaultVSKey.setVersificationSystem(argv[3]);
const char *context = (argc > 4) ? argv[4] : "gen.1.1";
SWLog::getSystemLog()->setLogLevel(SWLog::LOG_DEBUG);
DefaultVSKey.validateCurrentLocale();
DefaultVSKey = context;
ListKey verses = DefaultVSKey.ParseVerseList(argv[1], DefaultVSKey, true);
if ((argc > 5) && (argv[5][0] == '1')) {
for (int i = 1; i < argc; i++) {
if (i > 1) std::cout << " ";
std::cout << argv[i];
}
std::cout << ": ";
}
std::cout << verses.getRangeText() << "\n";
/*
for (int i = 0; i < verses.Count(); i++) {
std::cout << verses.GetElement(i)->getRangeText() << "\n";
}
*/
if (argc > 6) {
verses.setText(argv[4]);
std::cout << "Verse is" << ((verses.Error()) ? " NOT" : "") << " in set.\n\n";
}
return 0;
}
|