What would be the best way to detect what programming language is used in a snippet of code?
|
5
|
|||||
|
|
|
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:
|
|||
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
First, I would try to find the specific keyworks of a language e.g.
|
||
|
|
|
|
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. |
||
|
