org.sonar.plugins.css.cpd.CssTokenizer Maven / Gradle / Ivy
/*
* Sonar CSS Plugin
* Copyright (C) 2013 Tamas Kende
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.plugins.css.cpd;
import com.sonar.sslr.api.AstNode;
import com.sonar.sslr.api.GenericTokenType;
import com.sonar.sslr.api.Token;
import com.sonar.sslr.impl.Parser;
import net.sourceforge.pmd.cpd.SourceCode;
import net.sourceforge.pmd.cpd.TokenEntry;
import net.sourceforge.pmd.cpd.Tokenizer;
import net.sourceforge.pmd.cpd.Tokens;
import org.sonar.css.parser.CssGrammar;
import org.sonar.sslr.parser.LexerlessGrammar;
import org.sonar.sslr.parser.ParserAdapter;
import java.io.File;
import java.nio.charset.Charset;
public class CssTokenizer implements Tokenizer {
private final Charset charset;
public CssTokenizer(Charset charset) {
this.charset = charset;
}
public final void tokenize(SourceCode source, Tokens cpdTokens) {
String fileName = source.getFileName();
Parser parser = new ParserAdapter(charset, CssGrammar.createGrammar());
AstNode result = parser.parse(new File(fileName));
for (Token token : result.getTokens()) {
// TODO: the descendantComb is a null token
if (token != null) {
TokenEntry cpdToken = new TokenEntry(getTokenImage(token), fileName, token.getLine());
cpdTokens.add(cpdToken);
}
}
cpdTokens.add(TokenEntry.getEOF());
}
private String getTokenImage(Token token) {
if (token.getType() == GenericTokenType.LITERAL) {
return GenericTokenType.LITERAL.getValue();
}
return token.getValue();
}
}