1 /* 2 * Copyright (C) 2009, 2010, 2011, 2013, 2014, 2015 Nicolas Bonnefon 3 * and other contributors 4 * 5 * This file is part of glogg. 6 * 7 * glogg is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * glogg is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with glogg. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 21 #ifndef CRAWLERWIDGET_H 22 #define CRAWLERWIDGET_H 23 24 #include <QSplitter> 25 #include <QComboBox> 26 #include <QPushButton> 27 #include <QCheckBox> 28 #include <QToolButton> 29 #include <QVBoxLayout> 30 #include <QHBoxLayout> 31 #include <QLabel> 32 33 #include "logmainview.h" 34 #include "filteredview.h" 35 #include "data/logdata.h" 36 #include "data/logfiltereddata.h" 37 #include "viewinterface.h" 38 #include "signalmux.h" 39 #include "overview.h" 40 #include "loadingstatus.h" 41 42 class InfoLine; 43 class QuickFindPattern; 44 class SavedSearches; 45 class QStandardItemModel; 46 class OverviewWidget; 47 48 // Implements the central widget of the application. 49 // It includes both windows, the search line, the info 50 // lines and various buttons. 51 class CrawlerWidget : public QSplitter, 52 public QuickFindMuxSelectorInterface, public ViewInterface, 53 public MuxableDocumentInterface 54 { 55 Q_OBJECT 56 57 public: 58 CrawlerWidget( QWidget *parent=0 ); 59 60 // Get the line number of the first line displayed. 61 int getTopLine() const; 62 // Get the selected text as a string (from the main window) 63 QString getSelectedText() const; 64 65 // Display the QFB at the bottom, remembering where the focus was 66 void displayQuickFindBar( QuickFindMux::QFDirection direction ); 67 68 // Instructs the widget to select all the text in the window the user 69 // is interacting with 70 void selectAll(); 71 72 enum Encoding { 73 ENCODING_AUTO = 0, 74 ENCODING_ISO_8859_1, 75 ENCODING_UTF8, 76 ENCODING_MAX, 77 }; 78 79 Encoding encodingSetting() const; 80 81 // Returns whether follow is enabled in this crawler 82 bool isFollowEnabled() const; 83 84 // Get the text description of the encoding effectively used, 85 // suitable to display to the user. 86 QString encodingText() const; 87 88 public slots: 89 // Stop the asynchoronous loading of the file if one is in progress 90 // The file is identified by the view attached to it. 91 void stopLoading(); 92 // Reload the displayed file 93 void reload(); 94 // Set the encoding 95 void setEncoding( Encoding encoding ); 96 97 protected: 98 // Implementation of the ViewInterface functions 99 virtual void doSetData( 100 std::shared_ptr<LogData> log_data, 101 std::shared_ptr<LogFilteredData> filtered_data ); 102 virtual void doSetQuickFindPattern( 103 std::shared_ptr<QuickFindPattern> qfp ); 104 virtual void doSetSavedSearches( 105 std::shared_ptr<SavedSearches> saved_searches ); 106 virtual void doSetViewContext( const char* view_context ); 107 virtual std::shared_ptr<const ViewContextInterface> 108 doGetViewContext( void ) const; 109 110 // Implementation of the mux selector interface 111 // (for dispatching QuickFind to the right widget) 112 virtual SearchableWidgetInterface* doGetActiveSearchable() const; 113 virtual std::vector<QObject*> doGetAllSearchables() const; 114 115 // Implementation of the MuxableDocumentInterface 116 virtual void doSendAllStateSignals(); 117 118 signals: 119 // Sent to signal the client load has progressed, 120 // passing the completion percentage. 121 void loadingProgressed( int progress ); 122 // Sent to the client when the loading has finished 123 // weither succesfull or not. 124 void loadingFinished( LoadingStatus status ); 125 // Sent when follow mode is enabled/disabled 126 void followSet( bool checked ); 127 // Sent up to the MainWindow to enable/disable the follow mode 128 void followModeChanged( bool follow ); 129 // Sent up when the current line number is updated 130 void updateLineNumber( int line ); 131 132 // "auto-refresh" check has been changed 133 void searchRefreshChanged( int state ); 134 // "ignore case" check has been changed 135 void ignoreCaseChanged( int state ); 136 137 // Sent when the data status (whether new not seen data are 138 // available) has changed 139 void dataStatusChanged( DataStatus status ); 140 141 private slots: 142 // Instructs the widget to start a search using the current search line. 143 void startNewSearch(); 144 // Stop the currently ongoing search (if one exists) 145 void stopSearch(); 146 // Instructs the widget to reconfigure itself because Config() has changed. 147 void applyConfiguration(); 148 // QuickFind is being entered, save the focus for incremental qf. 149 void enteringQuickFind(); 150 // QuickFind is being closed. 151 void exitingQuickFind(); 152 // Called when new data must be displayed in the filtered window. 153 void updateFilteredView( int nbMatches, int progress ); 154 // Called when a new line has been selected in the filtered view, 155 // to instruct the main view to jump to the matching line. 156 void jumpToMatchingLine( int filteredLineNb ); 157 // Called when the main view is on a new line number 158 void updateLineNumberHandler( int line ); 159 // Mark a line that has been clicked on the main (top) view. 160 void markLineFromMain( qint64 line ); 161 // Mark a line that has been clicked on the filtered (bottom) view. 162 void markLineFromFiltered( qint64 line ); 163 164 void loadingFinishedHandler( LoadingStatus status ); 165 // Manages the info lines to inform the user the file has changed. 166 void fileChangedHandler( LogData::MonitoredFileStatus ); 167 168 void searchForward(); 169 void searchBackward(); 170 171 // Called when the checkbox for search auto-refresh is changed 172 void searchRefreshChangedHandler( int state ); 173 174 // Called when the text on the search line is modified 175 void searchTextChangeHandler(); 176 177 // Called when the user change the visibility combobox 178 void changeFilteredViewVisibility( int index ); 179 180 // Called when the user add the string to the search 181 void addToSearch( const QString& string ); 182 183 // Called when a match is hovered on in the filtered view 184 void mouseHoveredOverMatch( qint64 line ); 185 186 // Called when there was activity in the views 187 void activityDetected(); 188 189 private: 190 // State machine holding the state of the search, used to allow/disallow 191 // auto-refresh and inform the user via the info line. 192 class SearchState { 193 public: 194 enum State { 195 NoSearch, 196 Static, 197 Autorefreshing, 198 FileTruncated, 199 TruncatedAutorefreshing, 200 }; 201 202 SearchState() { state_ = NoSearch; autoRefreshRequested_ = false; } 203 204 // Reset the state (no search active) 205 void resetState(); 206 // The user changed auto-refresh request 207 void setAutorefresh( bool refresh ); 208 // The file has been truncated (stops auto-refresh) 209 void truncateFile(); 210 // The expression has been changed (stops auto-refresh) 211 void changeExpression(); 212 // The search has been stopped (stops auto-refresh) 213 void stopSearch(); 214 // The search has been started (enable auto-refresh) 215 void startSearch(); 216 217 // Get the state in order to display the proper message 218 State getState() const { return state_; } 219 // Is auto-refresh allowed 220 bool isAutorefreshAllowed() const 221 { return ( state_ == Autorefreshing || state_ == TruncatedAutorefreshing ); } 222 bool isFileTruncated() const 223 { return ( state_ == FileTruncated || state_ == TruncatedAutorefreshing ); } 224 225 private: 226 State state_; 227 bool autoRefreshRequested_; 228 }; 229 230 // Private functions 231 void setup(); 232 void replaceCurrentSearch( const QString& searchText ); 233 void updateSearchCombo(); 234 AbstractLogView* activeView() const; 235 void printSearchInfoMessage( int nbMatches = 0 ); 236 void changeDataStatus( DataStatus status ); 237 void updateEncoding(); 238 239 // Palette for error notification (yellow background) 240 static const QPalette errorPalette; 241 242 LogMainView* logMainView; 243 QWidget* bottomWindow; 244 QLabel* searchLabel; 245 QComboBox* searchLineEdit; 246 QToolButton* searchButton; 247 QToolButton* stopButton; 248 FilteredView* filteredView; 249 QComboBox* visibilityBox; 250 InfoLine* searchInfoLine; 251 QCheckBox* ignoreCaseCheck; 252 QCheckBox* searchRefreshCheck; 253 OverviewWidget* overviewWidget_; 254 255 QVBoxLayout* bottomMainLayout; 256 QHBoxLayout* searchLineLayout; 257 QHBoxLayout* searchInfoLineLayout; 258 259 // Default palette to be remembered 260 QPalette searchInfoLineDefaultPalette; 261 262 std::shared_ptr<SavedSearches> savedSearches_; 263 264 // Reference to the QuickFind Pattern (not owned) 265 std::shared_ptr<QuickFindPattern> quickFindPattern_; 266 267 LogData* logData_; 268 LogFilteredData* logFilteredData_; 269 270 qint64 logFileSize_; 271 272 QWidget* qfSavedFocus_; 273 274 // Search state (for auto-refresh and truncation) 275 SearchState searchState_; 276 277 // Matches overview 278 Overview overview_; 279 280 // Model for the visibility selector 281 QStandardItemModel* visibilityModel_; 282 283 // Last main line number received 284 qint64 currentLineNumber_; 285 286 // Are we loading something? 287 // Set to false when we receive a completion message from the LogData 288 bool loadingInProgress_; 289 290 // Is it not the first time we are loading something? 291 bool firstLoadDone_; 292 293 // Current number of matches 294 int nbMatches_; 295 296 // the current dataStatus (whether we have new, not seen, data) 297 DataStatus dataStatus_; 298 299 // Current encoding setting; 300 Encoding encodingSetting_ = ENCODING_AUTO; 301 QString encoding_text_; 302 }; 303 304 #endif 305