1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-08 03:10:53 +00:00
plantuml/src/net/sourceforge/plantuml/tim/EaterTheme.java

144 lines
4.7 KiB
Java
Raw Normal View History

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
*
2023-02-22 18:43:48 +00:00
* Project Info: https://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
2023-02-22 18:43:48 +00:00
* https://plantuml.com/patreon (only 1$ per month!)
* https://plantuml.com/paypal
*
* 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 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.
*
*
* Original Author: Arnaud Roques
*
*/
package net.sourceforge.plantuml.tim;
import static java.nio.charset.StandardCharsets.UTF_8;
2021-11-10 18:18:02 +00:00
import java.io.BufferedReader;
2021-05-14 08:42:57 +00:00
import java.io.IOException;
2022-06-27 16:33:45 +00:00
import java.io.Reader;
2021-05-14 08:42:57 +00:00
import java.io.UnsupportedEncodingException;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.file.AFile;
2022-08-17 17:34:24 +00:00
import net.sourceforge.plantuml.log.Logme;
2021-05-14 08:42:57 +00:00
import net.sourceforge.plantuml.preproc.FileWithSuffix;
2021-11-10 18:18:02 +00:00
import net.sourceforge.plantuml.preproc.ImportedFiles;
2021-05-14 08:42:57 +00:00
import net.sourceforge.plantuml.preproc.ReadLine;
import net.sourceforge.plantuml.preproc.ReadLineReader;
import net.sourceforge.plantuml.preproc2.PreprocessorUtils;
import net.sourceforge.plantuml.security.SURL;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.text.StringLocated;
2021-05-14 08:42:57 +00:00
import net.sourceforge.plantuml.theme.ThemeUtils;
public class EaterTheme extends Eater {
// ::remove folder when __HAXE__
2021-05-14 08:42:57 +00:00
private String realName;
private String name;
private String from;
private TContext context;
2021-11-10 18:18:02 +00:00
private final ImportedFiles importedFiles;
2021-11-10 18:18:02 +00:00
public EaterTheme(StringLocated s, ImportedFiles importedFiles) {
super(s);
2021-11-10 18:18:02 +00:00
this.importedFiles = importedFiles;
}
@Override
public void analyze(TContext context, TMemory memory) throws EaterException {
skipSpaces();
checkAndEatChar("!theme");
skipSpaces();
2021-05-14 08:42:57 +00:00
this.name = this.eatAllToEnd();
final int x = this.name.toLowerCase().indexOf(" from ");
if (x != -1) {
2023-05-18 11:32:30 +00:00
final String fromTmp = this.name.substring(x + " from ".length()).trim();
this.from = context.applyFunctionsAndVariables(memory, new StringLocated(fromTmp, getLineLocation()));
this.name = this.name.substring(0, x).trim();
2021-05-14 08:42:57 +00:00
this.context = context;
}
this.realName = context.applyFunctionsAndVariables(memory, new StringLocated(this.name, getLineLocation()));
2021-05-14 08:42:57 +00:00
}
public final ReadLine getTheme() throws EaterException {
2021-05-14 08:42:57 +00:00
if (from == null) {
2021-11-10 18:18:02 +00:00
try {
2023-02-02 17:59:43 +00:00
final ReadLine reader = ThemeUtils.getReaderTheme(realName);
if (reader != null)
return reader;
2021-11-10 18:18:02 +00:00
final AFile localFile = importedFiles.getAFile(ThemeUtils.getFilename(realName));
if (localFile != null && localFile.isOk()) {
final BufferedReader br = localFile.getUnderlyingFile().openBufferedReader();
if (br != null)
return ReadLineReader.create(br, "theme " + realName);
}
} catch (IOException e) {
2022-08-17 17:34:24 +00:00
Logme.error(e);
2021-11-10 18:18:02 +00:00
}
throw new EaterException("Cannot load " + realName, getStringLocated());
}
2021-11-10 18:18:02 +00:00
if (from.startsWith("<") && from.endsWith(">")) {
final ReadLine reader = ThemeUtils.getReaderTheme(realName, from);
if (reader == null)
throw new EaterException("No such theme " + realName + " in " + from, getStringLocated());
return reader;
2021-11-10 18:18:02 +00:00
} else if (from.startsWith("http://") || from.startsWith("https://")) {
2021-05-14 08:42:57 +00:00
final SURL url = SURL.create(ThemeUtils.getFullPath(from, realName));
2021-11-10 18:18:02 +00:00
if (url == null)
throw new EaterException("Cannot open URL", getStringLocated());
2021-11-10 18:18:02 +00:00
2021-05-14 08:42:57 +00:00
try {
return PreprocessorUtils.getReaderInclude(url, getStringLocated(), UTF_8);
2021-05-14 08:42:57 +00:00
} catch (UnsupportedEncodingException e) {
2022-08-17 17:34:24 +00:00
Logme.error(e);
throw new EaterException("Cannot decode charset", getStringLocated());
2021-05-14 08:42:57 +00:00
}
}
try {
final FileWithSuffix file = context.getFileWithSuffix(from, realName);
2022-06-27 16:33:45 +00:00
final Reader tmp = file.getReader(UTF_8);
if (tmp == null)
throw new EaterException("No such theme " + realName, getStringLocated());
2022-06-27 16:33:45 +00:00
return ReadLineReader.create(tmp, "theme " + realName);
2021-05-14 08:42:57 +00:00
} catch (IOException e) {
2022-08-17 17:34:24 +00:00
Logme.error(e);
throw new EaterException("Cannot load " + realName, getStringLocated());
2021-05-14 08:42:57 +00:00
}
}
2021-05-14 08:42:57 +00:00
public String getName() {
return name;
}
}