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
|
#include <stdio.h>
#include <rawtext.h>
#include <swmgr.h>
#include <regex.h> // GNU
#include <listkey.h>
#include <iostream>
#include <pthread.h>
int cms_currentProgress;
class CSwordModuleSearch {
public:
CSwordModuleSearch();
~CSwordModuleSearch();
char* m_searchedText;
SWModule* m_module;
ListKey m_searchResult;
bool m_isSearching;
void startThread();
void search();
};
void* dummy(void* p) {
CSwordModuleSearch* moduleSearch = (CSwordModuleSearch*)p;
moduleSearch->search();
return NULL;
}
void percentUpdate(char percent, void* userData) {
cms_currentProgress = (int)percent;
std::cout << cms_currentProgress << "% ";
}
CSwordModuleSearch::CSwordModuleSearch() {
m_isSearching = false;
m_module = 0;
m_searchedText = 0;
cms_currentProgress = -1;
}
CSwordModuleSearch::~CSwordModuleSearch() {
}
void CSwordModuleSearch::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;
m_isSearching = true;
int i = pthread_create(thread, attr, &dummy, this);
std::cout << "Created the thread: " << i << std::endl;
std::cout.flush();
}
void CSwordModuleSearch::search() {
if (!m_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;
m_searchResult = m_module->Search(m_searchedText, -2, REG_ICASE, scope, 0, &percentUpdate);
if (!scope)
std::cout << "bad scope!" << std::endl;
m_isSearching = false;
}
int main(int argc, char **argv) {
SWMgr manager;
ModMap::iterator it;
int oldProgress = 0;
CSwordModuleSearch* moduleSearch = new CSwordModuleSearch();
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);
}
moduleSearch->m_searchedText = argv[2];
moduleSearch->m_module = (*it).second;
moduleSearch->startThread();
std::cout << "Start loop" << std::endl;
std::cout.flush();
while (true) {
if (!moduleSearch->m_isSearching)
break;
else
std::cout.flush();
};
std::cout << std::endl << "Number of found items: " << moduleSearch->m_searchResult.Count() << std::endl;
std::cout << "Finished program" << std::endl;
std::cout.flush();
delete moduleSearch;
exit(0);
}
|