diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libbible.cc | 31 | ||||
-rw-r--r-- | src/lib/libbible.h | 11 |
2 files changed, 36 insertions, 6 deletions
diff --git a/src/lib/libbible.cc b/src/lib/libbible.cc index c7a4c61..c6850f7 100644 --- a/src/lib/libbible.cc +++ b/src/lib/libbible.cc @@ -12,8 +12,12 @@ using namespace std; SWMgr library(new MarkupFilterMgr(FMT_XHTML)); OSISFootnotes filter; -vector<string> getBooks(SWModule *target) { +vector<string> getBooksSWModule(SWModule *target) { vector<string> books; + if(target == nullptr) { + // Module doesn't exist + return books; + } VerseKey *key = (VerseKey *) target->getKey(); for(char t = 1; t <= key->getTestamentMax(); t++) { key->setTestament(t); @@ -26,9 +30,9 @@ vector<string> getBooks(SWModule *target) { } // Another issue (maybe bug?) Some translations are NT only, // but still report OT books/chapters. - if(string(target->renderText()).empty()) { - continue; - } + //if(string(target->renderText()).empty()) { + // continue; + //} books.push_back(key->getBookName()); } } @@ -42,11 +46,26 @@ map<string, vector<string>> libbible::getModules() { for (it = library.getModules().begin(); it != library.getModules().end(); it++) { string modName = (*it).second->getName(); SWModule *target = library.getModule(modName.c_str()); - mods[modName] = getBooks(target); + mods[modName] = getBooksSWModule(target); } return mods; } +vector<string> libbible::getModuleNames() { + library.load(); + vector<string> mods; + ModMap::iterator it; + for (it = library.getModules().begin(); it != library.getModules().end(); it++) { + mods.push_back((*it).second->getName()); + } + return mods; +} + +vector<string> libbible::getBooks(string modName) { + library.load(); + return getBooksSWModule(library.getModule(modName.c_str())); +} + vector<libbible::passage> libbible::getPassages(string modName, string book) { vector<libbible::passage> passages; SWModule *target = library.getModule(modName.c_str()); @@ -91,7 +110,7 @@ libbible::passage libbible::getPassage(string modName, string reference) { // Bad input return pass; } - vector<string> validBooks = getBooks(target); + vector<string> validBooks = getBooksSWModule(target); //printf("Hey, I'm inferring missing parts!\n"); // Let's use the target to help us target->setKey(reference.c_str()); diff --git a/src/lib/libbible.h b/src/lib/libbible.h index f77dc8c..fda4d20 100644 --- a/src/lib/libbible.h +++ b/src/lib/libbible.h @@ -27,6 +27,17 @@ namespace libbible { * @return Map of modName to supported books */ std::map<std::string, std::vector<std::string>> getModules(void); + + /* + * @return List of module names + */ + std::vector<std::string> getModuleNames(void); + + /* + * @param modName the for which to get the books + * @return Vector of books in the module + */ + std::vector<std::string> getBooks(std::string modName); /* * @return Vector of valid single full-chapter passages for a book |