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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : search_thread.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include <set>
#include "editor_config.h"
#include "search_thread.h"
#include "wx/event.h"
#include <wx/txtstrm.h>
#include <wx/wfstream.h>
#include "cppwordscanner.h"
#include <iostream>
#include <wx/tokenzr.h>
#include <wx/dir.h>
#include <wx/fontmap.h>
#include <wx/log.h>
#include "dirtraverser.h"
#include "macros.h"
#include "workspace.h"
#include "globals.h"
const wxEventType wxEVT_SEARCH_THREAD_MATCHFOUND = wxNewEventType();
const wxEventType wxEVT_SEARCH_THREAD_SEARCHEND = wxNewEventType();
const wxEventType wxEVT_SEARCH_THREAD_SEARCHCANCELED = wxNewEventType();
const wxEventType wxEVT_SEARCH_THREAD_SEARCHSTARTED = wxNewEventType();
#define SEND_ST_EVENT()\
if (owner) {\
wxPostEvent(owner, event);\
} else if (m_notifiedWindow ) {\
wxPostEvent(m_notifiedWindow, event);\
}\
wxThread::Sleep(1);
//----------------------------------------------------------------
// SearchData
//----------------------------------------------------------------
const wxString& SearchData::GetExtensions() const
{
return m_validExt;
}
//----------------------------------------------------------------
// SearchThread
//----------------------------------------------------------------
SearchThread::SearchThread()
: WorkerThread()
, m_wordChars(wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"))
, m_reExpr(wxT(""))
{
IndexWordChars();
}
SearchThread::~SearchThread()
{
}
void SearchThread::IndexWordChars()
{
m_wordCharsMap.clear();
for (size_t i=0; i<m_wordChars.Length(); i++) {
m_wordCharsMap[m_wordChars.GetChar(i)] = true;
}
}
void SearchThread::SetWordChars(const wxString &chars)
{
m_wordChars = chars;
IndexWordChars();
}
wxRegEx& SearchThread::GetRegex(const wxString &expr, bool matchCase)
{
if (m_reExpr == expr && matchCase == m_matchCase) {
return m_regex;
} else {
m_reExpr = expr;
m_matchCase = matchCase;
#ifndef __WXMAC__
int flags = wxRE_ADVANCED;
#else
int flags = wxRE_DEFAULT;
#endif
if ( !matchCase ) flags |= wxRE_ICASE;
m_regex.Compile(m_reExpr, flags);
}
return m_regex;
}
void SearchThread::PerformSearch(const SearchData &data)
{
Add( new SearchData(data) );
}
void SearchThread::ProcessRequest(ThreadRequest *req)
{
wxStopWatch sw;
m_summary = SearchSummary();
DoSearchFiles(req);
m_summary.SetElapsedTime(sw.Time());
SearchData *sd = (SearchData*)req;
// Send search end event
SendEvent(wxEVT_SEARCH_THREAD_SEARCHEND, sd->GetOwner());
}
void SearchThread::GetFiles(const SearchData *data, wxArrayString &files)
{
std::set<wxString> scannedFiles;
const wxArrayString& rootDirs = data->GetRootDirs();
for (size_t i = 0; i < rootDirs.Count(); ++i) {
wxArrayString someFiles;
const wxString& rootDir = rootDirs.Item(i);
// Check both translations and otherwise: the history may have contained either
if (rootDir == wxGetTranslation(SEARCH_IN_WORKSPACE) || rootDir == wxGetTranslation(SEARCH_IN_CURR_FILE_PROJECT)
|| rootDir == wxGetTranslation(SEARCH_IN_PROJECT) || rootDir == wxGetTranslation(SEARCH_IN_CURRENT_FILE)
|| rootDir == wxGetTranslation(SEARCH_IN_OPEN_FILES)
|| rootDir == SEARCH_IN_WORKSPACE || rootDir == SEARCH_IN_CURR_FILE_PROJECT
|| rootDir == SEARCH_IN_PROJECT || rootDir == SEARCH_IN_CURRENT_FILE || rootDir == SEARCH_IN_OPEN_FILES) {
someFiles = data->GetFiles();
// filter files which does not match the criteria
FilterFiles(someFiles, data);
} else if (wxFile::Exists(rootDir)) {
// search root is actually a file...
someFiles.push_back(rootDir);
} else if (wxDir::Exists(rootDir)) {
// make sure it's really a dir (not a fifo, etc.)
DirTraverser traverser(data->GetExtensions());
wxDir dir(rootDir);
dir.Traverse(traverser);
someFiles = traverser.GetFiles();
}
for (size_t j = 0; j < someFiles.Count(); ++j) {
if(scannedFiles.find(someFiles.Item(j)) == scannedFiles.end()) {
files.Add(someFiles.Item(j));
scannedFiles.insert(someFiles.Item(j));
}
}
}
}
void SearchThread::DoSearchFiles(ThreadRequest *req)
{
SearchData *data = static_cast<SearchData*>(req);
// Get all files
if ( data->GetRootDirs().IsEmpty() )
return;
if ( data->GetFindString().IsEmpty() )
return;
StopSearch(false);
wxArrayString fileList;
GetFiles(data, fileList);
wxStopWatch sw;
// Send startup message to main thread
if ( m_notifiedWindow || data->GetOwner() ) {
wxCommandEvent event(wxEVT_SEARCH_THREAD_SEARCHSTARTED, GetId());
event.SetClientData(new SearchData(*data));
//set the rquested output tab
event.SetInt(data->UseNewTab() ? 1 : 0);
if (data->GetOwner()) {
::wxPostEvent(data->GetOwner(), event);
} else {
// since we are in if ( m_notifiedWindow || data->GetOwner() ) block...
::wxPostEvent(m_notifiedWindow, event);
}
}
for (size_t i=0; i<fileList.Count(); i++) {
m_summary.SetNumFileScanned((int)i+1);
// give user chance to cancel the search ...
if ( TestStopSearch() ) {
// Send cancel event
SendEvent(wxEVT_SEARCH_THREAD_SEARCHCANCELED, data->GetOwner());
StopSearch(false);
break;
}
DoSearchFile(fileList.Item(i), data);
}
}
bool SearchThread::TestStopSearch()
{
bool stop = false;
{
wxCriticalSectionLocker locker(m_cs);
stop = m_stopSearch;
}
return stop;
}
void SearchThread::StopSearch(bool stop)
{
wxCriticalSectionLocker locker(m_cs);
m_stopSearch = stop;
}
void SearchThread::DoSearchFile(const wxString &fileName, const SearchData *data)
{
// Process single lines
int lineNumber = 1;
if (!wxFileName::FileExists(fileName)) {
return;
}
wxFFile thefile(fileName, wxT("rb"));
wxFileOffset size = thefile.Length();
wxString fileData;
fileData.Alloc(size);
// support for other encoding
wxFontEncoding enc = wxFontMapper::GetEncodingFromName(data->GetEncoding().c_str());
wxCSConv fontEncConv(enc);
thefile.ReadAll(&fileData, fontEncConv);
// take a wild guess and see if we really need to construct
// a TextStatesPtr object (it is quite an expensive operation)
bool shouldCreateStates (true);
if(data->IsMatchCase() && !data->IsRegularExpression()) {
shouldCreateStates = (fileData.Find(data->GetFindString()) != wxNOT_FOUND);
} else if(!data->IsMatchCase() && !data->IsRegularExpression()) {
// !data->IsMatchCase()
wxString tmpData = fileData;
shouldCreateStates = (tmpData.MakeLower().Find(data->GetFindString()) != wxNOT_FOUND);
}
wxStringTokenizer tkz(fileData, wxT("\n"), wxTOKEN_RET_EMPTY_ALL);
// Incase one of the C++ options is enabled,
// create a text states object
TextStatesPtr states(NULL);
if(data->HasCppOptions() && shouldCreateStates) {
CppWordScanner scanner("", fileData.mb_str().data(), 0);
states = scanner.states();
}
int lineOffset = 0;
if ( data->IsRegularExpression() ) {
// regular expression search
while (tkz.HasMoreTokens()) {
// Read the next line
wxString line = tkz.NextToken();
DoSearchLineRE(line, lineNumber, lineOffset, fileName, data, states);
lineOffset += line.Length() + 1;
lineNumber++;
}
} else {
// simple search
while (tkz.HasMoreTokens()) {
// Read the next line
wxString line = tkz.NextToken();
DoSearchLine(line, lineNumber, lineOffset, fileName, data, states);
lineOffset += line.Length() + 1;
lineNumber++;
}
}
if ( m_results.empty() == false )
SendEvent(wxEVT_SEARCH_THREAD_MATCHFOUND, data->GetOwner());
}
void SearchThread::DoSearchLineRE(const wxString &line, const int lineNum, const int lineOffset, const wxString &fileName, const SearchData *data, TextStatesPtr statesPtr)
{
wxRegEx &re = GetRegex(data->GetFindString(), data->IsMatchCase());
size_t col = 0;
int iCorrectedCol = 0;
int iCorrectedLen = 0;
wxString modLine = line;
if ( re.IsValid() ) {
while ( re.Matches(modLine)) {
size_t start, len;
re.GetMatch(&start, &len);
col += start;
// Notify our match
// correct search Pos and Length owing to non plain ASCII multibyte characters
iCorrectedCol = clUTF8Length(line.c_str(), col);
iCorrectedLen = clUTF8Length(line.c_str(), col+len) - iCorrectedCol;
SearchResult result;
result.SetPosition(lineOffset + col);
result.SetColumnInChars((int)col);
result.SetColumn(iCorrectedCol);
result.SetLineNumber(lineNum);
result.SetPattern(line);
result.SetFileName(fileName);
result.SetLenInChars((int)len);
result.SetLen(iCorrectedLen);
result.SetFlags(data->m_flags);
result.SetFindWhat(data->GetFindString());
// Make sure our match is not on a comment
int position(wxNOT_FOUND);
bool canAdd(true);
if(statesPtr) {
position = statesPtr->LineToPos(lineNum-1);
position += iCorrectedCol;
}
if(statesPtr && position != wxNOT_FOUND && data->GetSkipComments()) {
if(statesPtr->states.size() > (size_t)position) {
short state = statesPtr->states.at(position).state;
if(state == CppWordScanner::STATE_CPP_COMMENT || state == CppWordScanner::STATE_C_COMMENT) {
canAdd = false;
}
}
}
if(statesPtr && position != wxNOT_FOUND && data->GetSkipStrings()) {
if(statesPtr->states.size() > (size_t)position) {
short state = statesPtr->states.at(position).state;
if(state == CppWordScanner::STATE_DQ_STRING || state == CppWordScanner::STATE_SINGLE_STRING) {
canAdd = false;
}
}
}
result.SetMatchState(CppWordScanner::STATE_NORMAL);
if(canAdd && statesPtr && position != wxNOT_FOUND && data->GetColourComments()) {
// set the match state
if(statesPtr->states.size() > (size_t)position) {
short state = statesPtr->states.at(position).state;
if(state == CppWordScanner::STATE_C_COMMENT || state == CppWordScanner::STATE_CPP_COMMENT) {
result.SetMatchState(state);
}
}
}
if(canAdd) {
m_results.push_back(result);
m_summary.SetNumMatchesFound(m_summary.GetNumMatchesFound() + 1);
}
col += len;
// adjust the line
if (line.Length() - col <= 0)
break;
modLine = modLine.Right(line.Length() - col);
}
}
}
void SearchThread::DoSearchLine(const wxString &line, const int lineNum, const int lineOffset, const wxString &fileName, const SearchData *data, TextStatesPtr statesPtr)
{
wxString findString = data->GetFindString();
wxString modLine = line;
if ( !data->IsMatchCase() ) {
modLine.MakeLower();
findString.MakeLower();
}
int pos = 0;
int col = 0;
int iCorrectedCol = 0;
int iCorrectedLen = 0;
while ( pos != wxNOT_FOUND ) {
pos = modLine.Find(findString);
if (pos != wxNOT_FOUND) {
col += pos;
// we have a match
if ( data->IsMatchWholeWord() ) {
// make sure that the word before is not in the wordChars map
if ((pos > 0) && (m_wordCharsMap.find(modLine.GetChar(pos-1)) != m_wordCharsMap.end()) ) {
if( !AdjustLine(modLine, pos, findString) ) {
break;
} else {
col += (int) findString.Length();
continue;
}
}
// if we have more characters to the right, make sure that the first char does not match any
// in the wordCharsMap
if (pos + findString.Length() <= modLine.Length()) {
wxChar nextCh = modLine.GetChar(pos+findString.Length());
if (m_wordCharsMap.find(nextCh) != m_wordCharsMap.end()) {
if( !AdjustLine(modLine, pos, findString) ) {
break;
} else {
col += (int) findString.Length();
continue;
}
}
}
}
// Notify our match
// correct search Pos and Length owing to non plain ASCII multibyte characters
iCorrectedCol = clUTF8Length(line.c_str(), col);
iCorrectedLen = clUTF8Length(findString.c_str(), findString.Length());
SearchResult result;
result.SetPosition(lineOffset + col);
result.SetColumnInChars(col);
result.SetColumn(iCorrectedCol);
result.SetLineNumber(lineNum);
result.SetPattern(line);
result.SetFileName(fileName);
result.SetLenInChars((int)findString.Length());
result.SetLen(iCorrectedLen);
result.SetFindWhat(data->GetFindString());
result.SetFlags(data->m_flags);
int position(wxNOT_FOUND);
bool canAdd(true);
if(statesPtr) {
position = statesPtr->LineToPos(lineNum-1);
position += iCorrectedCol;
}
// Make sure our match is not on a comment
if(statesPtr && position != wxNOT_FOUND && data->GetSkipComments()) {
if(statesPtr->states.size() > (size_t)position) {
short state = statesPtr->states.at(position).state;
if(state == CppWordScanner::STATE_CPP_COMMENT || state == CppWordScanner::STATE_C_COMMENT) {
canAdd = false;
}
}
}
if(statesPtr && position != wxNOT_FOUND && data->GetSkipStrings()) {
if(statesPtr->states.size() > (size_t)position) {
short state = statesPtr->states.at(position).state;
if(state == CppWordScanner::STATE_DQ_STRING || state == CppWordScanner::STATE_SINGLE_STRING) {
canAdd = false;
}
}
}
result.SetMatchState(CppWordScanner::STATE_NORMAL);
if(canAdd && statesPtr && position != wxNOT_FOUND && data->GetColourComments()) {
// set the match state
if(statesPtr->states.size() > (size_t)position) {
short state = statesPtr->states.at(position).state;
if(state == CppWordScanner::STATE_C_COMMENT || state == CppWordScanner::STATE_CPP_COMMENT) {
result.SetMatchState(state);
}
}
}
if(canAdd) {
m_results.push_back(result);
m_summary.SetNumMatchesFound(m_summary.GetNumMatchesFound() + 1);
}
if ( !AdjustLine(modLine, pos, findString) ) {
break;
}
col += (int)findString.Length();
}
}
}
bool SearchThread::AdjustLine(wxString &line, int &pos, wxString &findString)
{
// adjust the current line
if ( line.Length() - (pos + findString.Length()) >= findString.Length()) {
line = line.Right(line.Length() - (pos + findString.Length()));
pos += (int)findString.Length();
return true;
} else {
return false;
}
}
void SearchThread::SendEvent(wxEventType type, wxEvtHandler *owner)
{
if ( !m_notifiedWindow && !owner)
return;
static int counter(0);
wxCommandEvent event(type, GetId());
if (type == wxEVT_SEARCH_THREAD_MATCHFOUND && counter == 10) {
// match found and we scanned 10 files
counter = 0;
event.SetClientData( new SearchResultList(m_results) );
m_results.clear();
SEND_ST_EVENT();
} else if(type == wxEVT_SEARCH_THREAD_MATCHFOUND) {
// a match event, but we did not meet the minimum number of files
counter++;
wxThread::Sleep(10);
} else if (type == wxEVT_SEARCH_THREAD_SEARCHEND) {
// search eneded, if we got any matches "buffed" send them before the
// the summary event
if(m_results.empty() == false) {
wxCommandEvent evt(wxEVT_SEARCH_THREAD_MATCHFOUND, GetId());
evt.SetClientData( new SearchResultList(m_results) );
m_results.clear();
counter = 0;
if (owner) {
wxPostEvent(owner, evt);
} else if (m_notifiedWindow ) {
wxPostEvent(m_notifiedWindow, evt);
}
}
// Now send the summary event
event.SetClientData( new SearchSummary(m_summary) );
SEND_ST_EVENT();
} else if (type == wxEVT_SEARCH_THREAD_SEARCHCANCELED) {
// search cancelled, we dont care about any matches which haven't
// been reported yet
event.SetClientData(new wxString(wxT("Search cancelled by user")));
m_results.clear();
counter = 0;
SEND_ST_EVENT();
}
}
void SearchThread::FilterFiles(wxArrayString& files, const SearchData* data)
{
std::map<wxString, bool> spec;
wxString exts = data->GetExtensions();
if (exts.Trim().Trim(false) == wxT("*.*") || exts.Trim().Trim(false) == wxT("*")) {
spec.clear();
} else {
wxStringTokenizer tok(exts, wxT(";"));
while ( tok.HasMoreTokens() ) {
std::pair<wxString, bool> val;
val.first = tok.GetNextToken().AfterLast(wxT('*')).c_str();
val.first = val.first.AfterLast(wxT('.')).MakeLower().c_str();
val.second = true;
spec.insert( val );
}
}
std::set<wxString> uniqueFileList;
for (size_t i=0; i<files.GetCount(); i++) {
uniqueFileList.insert(files.Item(i));
}
files.Clear();
// remove duplicate files from the file array
std::set<wxString>::iterator iter = uniqueFileList.begin();
for (; iter != uniqueFileList.end(); iter++) {
files.Add(*iter);
}
// if there is no spec, we are done here
if (spec.empty()) {
return;
}
// loop over the files and compare against the list of spec
wxArrayString f = files;
files.Clear();
// filter files by extension
for (size_t i=0; i<f.GetCount(); i++) {
wxString ext = f.Item(i).AfterLast(wxT('.'));
if (ext.empty()) {
// add extensionless files (first checking for duplicates)
files.Add(f.Item(i));
} else if (spec.find(ext.MakeLower()) != spec.end()) {
files.Add(f.Item(i));
}
}
}
static SearchThread* gs_SearchThread = NULL;
void SearchThreadST::Free()
{
if(gs_SearchThread) {
delete gs_SearchThread;
}
gs_SearchThread = NULL;
}
SearchThread* SearchThreadST::Get()
{
if(gs_SearchThread == NULL)
gs_SearchThread = new SearchThread;
return gs_SearchThread;
}
|