added messagepack
This commit is contained in:
parent
fdd4e3060e
commit
490d632a29
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "msgpack-d"]
|
||||||
|
path = msgpack-d
|
||||||
|
url = https://github.com/msgpack/msgpack-d.git
|
|
@ -316,7 +316,7 @@ local keywords = {
|
||||||
|
|
||||||
-- For this module to work the dscanner program must be installed. Configure the
|
-- For this module to work the dscanner program must be installed. Configure the
|
||||||
-- path to the executable here
|
-- path to the executable here
|
||||||
M.PATH_TO_DSCANNER = "dscanner"
|
M.PATH_TO_DSCANNER = "/home/alaran/src/dscanner-master/dscanner"
|
||||||
|
|
||||||
_M.textadept.editing.comment_string.dmd = '//'
|
_M.textadept.editing.comment_string.dmd = '//'
|
||||||
_M.textadept.run.compile_command.dmd = 'dmd -c -o- %(filename)'
|
_M.textadept.run.compile_command.dmd = 'dmd -c -o- %(filename)'
|
||||||
|
@ -367,34 +367,34 @@ local function showCompletionList(r)
|
||||||
buffer.auto_c_choose_single = setting
|
buffer.auto_c_choose_single = setting
|
||||||
end
|
end
|
||||||
|
|
||||||
--events.connect(events.CHAR_ADDED, function(ch)
|
events.connect(events.CHAR_ADDED, function(ch)
|
||||||
-- if buffer:get_lexer() ~= "dmd" then return end
|
if buffer:get_lexer() ~= "dmd" then return end
|
||||||
-- if ch > 255 then return end
|
if ch > 255 then return end
|
||||||
-- local character = string.char(ch)
|
local character = string.char(ch)
|
||||||
-- if character == "." or character == "(" then
|
if character == "." or character == "(" then
|
||||||
-- local fileName = os.tmpname()
|
local fileName = os.tmpname()
|
||||||
-- local tmpFile = io.open(fileName, "w")
|
local tmpFile = io.open(fileName, "w")
|
||||||
-- tmpFile:write(buffer:get_text())
|
tmpFile:write(buffer:get_text())
|
||||||
-- local command = M.PATH_TO_DSCANNER
|
local command = M.PATH_TO_DSCANNER
|
||||||
-- .. (character == "." and " --dotComplete " or " --parenComplete ")
|
.. (character == "." and " --dotComplete " or " --parenComplete ")
|
||||||
-- .. fileName .. " " .. buffer.current_pos .. " -I" .. buffer.filename:match(".+[\\/]")
|
.. fileName .. " " .. buffer.current_pos .. " -I" .. buffer.filename:match(".+[\\/]")
|
||||||
-- local p = io.popen(command)
|
local p = io.popen(command)
|
||||||
-- local r = p:read("*a")
|
local r = p:read("*a")
|
||||||
-- if r ~= "\n" then
|
if r ~= "\n" then
|
||||||
-- if character == "." then
|
if character == "." then
|
||||||
-- showCompletionList(r)
|
showCompletionList(r)
|
||||||
-- elseif character == "(" then
|
elseif character == "(" then
|
||||||
-- if r:find("^completions\n") then
|
if r:find("^completions\n") then
|
||||||
-- showCompletionList(r)
|
showCompletionList(r)
|
||||||
-- elseif r:find("^calltips\n.*") then
|
elseif r:find("^calltips\n.*") then
|
||||||
-- r = r:gsub("^calltips\n", "")
|
r = r:gsub("^calltips\n", "")
|
||||||
-- buffer:call_tip_show(buffer.current_pos, r:gsub("\\n", "\n"):gsub("\\t", "\t"):match("(.*)%s+$"))
|
buffer:call_tip_show(buffer.current_pos, r:gsub("\\n", "\n"):gsub("\\t", "\t"):match("(.*)%s+$"))
|
||||||
-- end
|
end
|
||||||
-- end
|
end
|
||||||
-- end
|
end
|
||||||
-- os.remove(fileName)
|
os.remove(fileName)
|
||||||
-- end
|
end
|
||||||
--end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
local function autocomplete()
|
local function autocomplete()
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b0798c79c523afbab770353728ef83253f493bcd
|
242
std/d/lexer.d
242
std/d/lexer.d
|
@ -1,110 +1,110 @@
|
||||||
// Written in the D programming language
|
// Written in the D programming language
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This module contains a range-based _lexer for the D programming language.
|
* This module contains a range-based _lexer for the D programming language.
|
||||||
*
|
*
|
||||||
* For performance reasons the _lexer contained in this module operates only on
|
* For performance reasons the _lexer contained in this module operates only on
|
||||||
* ASCII or UTF-8 encoded source code. If the use of other encodings is
|
* ASCII or UTF-8 encoded source code. If the use of other encodings is
|
||||||
* desired, the source code must be converted to UTF-8 before passing it to this
|
* desired, the source code must be converted to UTF-8 before passing it to this
|
||||||
* _lexer.
|
* _lexer.
|
||||||
*
|
*
|
||||||
* To use the _lexer, create a LexerConfig struct
|
* To use the _lexer, create a LexerConfig struct
|
||||||
* ---
|
* ---
|
||||||
* LexerConfig config;
|
* LexerConfig config;
|
||||||
* config.iterStyle = IterationStyle.everything;
|
* config.iterStyle = IterationStyle.everything;
|
||||||
* config.tokenStyle = IterationStyle.source;
|
* config.tokenStyle = IterationStyle.source;
|
||||||
* config.versionNumber = 2061;
|
* config.versionNumber = 2061;
|
||||||
* config.vendorString = "Lexer Example";
|
* config.vendorString = "Lexer Example";
|
||||||
* ---
|
* ---
|
||||||
* Once you have configured the _lexer, call byToken$(LPAREN)$(RPAREN) on your
|
* Once you have configured the _lexer, call byToken$(LPAREN)$(RPAREN) on your
|
||||||
* source code, passing in the configuration.
|
* source code, passing in the configuration.
|
||||||
* ---
|
* ---
|
||||||
* auto source = "import std.stdio;"c;
|
* auto source = "import std.stdio;"c;
|
||||||
* auto tokens = byToken(source, config);
|
* auto tokens = byToken(source, config);
|
||||||
* ---
|
* ---
|
||||||
* The result of byToken$(LPAREN)$(RPAREN) is a forward range of tokens that can
|
* The result of byToken$(LPAREN)$(RPAREN) is a forward range of tokens that can
|
||||||
* be used easily with the algorithms from std.algorithm or iterated over with
|
* be used easily with the algorithms from std.algorithm or iterated over with
|
||||||
* $(D_KEYWORD foreach)
|
* $(D_KEYWORD foreach)
|
||||||
* ---
|
* ---
|
||||||
* assert (tokens.front.type == TokenType.import_);
|
* assert (tokens.front.type == TokenType.import_);
|
||||||
* assert (tokens.front.value == "import");
|
* assert (tokens.front.value == "import");
|
||||||
* assert (tokens.front.line == 1);
|
* assert (tokens.front.line == 1);
|
||||||
* assert (tokens.front.startIndex == 0);
|
* assert (tokens.front.startIndex == 0);
|
||||||
* ---
|
* ---
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
*
|
*
|
||||||
* Generate HTML markup of D code.
|
* Generate HTML markup of D code.
|
||||||
* ---
|
* ---
|
||||||
* module highlighter;
|
* module highlighter;
|
||||||
*
|
*
|
||||||
* import std.stdio;
|
* import std.stdio;
|
||||||
* import std.array;
|
* import std.array;
|
||||||
* import std.d.lexer;
|
* import std.d.lexer;
|
||||||
*
|
*
|
||||||
* void writeSpan(string cssClass, string value)
|
* void writeSpan(string cssClass, string value)
|
||||||
* {
|
* {
|
||||||
* stdout.write(`<span class="`, cssClass, `">`, value.replace("&", "&").replace("<", "<"), `</span>`);
|
* stdout.write(`<span class="`, cssClass, `">`, value.replace("&", "&").replace("<", "<"), `</span>`);
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* // http://ethanschoonover.com/solarized
|
* // http://ethanschoonover.com/solarized
|
||||||
* void highlight(R)(R tokens)
|
* void highlight(R)(R tokens)
|
||||||
* {
|
* {
|
||||||
* stdout.writeln(q"[<!DOCTYPE html>
|
* stdout.writeln(q"[<!DOCTYPE html>
|
||||||
* <html>
|
* <html>
|
||||||
* <head>
|
* <head>
|
||||||
* <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
* <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
||||||
* </head>
|
* </head>
|
||||||
* <body>
|
* <body>
|
||||||
* <style type="text/css">
|
* <style type="text/css">
|
||||||
* html { background-color: #fdf6e3; color: #002b36; }
|
* html { background-color: #fdf6e3; color: #002b36; }
|
||||||
* .kwrd { color: #b58900; font-weight: bold; }
|
* .kwrd { color: #b58900; font-weight: bold; }
|
||||||
* .com { color: #93a1a1; font-style: italic; }
|
* .com { color: #93a1a1; font-style: italic; }
|
||||||
* .num { color: #dc322f; font-weigth: bold; }
|
* .num { color: #dc322f; font-weigth: bold; }
|
||||||
* .str { color: #2aa198; font-style: italic; }
|
* .str { color: #2aa198; font-style: italic; }
|
||||||
* .op { color: #586e75; font-weight: bold; }
|
* .op { color: #586e75; font-weight: bold; }
|
||||||
* .type { color: #268bd2; font-weight: bold; }
|
* .type { color: #268bd2; font-weight: bold; }
|
||||||
* .cons { color: #859900; font-weight: bold; }
|
* .cons { color: #859900; font-weight: bold; }
|
||||||
* </style>
|
* </style>
|
||||||
* <pre>]");
|
* <pre>]");
|
||||||
*
|
*
|
||||||
* foreach (Token t; tokens)
|
* foreach (Token t; tokens)
|
||||||
* {
|
* {
|
||||||
* if (isType(t.type))
|
* if (isType(t.type))
|
||||||
* writeSpan("type", t.value);
|
* writeSpan("type", t.value);
|
||||||
* else if (isKeyword(t.type))
|
* else if (isKeyword(t.type))
|
||||||
* writeSpan("kwrd", t.value);
|
* writeSpan("kwrd", t.value);
|
||||||
* else if (t.type == TokenType.comment)
|
* else if (t.type == TokenType.comment)
|
||||||
* writeSpan("com", t.value);
|
* writeSpan("com", t.value);
|
||||||
* else if (isStringLiteral(t.type))
|
* else if (isStringLiteral(t.type))
|
||||||
* writeSpan("str", t.value);
|
* writeSpan("str", t.value);
|
||||||
* else if (isNumberLiteral(t.type))
|
* else if (isNumberLiteral(t.type))
|
||||||
* writeSpan("num", t.value);
|
* writeSpan("num", t.value);
|
||||||
* else if (isOperator(t.type))
|
* else if (isOperator(t.type))
|
||||||
* writeSpan("op", t.value);
|
* writeSpan("op", t.value);
|
||||||
* else
|
* else
|
||||||
* stdout.write(t.value.replace("<", "<"));
|
* stdout.write(t.value.replace("<", "<"));
|
||||||
* }
|
* }
|
||||||
* stdout.writeln("</pre>\n</body></html>");
|
* stdout.writeln("</pre>\n</body></html>");
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* void main(string[] args)
|
* void main(string[] args)
|
||||||
* {
|
* {
|
||||||
* LexerConfig config;
|
* LexerConfig config;
|
||||||
* config.tokenStyle = TokenStyle.source;
|
* config.tokenStyle = TokenStyle.source;
|
||||||
* config.iterStyle = IterationStyle.everything;
|
* config.iterStyle = IterationStyle.everything;
|
||||||
* config.fileName = args[1];
|
* config.fileName = args[1];
|
||||||
* auto f = File(args[1]);
|
* auto f = File(args[1]);
|
||||||
* (cast(ubyte[]) f.byLine(KeepTerminator.yes).join()).byToken(config).highlight();
|
* (cast(ubyte[]) f.byLine(KeepTerminator.yes).join()).byToken(config).highlight();
|
||||||
* }
|
* }
|
||||||
* ---
|
* ---
|
||||||
*
|
*
|
||||||
* Copyright: Brian Schott 2013
|
* Copyright: Brian Schott 2013
|
||||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt Boost, License 1.0)
|
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt Boost, License 1.0)
|
||||||
* Authors: Brian Schott, Dmitry Olshansky
|
* Authors: Brian Schott, Dmitry Olshansky
|
||||||
* Source: $(PHOBOSSRC std/d/_lexer.d)
|
* Source: $(PHOBOSSRC std/d/_lexer.d)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module std.d.lexer;
|
module std.d.lexer;
|
||||||
|
|
||||||
|
@ -357,7 +357,7 @@ struct TokenRange(LexSrc)
|
||||||
popFront();
|
popFront();
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes the current token from the range
|
* Removes the current token from the range
|
||||||
*/
|
*/
|
||||||
|
@ -3013,7 +3013,7 @@ struct StringCache
|
||||||
assert((startSize & (startSize-1)) == 0);
|
assert((startSize & (startSize-1)) == 0);
|
||||||
index = new Slot*[startSize];
|
index = new Slot*[startSize];
|
||||||
}
|
}
|
||||||
|
|
||||||
string get(R)(R range)
|
string get(R)(R range)
|
||||||
if(isRandomAccessRange!R
|
if(isRandomAccessRange!R
|
||||||
&& is(Unqual!(ElementType!R) : const(ubyte)))
|
&& is(Unqual!(ElementType!R) : const(ubyte)))
|
||||||
|
@ -3021,7 +3021,7 @@ struct StringCache
|
||||||
uint h = hash(range);
|
uint h = hash(range);
|
||||||
uint bucket = h & (index.length-1);
|
uint bucket = h & (index.length-1);
|
||||||
Slot *s = index[bucket];
|
Slot *s = index[bucket];
|
||||||
if(s == null)
|
if(s == null)
|
||||||
{
|
{
|
||||||
string str = putIntoCache(range);
|
string str = putIntoCache(range);
|
||||||
index[bucket] = allocateSlot(str, h);
|
index[bucket] = allocateSlot(str, h);
|
||||||
|
@ -3031,12 +3031,12 @@ struct StringCache
|
||||||
for(;;)
|
for(;;)
|
||||||
{
|
{
|
||||||
if(s.hash == h && s.value.equal(range))
|
if(s.hash == h && s.value.equal(range))
|
||||||
return s.value;
|
return s.value;
|
||||||
if(s.next == null) break;
|
if(s.next == null) break;
|
||||||
s = s.next;
|
s = s.next;
|
||||||
}
|
}
|
||||||
string str = putIntoCache(range);
|
string str = putIntoCache(range);
|
||||||
s.next = allocateSlot(str, h);
|
s.next = allocateSlot(str, h);
|
||||||
uniqueSlots++;
|
uniqueSlots++;
|
||||||
// had at least 1 item in this bucket
|
// had at least 1 item in this bucket
|
||||||
// and inserted another one - check load factor
|
// and inserted another one - check load factor
|
||||||
|
@ -3044,8 +3044,8 @@ struct StringCache
|
||||||
rehash();
|
rehash();
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
static uint hash(R)(R data)
|
static uint hash(R)(R data)
|
||||||
{
|
{
|
||||||
|
@ -3064,7 +3064,7 @@ private:
|
||||||
Slot* next;
|
Slot* next;
|
||||||
uint hash;
|
uint hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
void printLoadFactor()
|
void printLoadFactor()
|
||||||
{
|
{
|
||||||
size_t cnt = 0, maxChain = 0;
|
size_t cnt = 0, maxChain = 0;
|
||||||
|
@ -3080,8 +3080,8 @@ private:
|
||||||
}
|
}
|
||||||
import std.stdio;
|
import std.stdio;
|
||||||
assert(cnt == uniqueSlots);
|
assert(cnt == uniqueSlots);
|
||||||
writefln("Load factor: %.3f; max bucket %d",
|
writefln("Load factor: %.3f; max bucket %d",
|
||||||
cast(double)cnt/index.length,
|
cast(double)cnt/index.length,
|
||||||
maxChain);
|
maxChain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3095,9 +3095,9 @@ private:
|
||||||
{
|
{
|
||||||
Slot* cur = index[i], prev;
|
Slot* cur = index[i], prev;
|
||||||
while(cur)
|
while(cur)
|
||||||
{
|
{
|
||||||
//has extra bit set - move it out
|
//has extra bit set - move it out
|
||||||
if(cur.hash & oldLen)
|
if(cur.hash & oldLen)
|
||||||
{
|
{
|
||||||
if(prev == null)
|
if(prev == null)
|
||||||
{
|
{
|
||||||
|
@ -3122,7 +3122,7 @@ private:
|
||||||
//writefln("AFTER (size = %d):", index.length);
|
//writefln("AFTER (size = %d):", index.length);
|
||||||
//printLoadFactor();
|
//printLoadFactor();
|
||||||
}
|
}
|
||||||
|
|
||||||
static Slot* removeLink(ref Slot* cur, Slot* prev)
|
static Slot* removeLink(ref Slot* cur, Slot* prev)
|
||||||
{
|
{
|
||||||
prev.next = cur.next;
|
prev.next = cur.next;
|
||||||
|
@ -3130,16 +3130,16 @@ private:
|
||||||
cur = cur.next;
|
cur = cur.next;
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
//insert at front of bucket
|
//insert at front of bucket
|
||||||
void insertIntoBucket(Slot* what, size_t bucket)
|
void insertIntoBucket(Slot* what, size_t bucket)
|
||||||
{
|
{
|
||||||
what.next = null;
|
what.next = null;
|
||||||
Slot* p = index[bucket];
|
Slot* p = index[bucket];
|
||||||
what.next = p;
|
what.next = p;
|
||||||
index[bucket] = what;
|
index[bucket] = what;
|
||||||
}
|
}
|
||||||
|
|
||||||
Slot* allocateSlot(string val, uint hash)
|
Slot* allocateSlot(string val, uint hash)
|
||||||
{
|
{
|
||||||
auto slice = allocateInCache(Slot.sizeof);
|
auto slice = allocateInCache(Slot.sizeof);
|
||||||
|
@ -3159,7 +3159,7 @@ private:
|
||||||
//TODO: add aligned variant that allocates at word boundary
|
//TODO: add aligned variant that allocates at word boundary
|
||||||
ubyte[] allocateInCache(size_t size)
|
ubyte[] allocateInCache(size_t size)
|
||||||
{
|
{
|
||||||
import core.memory;
|
import core.memory;
|
||||||
if(next + size > chunkSize)
|
if(next + size > chunkSize)
|
||||||
{
|
{
|
||||||
// avoid huge allocations
|
// avoid huge allocations
|
||||||
|
|
Loading…
Reference in New Issue