mirror of https://github.com/buggins/dlangide.git
.dt diet template support; trying to fix DCD issue
This commit is contained in:
parent
9647069fc3
commit
814dcd3ede
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
||||||
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui": "==0.9.87",
|
"dlangui": "==0.9.88",
|
||||||
"dcd": "~>0.9.0"
|
"dcd": "~>0.9.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -170,3 +170,4 @@ class Builder : BackgroundOperationWatcher {
|
||||||
_listener(_exitCode);
|
_listener(_exitCode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,19 @@ import std.typecons;
|
||||||
import std.conv;
|
import std.conv;
|
||||||
import std.string;
|
import std.string;
|
||||||
|
|
||||||
|
import std.experimental.allocator;
|
||||||
|
import std.experimental.allocator.mallocator;
|
||||||
|
import std.experimental.allocator.gc_allocator;
|
||||||
|
|
||||||
|
import server.autocomplete;
|
||||||
|
import common.messages;
|
||||||
|
import dsymbol.modulecache;
|
||||||
|
|
||||||
|
//alias SharedASTAllocator = CAllocatorImpl!(Mallocator);
|
||||||
|
//alias SharedASTAllocator = CAllocatorImpl!(Mallocator);
|
||||||
|
//alias SharedASTAllocator = CSharedAllocatorImpl!(Mallocator);
|
||||||
|
alias SharedASTAllocator = ASTAllocator;
|
||||||
|
|
||||||
enum DCDResult : int {
|
enum DCDResult : int {
|
||||||
SUCCESS,
|
SUCCESS,
|
||||||
NO_RESULT,
|
NO_RESULT,
|
||||||
|
@ -22,8 +35,6 @@ alias DocCommentsResultSet = Tuple!(DCDResult, "result", string[], "docComments"
|
||||||
alias FindDeclarationResultSet = Tuple!(DCDResult, "result", string, "fileName", ulong, "offset");
|
alias FindDeclarationResultSet = Tuple!(DCDResult, "result", string, "fileName", ulong, "offset");
|
||||||
alias CompletionResultSet = Tuple!(DCDResult, "result", dstring[], "output", char[], "completionKinds");
|
alias CompletionResultSet = Tuple!(DCDResult, "result", dstring[], "output", char[], "completionKinds");
|
||||||
|
|
||||||
import server.autocomplete;
|
|
||||||
import common.messages;
|
|
||||||
|
|
||||||
class DCDTask {
|
class DCDTask {
|
||||||
protected bool _cancelled;
|
protected bool _cancelled;
|
||||||
|
@ -85,7 +96,7 @@ class ModuleCacheAccessor {
|
||||||
//protected ASTAllocator _astAllocator;
|
//protected ASTAllocator _astAllocator;
|
||||||
protected ModuleCache _moduleCache;
|
protected ModuleCache _moduleCache;
|
||||||
this(in string[] importPaths) {
|
this(in string[] importPaths) {
|
||||||
_moduleCache = ModuleCache(new ASTAllocator);
|
_moduleCache = ModuleCache(new SharedASTAllocator);
|
||||||
_moduleCache.addImportPaths(internStrings(importPaths));
|
_moduleCache.addImportPaths(internStrings(importPaths));
|
||||||
}
|
}
|
||||||
protected ModuleCache * getModuleCache(in string[] importPaths) {
|
protected ModuleCache * getModuleCache(in string[] importPaths) {
|
||||||
|
@ -149,6 +160,7 @@ class DCDInterface : Thread {
|
||||||
}
|
}
|
||||||
|
|
||||||
void threadFunc() {
|
void threadFunc() {
|
||||||
|
_moduleCache = new ModuleCacheAccessor(null);
|
||||||
Log.d("Starting DCD tasks thread");
|
Log.d("Starting DCD tasks thread");
|
||||||
while (!_queue.closed()) {
|
while (!_queue.closed()) {
|
||||||
DCDTask task;
|
DCDTask task;
|
||||||
|
@ -296,3 +308,19 @@ class DCDInterface : Thread {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// to test broken DCD after DUB invocation
|
||||||
|
/// run it after DCD ModuleCache is instantiated
|
||||||
|
void testDCDFailAfterThreadCreation() {
|
||||||
|
import core.thread;
|
||||||
|
|
||||||
|
Log.d("testDCDFailAfterThreadCreation");
|
||||||
|
Thread thread = new Thread(delegate() {
|
||||||
|
Thread.sleep(dur!"msecs"(2000));
|
||||||
|
});
|
||||||
|
thread.start();
|
||||||
|
thread.join();
|
||||||
|
Log.d("testDCDFailAfterThreadCreation finished");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,10 +46,10 @@ import std.path;
|
||||||
|
|
||||||
immutable string HELP_PAGE_URL = "https://github.com/buggins/dlangide/wiki";
|
immutable string HELP_PAGE_URL = "https://github.com/buggins/dlangide/wiki";
|
||||||
// TODO: get version from GIT commit
|
// TODO: get version from GIT commit
|
||||||
immutable dstring DLANGIDE_VERSION = "v0.7.41"d;
|
immutable dstring DLANGIDE_VERSION = "v0.7.42"d;
|
||||||
|
|
||||||
bool isSupportedSourceTextFileFormat(string filename) {
|
bool isSupportedSourceTextFileFormat(string filename) {
|
||||||
return (filename.endsWith(".d") || filename.endsWith(".txt") || filename.endsWith(".cpp") || filename.endsWith(".h") || filename.endsWith(".c")
|
return (filename.endsWith(".d") || filename.endsWith(".di") || filename.endsWith(".dt") || filename.endsWith(".txt") || filename.endsWith(".cpp") || filename.endsWith(".h") || filename.endsWith(".c")
|
||||||
|| filename.endsWith(".json") || filename.endsWith(".sdl") || filename.endsWith(".dd") || filename.endsWith(".ddoc") || filename.endsWith(".xml") || filename.endsWith(".html")
|
|| filename.endsWith(".json") || filename.endsWith(".sdl") || filename.endsWith(".dd") || filename.endsWith(".ddoc") || filename.endsWith(".xml") || filename.endsWith(".html")
|
||||||
|| filename.endsWith(".html") || filename.endsWith(".css") || filename.endsWith(".log") || filename.endsWith(".hpp"));
|
|| filename.endsWith(".html") || filename.endsWith(".css") || filename.endsWith(".log") || filename.endsWith(".hpp"));
|
||||||
}
|
}
|
||||||
|
@ -901,8 +901,11 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
Platform.instance.openURL(HELP_PAGE_URL);
|
Platform.instance.openURL(HELP_PAGE_URL);
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.HelpAbout:
|
case IDEActions.HelpAbout:
|
||||||
|
//debug {
|
||||||
|
// testDCDFailAfterThreadCreation();
|
||||||
|
//}
|
||||||
window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION,
|
window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION,
|
||||||
UIString.fromRaw("DLangIDE\n(C) Vadim Lopatin, 2014-2016\nhttp://github.com/buggins/dlangide\nIDE for D programming language written in D\nUses DlangUI library for GUI"d));
|
UIString.fromRaw("DLangIDE\n(C) Vadim Lopatin, 2014-2017\nhttp://github.com/buggins/dlangide\nIDE for D programming language written in D\nUses DlangUI library for GUI"d));
|
||||||
return true;
|
return true;
|
||||||
case StandardAction.OpenUrl:
|
case StandardAction.OpenUrl:
|
||||||
platform.openURL(a.stringParam);
|
platform.openURL(a.stringParam);
|
||||||
|
@ -911,7 +914,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
UIString caption;
|
UIString caption;
|
||||||
caption = UIString.fromId("HEADER_OPEN_TEXT_FILE"c);
|
caption = UIString.fromId("HEADER_OPEN_TEXT_FILE"c);
|
||||||
FileDialog dlg = createFileDialog(caption);
|
FileDialog dlg = createFileDialog(caption);
|
||||||
dlg.addFilter(FileFilterEntry(UIString.fromId("SOURCE_FILES"c), "*.d;*.dd;*.ddoc;*.di;*.dh;*.json;*.sdl;*.xml;*.ini"));
|
dlg.addFilter(FileFilterEntry(UIString.fromId("SOURCE_FILES"c), "*.d;*.dd;*.ddoc;*.di;*.dt;*.dh;*.json;*.sdl;*.xml;*.ini"));
|
||||||
dlg.addFilter(FileFilterEntry(UIString.fromId("ALL_FILES"c), "*.*"));
|
dlg.addFilter(FileFilterEntry(UIString.fromId("ALL_FILES"c), "*.*"));
|
||||||
dlg.path = _settings.getRecentPath("FILE_OPEN_PATH");
|
dlg.path = _settings.getRecentPath("FILE_OPEN_PATH");
|
||||||
dlg.dialogResult = delegate(Dialog d, const Action result) {
|
dlg.dialogResult = delegate(Dialog d, const Action result) {
|
||||||
|
|
|
@ -119,7 +119,7 @@ class NewFileDlg : Dialog {
|
||||||
_edLocation.filetypeIcons["dub.json"] = "project-d";
|
_edLocation.filetypeIcons["dub.json"] = "project-d";
|
||||||
_edLocation.filetypeIcons["package.json"] = "project-d";
|
_edLocation.filetypeIcons["package.json"] = "project-d";
|
||||||
_edLocation.filetypeIcons[".dlangidews"] = "project-development";
|
_edLocation.filetypeIcons[".dlangidews"] = "project-development";
|
||||||
_edLocation.addFilter(FileFilterEntry(UIString.fromRaw("DlangIDE files"d), "*.dlangidews;*.d;*.dd;*.di;*.ddoc;*.dh;*.json;*.xml;*.ini"));
|
_edLocation.addFilter(FileFilterEntry(UIString.fromRaw("DlangIDE files"d), "*.dlangidews;*.d;*.dd;*.di;*.ddoc;*.dh;*.json;*.xml;*.ini;*.dt"));
|
||||||
_edLocation.caption = "Select directory"d;
|
_edLocation.caption = "Select directory"d;
|
||||||
|
|
||||||
// fill templates
|
// fill templates
|
||||||
|
@ -295,6 +295,15 @@ class NewFileDlg : Dialog {
|
||||||
"\n", true);
|
"\n", true);
|
||||||
_templates ~= new ProjectTemplate("JSON file"d, "Empty json file."d, ".json",
|
_templates ~= new ProjectTemplate("JSON file"d, "Empty json file."d, ".json",
|
||||||
"{\n}\n", true);
|
"{\n}\n", true);
|
||||||
|
_templates ~= new ProjectTemplate("Vibe-D Diet Template file"d, "Empty Vibe-D Diet Template."d, ".dt",
|
||||||
|
q{
|
||||||
|
doctype html
|
||||||
|
html
|
||||||
|
head
|
||||||
|
title Hello, World
|
||||||
|
body
|
||||||
|
h1 Hello World
|
||||||
|
}, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue