What would be the best way to detect what programming language is used in a snippet of code?
|
|
I think that the method used in spam filters would work very well. You split the snippet into words. Then you compare the occurences of these words with known snippets, and compute the probability that this snippet is written in language X for every language you're interested in. http://en.wikipedia.org/wiki/Bayesian_spam_filtering If you have the basic mechanism then it's very easy to add new languages: just train the detector with a few snippets in the new language (you could feed it an open source project). This way it learns that "System" is likely to appear in C# snippets and "puts" in Ruby snippets. I've actually used this method to add language detection to code snippets for forum software. It worked 100% of the time, except in ambiguous cases:
Let me find the code. I couldn't find the code so I made a new one. It's a bit simplistic but it works for my tests. Currently if you feed it much more Python code than Ruby code it's likely to say that this code:
is Python code (although it really is Ruby). This is because Python has a I hope it helps you:
|
|||||||||||||
|
|
Language detection solved by others: Ohloh's approach: https://github.com/blackducksw/ohcount/ Github's approach: https://github.com/github/linguist |
|||||||
|
|
It's very hard and sometimes impossible. Which language is this short snippet from?
(Hint: It could be any one out of several.) You can try to analyze various languages and try to decide using frequency analysis of keywords. If certain sets of keywords occur with certain frequencies in a text it's likely that the language is Java etc. But I don't think you will get anything that is completely fool proof, as you could name for example a variable in C the same name as a keyword in Java, and the frequency analysis will be fooled. If you take it up a notch in complexity you could look for structures, if a certain keyword always comes after another one, that will get you more clues. But it will also be much harder to design and implement. |
|||
|
|
You might find some useful material here: http://alexgorbatchev.com/wiki/SyntaxHighlighter. Alex has spent a lot of time figuring out how to parse a large number of different languages, and what the key syntax elements are. |
|||
|
|
|
It would depend on what type of snippet you have, but I would run it through a series of tokenizers and see which language's BNF it came up as valid against. |
|||
|
|
First, I would try to find the specific keyworks of a language e.g.
|
|||||
|
|
An alternative is to use highlight.js, which performs syntax highlighting but uses the success-rate of the highlighting process to identify the language. In principle, any syntax highlighter codebase could be used in the same way, but the nice thing about highlight.js is that language detection is considered a feature and is used for testing purposes. UPDATE: I tried this and it didn't work that well. Compressed JavaScript completely confused it, i.e. the tokenizer is whitespace sensitive. Generally, just counting highlight hits does not seem very reliable. A stronger parser, or perhaps unmatched section counts, might work better. |
||||
|
|
|
Nice puzzle. I think it is imposible to detect all languages. But you could trigger on key tokens. (certain reserved words and often used character combinations). Ben there are a lot of languages with similar syntax. So it depends on the size of the snippet. |
|||
|
|
|
Prettify is a Javascript package that does an okay job of detecting programming languages: http://code.google.com/p/google-code-prettify/ It is mainly a syntax highlighter, but there is probably a way to extract the detection part for the purposes of detecting the language from a snippet. |
|||||||
|
|
I wouldn't think there would be an easy way of accomplishing this. I would probably generate lists of symbols/common keywords unique to certain languages/classes of languages (e.g. curly brackets for C-style language, the Dim and Sub keywords for BASIC languages, the def keyword for Python, the let keyword for functional languages). You then might be able to use basic syntax features to narrow it down even further. |
|||
|
|
|
I think the biggest distinction between languages is its structure. So my idea would be to look at certain common elements across all languages and see how they differ. For example, you could use regexes to pick out things such as:
And maybe a few other things that most languages should have. Then use a point system. Award at most 1 point for each element if the regex is found. Obviously, some languages will use the exact same syntax (for loops are often written like Combine this with Jules' solution, and it should work pretty well. Maybe also look for frequencies of keywords for an extra point. |
|||
|
|