vote up 2 vote down star

Actually, maybe not full-blown Lex/Yacc. I'm implementing a command-interpreter front-end to administer a webapp. I'm looking for something that'll take a grammar definition and turn it into a parser that directly invokes methods on my object. Similar to how ASP.NET MVC can figure out which controller method to invoke, and how to pony up the arguments.

So, if the user types "create foo" at my command-prompt, it should transparently call a method:

private void Create(string id) { /* ... */ }

Oh, and if it could generate help text from (e.g.) attributes on those controller methods, that'd be awesome, too.

flag

69% accept rate

8 Answers

vote up 3 vote down

I'm not sure Lex/Yacc will be of any help. You'll just need a basic tokenizer and an interpreter which are faster to write by hand. If you're still into parsing route see Irony.

As a sidenote: have you considered PowerSheel and its commandlets?

link|flag
While basic tokenisers are quite easy to write -- I've done several over the years, they're still not free if someone's already done the work. Also, yes, I have considered PowerShell. I'm not familiar enough with it to decide if it's a good fit or not. – Roger Lipscombe Feb 12 at 9:32
See msdn.microsoft.com/en-us/library/… for info on cmdlets. – Anton Gogolev Feb 12 at 9:39
+1 Using powershell is a much better option. – SDX2000 Feb 12 at 9:54
vote up 1 vote down

As Anton said, PowerShell is probably the way to go. If you do want a lex/ yacc implementation then Malcolm Crowe has a good set.

Edit: Direct Link to the Compiler Tools

link|flag
vote up 4 vote down

Still early CTP so can't be used in production apps but you may be interested in Oslo/MGrammar: http://msdn.microsoft.com/en-us/oslo/

link|flag
vote up 2 vote down

If you don't fear alpha software and want an alternative to Lex / Yacc for creating your own languages, you might look into Oslo. I would recommend you to sit through session recordings of sessions TL27 and TL31 from last years PDC. TL31 directly addresses the creation of Domain Specific Languages using Oslo.

link|flag
vote up 1 vote down

Coco/R is a compiler generator with a .NET implementation. You could try that out, but I'm not sure if getting such a library to work would be faster than writing your own tokenizer.

http://www.ssw.uni-linz.ac.at/Research/Projects/Coco/

link|flag
vote up 1 vote down

I would suggest csflex - C# port of flex - most famous unix scanner generator.

link|flag
vote up 2 vote down

I believe that lex/yacc are in one of the SDKs already (i.e. RTM). Either Windows or .NET Framework SDK.

link|flag
1  
Microsoft Visual Studio 2008 SDK has MPLex and MPPG under VisualStudioIntegration\Tools\Bin – Simeon Pilgrim Jul 12 at 22:09
vote up 1 vote down

Also look at Antlr, which has C# support.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.