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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/******************************************************************************
* This example shows how to do a thread search
*
* $Id: threaded_search.cpp 2327 2009-04-22 11:42:33Z scribe $
*
* Copyright 1998-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 <stdio.h>
#include <rawtext.h>
#include <swmgr.h>
#include <regex.h> // GNU
#include <listkey.h>
#include <versekey.h>
#include <iostream>
#include <pthread.h>
#ifndef NO_SWORD_NAMESPACE
using sword::SWMgr;
using sword::ListKey;
using sword::SWModule;
using sword::VerseKey;
using sword::SWKey;
using sword::ModMap;
#endif
int cms_currentProgress;
class SearchThread {
public:
SearchThread();
~SearchThread();
char* searchedText;
SWModule* module;
ListKey searchResult;
bool isSearching;
void startThread();
void search();
};
void* dummy(void* p) {
SearchThread* searchThread = (SearchThread*)p;
searchThread->search();
return NULL;
}
void percentUpdate(char percent, void* userData) {
cms_currentProgress = (int)percent;
std::cout << cms_currentProgress << "% ";
}
SearchThread::SearchThread() {
isSearching = false;
module = 0;
searchedText = 0;
cms_currentProgress = -1;
}
SearchThread::~SearchThread() {
}
void SearchThread::startThread() {
std::cout << "startThread" << std::endl;
std::cout.flush();
pthread_attr_t* attr = new pthread_attr_t;
pthread_attr_init(attr);
pthread_attr_setdetachstate(attr, PTHREAD_CREATE_DETACHED);
pthread_t *thread= new pthread_t;
isSearching = true;
int i = pthread_create(thread, attr, &dummy, this);
std::cout << "Created the thread: " << i << std::endl;
std::cout.flush();
}
void SearchThread::search() {
if (!module) {
std::cout << "Return." << std::endl;
return;
}
ListKey scopeList = VerseKey().ParseVerseList("Luke;John;Revelation","", true);
for (int i=0; i < scopeList.Count(); ++i) {
std::cout << (const char*)*scopeList.GetElement(i) << std::endl;
}
SWKey* scope = &scopeList;
searchResult = module->Search(searchedText, -2, REG_ICASE, scope, 0, &percentUpdate);
if (!scope)
std::cout << "bad scope!" << std::endl;
isSearching = false;
}
int main(int argc, char **argv) {
SWMgr manager;
ModMap::iterator it;
SearchThread* searchThread = new SearchThread();
if (argc != 3) {
fprintf(stderr, "usage: %s <modname> <searched text>\n", argv[0]);
exit(-1);
}
it = manager.Modules.find(argv[1]);
if (it == manager.Modules.end()) {
fprintf(stderr, "Could not find module [%s]. Available modules:\n", argv[1]);
for (it = manager.Modules.begin(); it != manager.Modules.end(); it++) {
fprintf(stderr, "[%s]\t - %s\n", (*it).second->Name(), (*it).second->Description());
}
exit(-1);
}
searchThread->searchedText = argv[2];
searchThread->module = (*it).second;
searchThread->startThread();
std::cout << "Start loop" << std::endl;
std::cout.flush();
while (true) {
if (!searchThread->isSearching)
break;
else
std::cout.flush();
};
std::cout << std::endl << "Number of found items: " << searchThread->searchResult.Count() << std::endl;
std::cout << "Finished program" << std::endl;
std::cout.flush();
delete searchThread;
exit(0);
}
|