22 Commits
0.2 ... 0.3

Author SHA1 Message Date
Ben S
822eb95303 But there's only one type of string 2015-02-15 13:48:41 +00:00
Ben S
da342c1b7d Simplify macro-highlighting code 2015-02-15 13:43:15 +00:00
Ben S
81197c7d45 Detect r##"raw strings"## 2015-02-15 13:23:32 +00:00
Ben S
e6c0074733 Smarten up attribute highlighting 2015-02-15 13:07:24 +00:00
Ben S
5452afbb9c Replace identifier colour with preprocessor colour 2015-02-15 13:07:10 +00:00
Ben S
2c06798f84 Allow 'us' and 'is' machine-dependent suffixes 2015-02-15 12:54:55 +00:00
Ben S
d2549503b5 Add smoke test thing to save me from testing 2015-02-15 12:49:34 +00:00
Ben S
3b9fc0817c Add all the other keywords I missed 2015-02-15 12:27:35 +00:00
Ben S
82931045a2 Highlight macro_rules! definitions + arguments 2015-02-15 02:44:29 +00:00
Ben S
51e8755030 where wasn't a keyword already? 2015-02-15 02:24:35 +00:00
Benjamin Sago
9932fb4761 Replace int/uint with isize/usize 2015-01-11 12:43:57 +01:00
Ben S
79a65307f0 Changes to the way numbers are highlighted
They were being highlighted after underscores in variable names, and underscores weren't being catered for in non-base-ten numeric literals. Now, fixed!
2014-12-24 14:11:32 +00:00
Ben S
c98ec54134 Skip over modules called 'test' 2014-12-05 21:47:52 +00:00
Ben S
98a15cf36a Skip over empty function/module definitions 2014-12-05 20:51:08 +00:00
Ben S
34bbe47973 Turns out numbers are valid identifier components 2014-12-05 20:08:26 +00:00
Ben S
69e12ea420 Subtly change the way 'use' lines are highlighted 2014-12-05 20:07:08 +00:00
Ben S
92862fc0a3 Merge pull request #1 from crdx/trailing-spaces
remove trailing spaces
2014-11-29 16:45:23 +00:00
Sean S
dbb13d4816 remove trailing spaces 2014-11-29 16:43:56 +00:00
Ben S
38deac77fe oops 2014-11-28 23:38:42 +00:00
Ben S
affebcf878 Bump release link 2014-11-28 23:38:30 +00:00
Ben S
55bbe945ae And add the screenshot to the readme! 2014-11-28 23:18:16 +00:00
Ben S
3b76b3429f Add a screenshot 2014-11-28 23:16:22 +00:00
5 changed files with 394 additions and 115 deletions

View File

@@ -1,6 +1,8 @@
BBEdit language module for Rust BBEdit language module for Rust
=============================== ===============================
!["A screenshot of the language module"](https://raw.githubusercontent.com/ogham/Rust.bblm/master/screenshot.png)
This is a BBEdit 11 Language Module for [Rust](http://www.rust-lang.org). It provides the following features: This is a BBEdit 11 Language Module for [Rust](http://www.rust-lang.org). It provides the following features:
- Complete syntax highlighting - Complete syntax highlighting
@@ -15,7 +17,7 @@ By default, it highlights anything beginning with a capital letter in a certain
### Installation ### Installation
The simplest way is to just [download the package](https://github.com/ogham/Rust.bblm/releases/tag/0.1) and put it in this folder: The simplest way is to just [download the package](https://github.com/ogham/Rust.bblm/releases/tag/0.2) and put it in this folder:
~/Application Support/BBEdit/Language Modules ~/Application Support/BBEdit/Language Modules
@@ -24,4 +26,3 @@ Then restart your BBEdit and it should be picked up.
### Compilation ### Compilation
To compile your own version, you'll need Xcode. The default schema outputs a `.bblm`. You'll also need the BBEdit SDK. The project assumes it's mounted under `/Volumes/BBEdit SDK`. To compile your own version, you'll need Xcode. The default schema outputs a `.bblm`. You'll also need the BBEdit SDK. The project assumes it's mounted under `/Volumes/BBEdit SDK`.

View File

@@ -43,8 +43,6 @@
<string>&apos;lifetime</string> <string>&apos;lifetime</string>
<key>me.bsago.bblm.rust.identifier</key> <key>me.bsago.bblm.rust.identifier</key>
<string>Identifier</string> <string>Identifier</string>
<key>me.bsago.bblm.rust.attribute</key>
<string>#[attribute]</string>
<key>me.bsago.bblm.rust.function</key> <key>me.bsago.bblm.rust.function</key>
<string>fn functionname</string> <string>fn functionname</string>
<key>me.bsago.bblm.rust.module</key> <key>me.bsago.bblm.rust.module</key>
@@ -56,8 +54,6 @@
<string>rgb(135, 2, 219)</string> <string>rgb(135, 2, 219)</string>
<key>me.bsago.bblm.rust.lifetime</key> <key>me.bsago.bblm.rust.lifetime</key>
<string>rgb(133, 20, 75)</string> <string>rgb(133, 20, 75)</string>
<key>me.bsago.bblm.rust.attribute</key>
<string>rgb(177, 13, 201)</string>
<key>me.bsago.bblm.rust.identifier</key> <key>me.bsago.bblm.rust.identifier</key>
<string>rgb(61, 153, 112)</string> <string>rgb(61, 153, 112)</string>
<key>me.bsago.bblm.rust.function</key> <key>me.bsago.bblm.rust.function</key>
@@ -70,16 +66,21 @@
<string>com.barebones.bblm.keyword</string> <string>com.barebones.bblm.keyword</string>
<key>Keywords</key> <key>Keywords</key>
<array> <array>
<string>abstract</string>
<string>alignof</string>
<string>as</string> <string>as</string>
<string>become</string>
<string>box</string> <string>box</string>
<string>break</string> <string>break</string>
<string>const</string> <string>const</string>
<string>continue</string> <string>continue</string>
<string>crate</string> <string>crate</string>
<string>do</string>
<string>else</string> <string>else</string>
<string>enum</string> <string>enum</string>
<string>extern</string> <string>extern</string>
<string>false</string> <string>false</string>
<string>final</string>
<string>fn</string> <string>fn</string>
<string>for</string> <string>for</string>
<string>if</string> <string>if</string>
@@ -87,25 +88,36 @@
<string>in</string> <string>in</string>
<string>let</string> <string>let</string>
<string>loop</string> <string>loop</string>
<string>macro_rules!</string> <string>macro</string>
<string>macro_rules</string>
<string>match</string> <string>match</string>
<string>mod</string> <string>mod</string>
<string>move</string>
<string>mut</string> <string>mut</string>
<string>offsetof</string>
<string>override</string>
<string>priv</string> <string>priv</string>
<string>proc</string> <string>proc</string>
<string>pub</string> <string>pub</string>
<string>pure</string>
<string>ref</string> <string>ref</string>
<string>return</string> <string>return</string>
<string>self</string> <string>self</string>
<string>sizeof</string>
<string>static</string> <string>static</string>
<string>struct</string> <string>struct</string>
<string>super</string> <string>super</string>
<string>trait</string> <string>trait</string>
<string>true</string> <string>true</string>
<string>type</string> <string>type</string>
<string>typeof</string>
<string>unsafe</string> <string>unsafe</string>
<string>unsized</string>
<string>use</string> <string>use</string>
<string>virtual</string>
<string>where</string>
<string>while</string> <string>while</string>
<string>yield</string>
</array> </array>
</dict> </dict>
<dict> <dict>
@@ -122,13 +134,13 @@
<string>i32</string> <string>i32</string>
<string>i64</string> <string>i64</string>
<string>i8</string> <string>i8</string>
<string>int</string> <string>isize</string>
<string>str</string> <string>str</string>
<string>u16</string> <string>u16</string>
<string>u32</string> <string>u32</string>
<string>u64</string> <string>u64</string>
<string>u8</string> <string>u8</string>
<string>uint</string> <string>usize</string>
</array> </array>
</dict> </dict>
</array> </array>

232
rust.mm
View File

@@ -8,10 +8,9 @@
#include "BBLMInterface.h" #include "BBLMInterface.h"
#include "BBLMTextIterator.h" #include "BBLMTextIterator.h"
#define kMaxLineLength 256 #define kMaxLineLength 256
static NSString* const identifierColour = @"me.bsago.bblm.rust.identifier"; static NSString* const identifierColour = @"me.bsago.bblm.rust.identifier";
static NSString* const attributeColour = @"me.bsago.bblm.rust.attribute";
static NSString* const lifetimeColour = @"me.bsago.bblm.rust.lifetime"; static NSString* const lifetimeColour = @"me.bsago.bblm.rust.lifetime";
static NSString* const functionColour = @"me.bsago.bblm.rust.function"; static NSString* const functionColour = @"me.bsago.bblm.rust.function";
static NSString* const moduleColour = @"me.bsago.bblm.rust.module"; static NSString* const moduleColour = @"me.bsago.bblm.rust.module";
@@ -31,13 +30,21 @@ static bool addRun(NSString *kind, int start,int len , const BBLMCallbackBlock&
SInt32 skipString(BBLMTextIterator &iter) SInt32 skipString(BBLMTextIterator &iter)
{ {
SInt32 length = 1; SInt32 length = 1;
UniChar terminator = iter.GetNextChar();
UniChar ch; UniChar ch;
if (iter.strcmp("\"", 1) == 0)
{
iter += 1;
}
else
{
return 0;
}
while ((ch = iter.GetNextChar())) while ((ch = iter.GetNextChar()))
{ {
length++; length++;
if (ch == terminator) if (ch == '"')
{ {
break; break;
} }
@@ -52,6 +59,40 @@ SInt32 skipString(BBLMTextIterator &iter)
return length; return length;
} }
SInt32 skipRawString(BBLMTextIterator &iter)
{
SInt32 length = 4;
UniChar ch;
if (iter.strcmp("r##\"", 4) == 0)
{
iter += 4;
}
else
{
return 0;
}
while ((ch = iter.GetNextChar()))
{
length++;
if (iter.strcmp("\"##", 3) == 0)
{
length += 3;
iter += 3;
break;
}
if (ch == '\\')
{
iter++;
length++;
}
}
return length;
}
SInt32 skipLineComment(BBLMTextIterator &iter) SInt32 skipLineComment(BBLMTextIterator &iter)
{ {
SInt32 length = 2; SInt32 length = 2;
@@ -119,7 +160,7 @@ SInt32 skipWord(BBLMTextIterator &iter)
while ((ch = iter.GetNextChar())) while ((ch = iter.GetNextChar()))
{ {
if (isalpha(ch) || ch == '_') if (isalpha(ch) || ch == '_' || (length > 0 && isdigit(ch)))
{ {
length++; length++;
} }
@@ -134,41 +175,44 @@ SInt32 skipWord(BBLMTextIterator &iter)
} }
SInt32 skipAttribute(BBLMTextIterator &iter) SInt32 skipAttribute(BBLMTextIterator &iter)
{
SInt32 length = 1;
UniChar ch;
iter++;
while ((ch = iter.GetNextChar()))
{
if (ch == '\n' || ch == '\r')
{
break;
}
else
{
length++;
}
}
return length;
}
SInt32 skipUse(BBLMTextIterator &iter)
{ {
SInt32 length = 0; SInt32 length = 0;
UniChar ch; UniChar ch;
if (iter.strcmp("#[", 2) == 0)
{
length += 2;
iter += 2;
}
else if (iter.strcmp("#![", 3) == 0)
{
length += 3;
iter += 3;
}
else if (iter.strcmp("#", 1) == 0)
{
iter++;
return 1;
}
else
{
return 0;
}
while ((ch = iter.GetNextChar())) while ((ch = iter.GetNextChar()))
{ {
if (islower(ch) || ch == ':' || ch == '_' || (length > 0 && isdigit(ch))) if (ch == ']')
{ {
length++; length++;
break;
}
else if (ch == '\n' || ch == '\r')
{
break;
} }
else else
{ {
iter--; length++;
break;
} }
} }
@@ -217,22 +261,31 @@ SInt32 skipNumber(BBLMTextIterator &iter)
{ {
length++; length++;
} }
else if ((base == 2) && (ch == '0' || ch == '1')) else if ((base == 2) && (ch == '0' || ch == '1' || ((ch == '_' || ch == '.') && length > 0)))
{ {
length++; length++;
} }
else if ((base == 8) && (ch >= '0' && ch <= '7')) else if ((base == 8) && ((ch >= '0' && ch <= '7') || ((ch == '_' || ch == '.') && length > 0)))
{ {
length++; length++;
} }
else if ((base == 16) && ((ch >= 'a' && ch <= 'f') || (ch >= 'A' && ch <= 'F') || isdigit(ch))) else if ((base == 16) && ((ch >= 'a' && ch <= 'f') || (ch >= 'A' && ch <= 'F') || isdigit(ch) || ((ch == '_' || ch == '.') && length > 0)))
{ {
length++; length++;
} }
else if (ch == 'f' || ch == 'u' || ch == 'i') else if (ch == 'f' || ch == 'u' || ch == 'i')
{ {
hasSuffix = true;
length++; length++;
if (ch != 'f' && iter.strcmp("s", 1) == 0)
{
// Parse 'us' or 'is' machine-dependent suffixes
length++;
}
else
{
// Otherwise, allow for numbers at the end
hasSuffix = true;
}
break; break;
} }
else else
@@ -297,6 +350,14 @@ SInt32 skipToEndOfFunction(BBLMTextIterator &iter)
if (braceLevel < 1) return length; if (braceLevel < 1) return length;
break; break;
case ';':
// If the definition just ends with a semicolon, then it's
// either a function in a trait definition, or a C function
// definition in an extern, neither of which we want in the
// function list.
if (braceLevel < 1) return 0;
break;
case '(': case '(':
parenLevel++; parenLevel++;
break; break;
@@ -333,17 +394,33 @@ SInt32 scanForSymbol(BBLMTextIterator &iter,
iter += keywordLen; iter += keywordLen;
if ((whitespaceLen = skipWhitespace(iter))) if ((whitespaceLen = skipWhitespace(iter)))
{ {
bool is_test = iter.strcmp("test", 4) == 0;
if ((wordLen = skipWord(iter))) if ((wordLen = skipWord(iter)))
{ {
UInt32 funLen = skipToEndOfFunction(iter); UInt32 funLen = skipToEndOfFunction(iter);
// Skip over trait method definitions and extern functions
if (funLen == 0)
{
return 0;
}
// Ignore modules called 'test'
if (strcmp(keyword, "mod") == 0 && is_test)
{
return 0;
}
UInt32 tokenOffset, funIndex; UInt32 tokenOffset, funIndex;
UInt32 nameLen; UInt32 nameLen;
BBLMProcInfo info; BBLMProcInfo info;
iter -= (wordLen + funLen); iter -= (wordLen + funLen);
nameLen = keywordLen + whitespaceLen + wordLen;
iter -= (keywordLen + whitespaceLen); iter -= (keywordLen + whitespaceLen);
nameLen = keywordLen + whitespaceLen + wordLen;
bblmAddTokenToBuffer(callbacks, params.fFcnParams.fTokenBuffer, iter.Address(), bblmAddTokenToBuffer(callbacks, params.fFcnParams.fTokenBuffer, iter.Address(),
nameLen, &tokenOffset); nameLen, &tokenOffset);
@@ -360,7 +437,7 @@ SInt32 scanForSymbol(BBLMTextIterator &iter,
info.fNameStart = tokenOffset; info.fNameStart = tokenOffset;
info.fNameLength = nameLen; info.fNameLength = nameLen;
bblmAddFunctionToList(callbacks, params.fFcnParams.fFcnList, info, &funIndex); bblmAddFunctionToList(callbacks, params.fFcnParams.fFcnList, info, &funIndex);
bblmAddFoldRange(callbacks, info.fFunctionStart, funLen, kBBLMFunctionAutoFold);
iter += (keywordLen + whitespaceLen); iter += (keywordLen + whitespaceLen);
return info.fFunctionEnd; return info.fFunctionEnd;
} }
@@ -492,7 +569,20 @@ OSErr calculateRuns(BBLMParamBlock &params, const BBLMCallbackBlock *callbacks)
bool wordchr = false; bool wordchr = false;
while ((ch = iter.GetNextChar())) while ((ch = iter.GetNextChar()))
{ {
if (ch == '"') if (ch == 'r' && iter.strcmp("##\"", 3) == 0)
{
iter--;
if (!makeCodeRun(iter, runStart, *callbacks)) return noErr;
runStart = iter.Offset();
runLen = skipRawString(iter);
// Use the heredoc colour to highlight raw strings.
// It's not exactly a heredoc, but it's the closest!
if (!addRun(kBBLMHereDocStringRunKind, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset();
}
else if (ch == '"')
{ {
iter--; iter--;
if (!makeCodeRun(iter, runStart, *callbacks)) return noErr; if (!makeCodeRun(iter, runStart, *callbacks)) return noErr;
@@ -585,6 +675,24 @@ OSErr calculateRuns(BBLMParamBlock &params, const BBLMCallbackBlock *callbacks)
iter--; iter--;
} }
} }
else if (ch == 'a' && iter.strcmp("cro_rules!", 10) == 0)
{
iter += 10;
ch = iter.GetNextChar();
if (isspace(ch))
{
if (!makeCodeRun(iter, runStart, *callbacks)) return noErr;
runStart = iter.Offset();
runLen = skipWhitespace(iter);
runLen += skipWord(iter);
if (!addRun(functionColour, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset();
}
else if (ch)
{
iter--;
}
}
else if (ch) else if (ch)
{ {
iter--; iter--;
@@ -628,17 +736,44 @@ OSErr calculateRuns(BBLMParamBlock &params, const BBLMCallbackBlock *callbacks)
ch = iter.GetNextChar(); ch = iter.GetNextChar();
if (isspace(ch)) if (isspace(ch))
{ {
skipWhitespace(iter);
if (!makeCodeRun(iter, runStart, *callbacks)) return noErr; if (!makeCodeRun(iter, runStart, *callbacks)) return noErr;
runStart = iter.Offset(); runStart = iter.Offset();
runLen = skipWhitespace(iter); runLen = 0;
runLen += skipUse(iter); bool spacey = false;
while ((ch = iter.GetNextChar()))
{
if (spacey && isupper(ch))
{
iter--;
if (!addRun(kBBLMFileIncludeRunKind, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset();
runLen = skipWord(iter);
if (!addRun(identifierColour, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset();
runLen = 0;
}
else if (ch == ';' || ch == '\n')
{
iter--;
if (!addRun(kBBLMFileIncludeRunKind, runStart, runLen, *callbacks)) return noErr;
break;
}
else
{
spacey = isspace(ch) || ch == ':' || ch == '{';
runLen++;
}
}
if (!addRun(kBBLMFileIncludeRunKind, runStart, runLen, *callbacks)) return noErr; if (!addRun(kBBLMFileIncludeRunKind, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset(); runStart = iter.Offset();
runLen = skipWord(iter); runLen = skipWord(iter);
if (!addRun(identifierColour, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset();
} }
else if (ch) else if (ch)
{ {
@@ -689,7 +824,18 @@ OSErr calculateRuns(BBLMParamBlock &params, const BBLMCallbackBlock *callbacks)
if (!makeCodeRun(iter, runStart, *callbacks)) return noErr; if (!makeCodeRun(iter, runStart, *callbacks)) return noErr;
runStart = iter.Offset(); runStart = iter.Offset();
runLen = skipAttribute(iter); runLen = skipAttribute(iter);
if (!addRun(attributeColour, runStart, runLen, *callbacks)) return noErr; if (!addRun(kBBLMPreprocessorRunKind, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset();
}
else if (ch == '$')
{
iter--;
if (!makeCodeRun(iter, runStart, *callbacks)) return noErr;
runStart = iter.Offset();
iter++;
runLen = skipWord(iter) + 1;
if (runLen > 1 && !addRun(kBBLMVariableRunKind, runStart, runLen, *callbacks)) return noErr;
runStart = iter.Offset(); runStart = iter.Offset();
} }
@@ -732,7 +878,7 @@ OSErr calculateRuns(BBLMParamBlock &params, const BBLMCallbackBlock *callbacks)
runStart = iter.Offset(); runStart = iter.Offset();
} }
wordchr = isalpha(ch) || isdigit(ch); wordchr = isalpha(ch) || isdigit(ch) || ch == '_';
} }
makeCodeRun(iter, runStart, *callbacks); makeCodeRun(iter, runStart, *callbacks);

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

120
smoke.rs Normal file
View File

@@ -0,0 +1,120 @@
// Keywords
// --------
abstract, alignof, as, become, box, break, const, continue, crate, do, else, enum,
extern, false, final, fn, for, if, impl, in, let, loop, macro, match, mod, move, mut,
offsetof, override, priv, pub, pure, ref, return, sizeof, static, self, struct, super,
true, trait, type, typeof, unsafe, unsized, use, virtual, where, while, yield.
// Types
// -----
- ()
- bool, char, str
- u8, u16, u32, u64
- i8, i16, i32, i64
- f32, f64
- usize, isize
- int, uint // these are no longer valid!
// Comments
// --------
// This is a comment
/* So is this */
/// This is a doc comment
/** So is this */
// Characters and Lifetimes
// ------------------------
'a' // a character
'a // a lifetime
'static // also a lifetime
b'a' // a byte
' ' // this is also a character (space)
'\t' // characters can be escaped
'\'' // including the quote character itself!
"geese" // a string
r##"geese"## // a raw string. This part should not be highlighted!
b"geese" // a byte string
br##"geese"## // a raw byte string. This part should still not be highlighted
"there's a \" in this string" // be sure to handle escapes
"\"geese\"" // including at the edges
r##"there's a " in this string"## // the string shouldn't end until ##
r##"there's a # in this string"## // even if there's a # in the middle
// " // in case the above failed :)
// Decimal Numbers
// ---------------
7, 12, 1048576 // are all numbers
1_000_000 // is a number with underscore separators
_, _1000, 1000_ // beware of sole/leading/trailing underscores
// Hex Numbers
// -----------
0xff // hex numbers start with 0x
0xFF // and can be in lowercase or uppercase
0x0123_4567 // and can have separators
// Octal Numbers
// -------------
0o77 // octal numbers start with 0o
0o12345678909 // and should finish after an 8 or 9
// Binary Numbers
// --------------
0b0000_1111 // binary numbers start with 0b
0b01234311 // and should finish after a 2 or higher
// Floating-Point Numbers
// ----------------------
6.022E-23 // floating point notation
5.974e24 // lowercase e
7.348e+22 // uppercase E and plus
let tuple = ((8, 4), 48);
let a = tuple.0.0;
// Numeric Suffixes
// ----------------
123i32, 123u32 // numbers can have literals
123_u32, 0xff_u8
0o70_i16, 0b1111_1111_1001_0000_i32
0us, 7is
123.0f64
0.1f64
0.1f32
12E+99_f64
2.f64 // Invalid!
// Attributes
// ----------
#[attribute]
#[derive(This, That, Other)]
#![top_level_attribute]
#not_an_attribute
#[macro_use] use this_is_not_an_attribute;
// Macros
// ------
macro_rules! parse {
($thing: expr) => { $thing };
}