mirror of https://gitlab.com/basile.b/dexed.git
damp a perf problem caused by scaning project TODOs and if proj has too many files
This commit is contained in:
parent
e732b27eeb
commit
b5f04aa324
|
@ -1,5 +1,9 @@
|
||||||
# v3.9.0-dev
|
# v3.9.0-dev
|
||||||
|
|
||||||
|
## Enhancements
|
||||||
|
|
||||||
|
- TODO list: a new option, _disableIfMoreFilesThan_, allows to disable auto refreshing of the list could be slow when the current project is huge.
|
||||||
|
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
||||||
- DUB projects: dependencies specified with _path_ were not available for auto-completion, also improved the detection patterns so that the _path_ property work with more packages. (#29)
|
- DUB projects: dependencies specified with _path_ were not available for auto-completion, also improved the detection patterns so that the _path_ property work with more packages. (#29)
|
||||||
|
|
|
@ -13,16 +13,15 @@ extern(C) const(char)* todoItems(const(char)* joinedFiles)
|
||||||
scope Appender!string stream;
|
scope Appender!string stream;
|
||||||
stream.reserve(32);
|
stream.reserve(32);
|
||||||
stream.put("object TTodoItems\ritems=<");
|
stream.put("object TTodoItems\ritems=<");
|
||||||
foreach(fname; joinedFilesToFiles(joinedFiles))
|
foreach (fname; joinedFilesToFiles(joinedFiles))
|
||||||
{
|
{
|
||||||
stream.reserve(256);
|
stream.reserve(256);
|
||||||
scope StringCache cache = StringCache(StringCache.defaultBucketCount);
|
|
||||||
scope LexerConfig config = LexerConfig("", StringBehavior.source);
|
scope LexerConfig config = LexerConfig("", StringBehavior.source);
|
||||||
ubyte[] source = cast(ubyte[]) std.file.read(fname);
|
scope source = cast(ubyte[]) std.file.read(fname);
|
||||||
foreach(ref token; DLexer(source, config, &cache)
|
scope StringCache cache = StringCache(optimalBucketCount(source.length));
|
||||||
.array
|
DLexer(source, config, &cache)
|
||||||
.filter!((a) => a.type == tok!"comment"))
|
.filter!(a => a.type == tok!"comment")
|
||||||
analyze(token, fname, stream);
|
.each!(t => analyze(t, fname, stream));
|
||||||
}
|
}
|
||||||
stream.put(">end");
|
stream.put(">end");
|
||||||
return stream.data.toStringz();
|
return stream.data.toStringz();
|
||||||
|
|
|
@ -21,13 +21,16 @@ type
|
||||||
fAutoRefresh: boolean;
|
fAutoRefresh: boolean;
|
||||||
fSingleClick: boolean;
|
fSingleClick: boolean;
|
||||||
fColumns: TTodoColumns;
|
fColumns: TTodoColumns;
|
||||||
|
fdisableIfMoreFilesThan: integer;
|
||||||
published
|
published
|
||||||
property autoRefresh: boolean read fAutoRefresh write fAutoRefresh;
|
property autoRefresh: boolean read fAutoRefresh write fAutoRefresh;
|
||||||
property singleClickSelect: boolean read fSingleClick write fSingleClick;
|
property singleClickSelect: boolean read fSingleClick write fSingleClick;
|
||||||
property columns: TTodoColumns read fColumns write fColumns;
|
property columns: TTodoColumns read fColumns write fColumns;
|
||||||
|
property disableIfMoreFilesThan: integer read fdisableIfMoreFilesThan write fdisableIfMoreFilesThan default 25;
|
||||||
public
|
public
|
||||||
procedure AssignTo(target: TPersistent); override;
|
procedure AssignTo(target: TPersistent); override;
|
||||||
procedure Assign(source: TPersistent); override;
|
procedure Assign(source: TPersistent); override;
|
||||||
|
constructor create(AOwner: TComponent); override;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TTodoContext = (tcNone, tcProject, tcFile);
|
TTodoContext = (tcNone, tcProject, tcFile);
|
||||||
|
@ -91,7 +94,6 @@ type
|
||||||
fProj: ICommonProject;
|
fProj: ICommonProject;
|
||||||
fDoc: TDexedMemo;
|
fDoc: TDexedMemo;
|
||||||
fTodos: TTodoItems;
|
fTodos: TTodoItems;
|
||||||
fMsgs: IMessagesDisplay;
|
|
||||||
fOptions: TTodoOptions;
|
fOptions: TTodoOptions;
|
||||||
// IDocumentObserver
|
// IDocumentObserver
|
||||||
procedure docNew(document: TDexedMemo);
|
procedure docNew(document: TDexedMemo);
|
||||||
|
@ -113,7 +115,7 @@ type
|
||||||
function optionedOptionsModified: boolean;
|
function optionedOptionsModified: boolean;
|
||||||
// TODOlist things
|
// TODOlist things
|
||||||
function getContext: TTodoContext;
|
function getContext: TTodoContext;
|
||||||
procedure callToolProcess;
|
procedure scanTodoItems(autoRefreshed: boolean);
|
||||||
procedure clearTodoList;
|
procedure clearTodoList;
|
||||||
procedure fillTodoList;
|
procedure fillTodoList;
|
||||||
procedure lstItemsColumnClick(Sender: TObject; Column: TListColumn);
|
procedure lstItemsColumnClick(Sender: TObject; Column: TListColumn);
|
||||||
|
@ -141,7 +143,6 @@ implementation
|
||||||
{$R *.lfm}
|
{$R *.lfm}
|
||||||
|
|
||||||
const
|
const
|
||||||
ToolExeName = 'dastworx' + exeExt;
|
|
||||||
OptFname = 'todolist.txt';
|
OptFname = 'todolist.txt';
|
||||||
|
|
||||||
{$REGION TTodoItems ------------------------------------------------------------}
|
{$REGION TTodoItems ------------------------------------------------------------}
|
||||||
|
@ -246,7 +247,7 @@ procedure TTodoListWidget.SetVisible(value: boolean);
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
if value and fAutoRefresh then
|
if value and fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
refreshVisibleColumns;
|
refreshVisibleColumns;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -258,6 +259,11 @@ end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
{$REGION IEditableOptions ----------------------------------------------------}
|
{$REGION IEditableOptions ----------------------------------------------------}
|
||||||
|
constructor TTodoOptions.create(AOwner: TComponent);
|
||||||
|
begin
|
||||||
|
fdisableIfMoreFilesThan := 25;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TTodoOptions.AssignTo(target: TPersistent);
|
procedure TTodoOptions.AssignTo(target: TPersistent);
|
||||||
var
|
var
|
||||||
widg: TTodoListWidget;
|
widg: TTodoListWidget;
|
||||||
|
@ -322,14 +328,16 @@ procedure TTodoListWidget.docNew(document: TDexedMemo);
|
||||||
begin
|
begin
|
||||||
fDoc := document;
|
fDoc := document;
|
||||||
if Visible and fAutoRefresh then
|
if Visible and fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.docFocused(document: TDexedMemo);
|
procedure TTodoListWidget.docFocused(document: TDexedMemo);
|
||||||
begin
|
begin
|
||||||
|
if fDoc = document then
|
||||||
|
exit;
|
||||||
fDoc := document;
|
fDoc := document;
|
||||||
if Visible and fAutoRefresh then
|
if fDoc.isNotNil and Visible and fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.docChanged(document: TDexedMemo);
|
procedure TTodoListWidget.docChanged(document: TDexedMemo);
|
||||||
|
@ -357,7 +365,7 @@ begin
|
||||||
if fProj <> project then
|
if fProj <> project then
|
||||||
exit;
|
exit;
|
||||||
if Visible and fAutoRefresh then
|
if Visible and fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.projClosing(project: ICommonProject);
|
procedure TTodoListWidget.projClosing(project: ICommonProject);
|
||||||
|
@ -366,14 +374,16 @@ begin
|
||||||
exit;
|
exit;
|
||||||
fProj := nil;
|
fProj := nil;
|
||||||
if Visible and fAutoRefresh then
|
if Visible and fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.projFocused(project: ICommonProject);
|
procedure TTodoListWidget.projFocused(project: ICommonProject);
|
||||||
begin
|
begin
|
||||||
|
if fProj = project then
|
||||||
|
exit;
|
||||||
fProj := project;
|
fProj := project;
|
||||||
if Visible and fAutoRefresh then
|
if Visible and fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.projCompiling(project: ICommonProject);
|
procedure TTodoListWidget.projCompiling(project: ICommonProject);
|
||||||
|
@ -401,7 +411,7 @@ begin
|
||||||
exit(tcFile);
|
exit(tcFile);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.callToolProcess;
|
procedure TTodoListWidget.scanTodoItems(autoRefreshed: boolean);
|
||||||
var
|
var
|
||||||
ctxt: TTodoContext;
|
ctxt: TTodoContext;
|
||||||
i,j: integer;
|
i,j: integer;
|
||||||
|
@ -420,11 +430,12 @@ begin
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// files passed to the tool argument
|
if ctxt = tcProject then
|
||||||
if (ctxt = tcProject) then
|
|
||||||
begin
|
begin
|
||||||
i := 0;
|
i := 0;
|
||||||
j := fProj.sourcesCount-1;
|
j := fProj.sourcesCount-1;
|
||||||
|
if autoRefreshed and (j > fOptions.disableIfMoreFilesThan) then
|
||||||
|
exit;
|
||||||
for i := 0 to j do
|
for i := 0 to j do
|
||||||
begin
|
begin
|
||||||
nme := fProj.sourceAbsolute(i);
|
nme := fProj.sourceAbsolute(i);
|
||||||
|
@ -518,7 +529,7 @@ begin
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
// the collection will be cleared if a file is opened
|
// the collection will be cleared if a file is opened
|
||||||
// docFocused->callToolProcess->fTodos....clear
|
// docFocused->scanTodoItems->fTodos....clear
|
||||||
// so line and filename must be copied
|
// so line and filename must be copied
|
||||||
itm := TTodoItem(lstItems.Selected.Data);
|
itm := TTodoItem(lstItems.Selected.Data);
|
||||||
fname := itm.filename;
|
fname := itm.filename;
|
||||||
|
@ -590,7 +601,7 @@ end;
|
||||||
|
|
||||||
procedure TTodoListWidget.btnRefreshClick(Sender: TObject);
|
procedure TTodoListWidget.btnRefreshClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
callToolProcess;
|
scanTodoItems(false);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.filterItems(Sender: TObject);
|
procedure TTodoListWidget.filterItems(Sender: TObject);
|
||||||
|
@ -618,7 +629,7 @@ begin
|
||||||
fAutoRefresh := value;
|
fAutoRefresh := value;
|
||||||
mnuAutoRefresh.Checked := value;
|
mnuAutoRefresh.Checked := value;
|
||||||
if fAutoRefresh then
|
if fAutoRefresh then
|
||||||
callToolProcess;
|
scanTodoItems(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTodoListWidget.setColumns(value: TTodoColumns);
|
procedure TTodoListWidget.setColumns(value: TTodoColumns);
|
||||||
|
|
Loading…
Reference in New Issue