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
|
/******************************************************************************
*
* parsekey.cpp -
*
* $Id: parsekey.cpp 2833 2013-06-29 06:40:28Z chrislit $
*
* Copyright 1998-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 <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 > 8)) {
std::cerr << "usage: " << *argv << " <\"string to parse\"> [locale_name] [v11n] [context] [echo params 1|0] [test-in-set-verse 1|0] [intros 1|0]\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";
bool echo = (argc > 5) ? !strcmp(argv[5], "1") : false;
bool inSetTest = (argc > 6) ? !strcmp(argv[6], "1") : false;
bool intros = (argc > 7) ? !strcmp(argv[7], "1") : false;
DefaultVSKey.setIntros(intros);
SWLog::getSystemLog()->setLogLevel(SWLog::LOG_DEBUG);
DefaultVSKey.validateCurrentLocale();
DefaultVSKey = context;
ListKey verses = DefaultVSKey.parseVerseList(argv[1], DefaultVSKey, true);
if (echo) {
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 (inSetTest) {
verses.setText(context);
std::cout << "Verse is" << ((verses.popError()) ? " NOT" : "") << " in set.\n\n";
}
return 0;
}
|