46 |
|
// |
47 |
|
// Douglas Thrift |
48 |
|
// |
49 |
< |
// Search.cpp |
49 |
> |
// $Id: Search.cpp,v 1.20 2003/07/17 04:59:49 douglas Exp $ |
50 |
|
|
51 |
|
#include "Search.h" |
52 |
|
#include "Indexer.h" |
57 |
|
#include <sys/utsname.h> |
58 |
|
#else |
59 |
|
#include <windows.h> |
60 |
< |
#endif // _WIN32 |
60 |
> |
#endif |
61 |
|
|
62 |
|
string program; |
63 |
|
string programName = "Douglas Thrift's Search Engine"; |
64 |
< |
string programVersion = "1.1rc2"; |
64 |
> |
string programVersion = "1.2alpha1"; |
65 |
|
bool debug = false; |
66 |
|
|
67 |
|
int main(int argc, char* argv[]) |
227 |
|
else if (arg == "-D") |
228 |
|
{ |
229 |
|
debug = true; |
230 |
+ |
cerr.setf(ios_base::boolalpha); |
231 |
|
} |
232 |
|
else |
233 |
|
{ |
387 |
|
|
388 |
|
void usage() |
389 |
|
{ |
390 |
+ |
#ifdef _WIN32 |
391 |
+ |
OSVERSIONINFO* computer = new OSVERSIONINFO; |
392 |
+ |
computer->dwOSVersionInfoSize = sizeof(OSVERSIONINFO); |
393 |
+ |
GetVersionEx(computer); |
394 |
+ |
|
395 |
+ |
string program = ::program; |
396 |
+ |
if (computer->dwPlatformId != VER_PLATFORM_WIN32_NT) |
397 |
+ |
{ |
398 |
+ |
program = "Search"; |
399 |
+ |
} |
400 |
+ |
|
401 |
+ |
delete computer; |
402 |
+ |
#endif // _WIN32 |
403 |
+ |
|
404 |
|
string tab(8 + program.length(), ' '); |
405 |
|
|
406 |
|
cout << "Usage: " << program << " [index ...] [-P page] [-h header] [-b bo" |
438 |
|
<< "\n" |
439 |
|
<< " This product includes software developed by Douglas Thrift\n" |
440 |
|
<< " (http://computers.douglasthrift.net/searchengine/).\n"; |
441 |
+ |
#ifdef _OpenSSL_ |
442 |
+ |
cout << "\n" << openssl() << "\n"; |
443 |
+ |
#endif |
444 |
|
} |
445 |
|
|
446 |
|
void license() |