Skip to content

j0hnds/parsekit

 
 

Repository files navigation

ParseKit is a Mac OS X Framework written by Todd Ditchendorf in Objective-C 2.0 and released under the Apache Open Source License Version 2.0. ParseKit is suitable for use on Mac OS X Leopard, Snow Leopard or iOS. ParseKit is an Objective-C implementation of the tools described in Building Parsers with Java by Steven John Metsker. ParseKit includes additional features beyond the designs from the book and also some changes to match common Cocoa/Objective-C conventions. These changes are relatively superficial, however, and Metsker’s book is the best documentation available for ParseKit.

The ParseKit Framework offers 3 basic services of general interest to Cocoa developers:

1. String Tokenization via the Objective-C PKTokenizer and PKToken classes.
2. High-Level Language Parsing via Objective-C – An Objective-C parser-building API (the PKParser class and sublcasses).
3. Objective-C Parser Generation via Grammars – Generate an Objective-C parser for your custom language using a BNF grammar syntax (similar to yacc or ANTLR). While parsing, the parser will provide callbacks to your Objective-C code.

DS: This fork of the ParseKit framework has been done to allow the ParseKitMobile library to be used in an iOS application that uses ARC (automatic reference counting). The modifications have been performed using “#if __has_feature(objc_arc)” conditional compilation to allow the code to function as normal for non-iOS/ARC environments.

More documentation:

Projects using ParseKit:

Base: Mac SQLite tool by Ben Barnett
TaskPaper for iPhone: Simple to-do lists app by Jesse Grosjean
Spike: A Rails log file viewer/analyzer by Matt Mower
JSTalk: Interprocess Cocoa scripting with JavaScript by Gus Mueller
"BayesianKit"https://github.com/lok/BayesianKit: A Cocoa framework implementing a bayesian classifier by Samuel Mendes
Objective-J Port of ParseKit by Ross Boucher
HTTP Client: HTTP debugging/testing tool
Fluid: Site-Specific Browser for Mac OS X
Cruz: Social Browser for Mac OS X
OkudaKit: Syntax Highlighting Framework for Mac OS X
Exedore: XPath 1.0 implemented in Cocoa (ported from Saxon)

Xcode Project

The ParseKit Xcode project consists of 6 targets:

ParseKit : the ParseKit Objective-C framework. The central feature/codebase of this project.
Tests : a UnitTest Bundle containing hundreds of unit tests (actually, more correctly, interaction tests) for the framework as well as some example classes that serve as real-world uses of the framework.
DemoApp : A simple Cocoa demo app that gives a visual presentation of the results of tokenizing text using the PKTokenizer class.
DebugApp : A simple Cocoa app that exists only to run arbitrary test code thru GDB with breakpoints for debugging (I was not able to do that with the UnitTest bundle).
JSParseKit : A JavaScriptCore-based scripting interface to ParseKit which can be used to expose the entire framework to JavaScript environments.
JSDemoApp: A simple Cocoa application used for exercising the JavaScript interface provided by JSParseKit. Note that this is the only target which links to the WebKit framework. Neither ParseKit nor JSParseKit requires WebKit.

ParseKit Framework

Tokenization

The API for tokenization is provided by the PKTokenizer class. Cocoa developers will be familiar with the NSScanner class provided by the Foundation Framework which provides a similar service. However, the PKTokenizer class is simpler and more powerful for many use cases.
Example usage:

NSString *s = @""It's 123 blast-off!", she said, // watch out!n"
              @"and <= 3.5 'ticks' later /* wince */, it's blast-off!";
PKTokenizer *t = [PKTokenizer tokenizerWithString:s];
PKToken *eof = [PKToken EOFToken];
PKToken *tok = nil;
while ((tok = [t nextToken]) != eof) {
    NSLog(@" (%@)", tok);
}

outputs:

 
 ("It's 123 blast-off!")
 (,)
 (she)
 (said)
 (,)
 (and)
 (<=)
 (3.5)
 ('ticks')
 (later)
 (,)
 (it's)
 (blast-off)
 (!)

Each token produced is an object of class PKToken. PKTokens have a tokenType (Word, Symbol, Num, QuotedString, etc.) and both a stringValue and a floatValue.
More information about a token can be easily discovered using the -debugDescription method instead of the default -description. Replace the line containing NSLog above with this line:

NSLog(@" (%@)", [tok debugDescription]);

and each token’s type will be printed as well:

 <Quoted String «"It's 123 blast-off!"»>
 <Symbol «,»>
 <Word «she»>
 <Word «said»>
 <Symbol «,»>
 <Word «and»>
 <Symbol «<=»>
 <Number «3.5»>
 <Quoted String «'ticks'»>
 <Word «later»>
 <Symbol «,»>
 <Word «it's»>
 <Word «blast-off»>
 <Symbol «!»>

As you can see from the output, PKTokenzier is configured by default to properly group characters into tokens including:

  • single- and double-quoted string tokens
  • common multiple character symbols (<=)
  • apostrophes, dashes and other symbol chars that should not signal the start of a new Symbol token, but rather be included in the current Word or Num token (it’s, blast-off, 3.5)
  • silently ignoring C- and C++-style comments
  • silently ignoring whitespace

The PKTokenizer class is very flexible, and all of those features are configurable. PKTokenizer may be configured to:

  • recognize more (or fewer) multi-char symbols. ex:
[t.symbolState add:@"!="];

allows != to be recognized as a single Symbol token rather than two adjacent Symbol tokens

*add new internal symbol chars to be included in the current Word token OR recognize internal symbols like apostrophe and dash to actually signal a new Symbol token rather than being part of the current Word token. ex:

[t.wordState setWordChars:YES from:'_' to:'_'];

allows Word tokens to contain internal underscores

[t.wordState setWordChars:NO from:'-' to:'-'];

disallows Word tokens from containing internal dashes.

  • change which chars singnal the start of a token of any given type. ex:
[t setTokenizerState:t.wordState from:'_' to:'_'];

allows Word tokens to start with underscore

[t setTokenizerState:t.quoteState from:'*' to:'*'];

allows Quoted String tokens to start with an asterisk, effectively making * a new quote symbol (like " or ’)

  • turn off recognition of single-line “slash-slash” (//) comments. ex:
[t setTokenizerState:t.symbolState from:'/' to:'/'];

slash chars now produce individual Symbol tokens rather than causing the tokenizer to strip text until the next newline char or begin striping for a multiline comment if appropriate (/*)

  • turn on recognition of “hash” (#) single-line comments. ex:
[t setTokenizerState:t.commentState from:'#' to:'#'];
[t.commentState addSingleLineStartSymbol:@"#"];
  • turn on recognition of “XML/HTML” () multi-line comments. ex:
[t setTokenizerState:t.commentState from:'<' to:'<'];
[t.commentState addMultiLineStartSymbol:@"<!--" endSymbol:@"-->"];
  • report (rather than silently consume) Comment tokens. ex:
t.commentState.reportsCommentTokens = YES; // default is NO
  • report (rather than silently consume) Whitespace tokens. ex:
t.whitespaceState.reportsWhitespaceTokens = YES; // default is NO
  • turn on recognition of any characters (say, digits) as whitespace to be silently ignored. ex:
[t setTokenizerState:t.whitespaceState from:'0' to:'9'];

Parsing

ParseKit also includes a collection of token parser subclasses (of the abstract PKParser class) including collection parsers such as PKAlternation, PKSequence, and PKRepetition as well as terminal parsers including PKWord, PKNum, PKSymbol, PKQuotedString, etc. Also included are parser subclasses which work in individual chars such as PKChar, PKDigit, and PKSpecificChar. These char parsers are useful for things like RegEx parsing. Generally speaking though, the token parsers will be more useful and interesting.

The parser classes represent a Composite pattern. Programs can build a composite parser, in Objective-C (rather than a separate language like with lex&yacc), from a collection of terminal parsers composed into alternations, sequences, and repetitions to represent an infinite number of languages.

Parsers built from ParseKit are non-deterministic, recursive descent parsers, which basically means they trade some performance for ease of user programming and simplicity of implementation.

Here is an example of how one might build a parser for a simple voice-search command language (note: ParseKit does not include any kind of speech recognition technology). The language consists of:

search google for? <search-term>
...
	[self parseString:@"search google 'iphone'"];
...
- (void)parseString:(NSString *)s {
	PKSequence *parser = [PKSequence sequence];
	[parser add:[[PKLiteral literalWithString:@"search"] discard]];
	[parser add:[[PKLiteral literalWithString:@"google"] discard]];
	PKAlternation *optionalFor = [PKAlternation alternation];
	[optionalFor add:[PKEmpty empty]];
	[optionalFor add:[PKLiteral literalWithString:@"for"]];
	[parser add:[optionalFor discard]];
	PKParser *searchTerm = [PKQuotedString quotedString];
	[searchTerm setAssembler:self selector:@selector(parser:didMatchSearchTerm:)];
	[parser add:searchTerm];
	PKAssembly *result = [parser bestMatchFor:[PKTokenAssembly assmeblyWithString:s]];
	NSLog(@" %@", result);
	// output:
	//  ['iphone']search/google/'iphone'^
}
...
- (void)parser:(PKParser *)p didMatchSearchTerm:(PKAssembly *)a {
	PKToken *t = [a pop]; // a QuotedString token with a stringValue of 'iphone'
	[self doGoogleSearchForTerm:t.stringValue];
}

About

Objective-C/Cocoa String Tokenizer and Parser toolkit. Supports Grammars.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 97.8%
  • C 1.6%
  • Other 0.6%