1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-27 20:23:30 +00:00
plantuml/src/net/sourceforge/plantuml/preproc/Preprocessor.java

96 lines
2.7 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009, Arnaud Roques
*
* Project Info: http://plantuml.sourceforge.net
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML 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 General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
2011-08-08 17:48:29 +00:00
* Revision $Revision: 6502 $
2010-11-15 20:35:36 +00:00
*
*/
package net.sourceforge.plantuml.preproc;
2011-01-29 15:09:35 +00:00
import java.io.File;
2010-11-15 20:35:36 +00:00
import java.io.IOException;
2011-01-29 15:09:35 +00:00
import java.util.Set;
2010-11-15 20:35:36 +00:00
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Preprocessor implements ReadLine {
2011-02-14 11:56:34 +00:00
private static final Pattern definePattern = Pattern.compile("^\\s*!define\\s+([A-Za-z_][A-Za-z_0-9]*)(?:\\s+(.*))?$");
private static final Pattern undefPattern = Pattern.compile("^\\s*!undef\\s+([A-Za-z_][A-Za-z_0-9]*)$");
2010-11-15 20:35:36 +00:00
private final Defines defines;
private final PreprocessorInclude rawSource;
private final IfManager source;
2011-08-08 17:48:29 +00:00
public Preprocessor(ReadLine reader, Defines defines, Set<File> filesUsed, File newCurrentDir) {
2010-11-15 20:35:36 +00:00
this.defines = defines;
2011-08-08 17:48:29 +00:00
this.rawSource = new PreprocessorInclude(reader, filesUsed, newCurrentDir);
2010-11-15 20:35:36 +00:00
this.source = new IfManager(rawSource, defines);
}
public String readLine() throws IOException {
String s = source.readLine();
if (s == null) {
return null;
}
Matcher m = definePattern.matcher(s);
if (m.find()) {
return manageDefine(m);
}
m = undefPattern.matcher(s);
if (m.find()) {
return manageUndef(m);
}
s = defines.applyDefines(s);
return s;
}
private String manageUndef(Matcher m) throws IOException {
defines.undefine(m.group(1));
return this.readLine();
}
private String manageDefine(Matcher m) throws IOException {
defines.define(m.group(1), m.group(2));
return this.readLine();
}
public int getLineNumber() {
return rawSource.getLineNumber();
}
public void close() throws IOException {
rawSource.close();
}
}