This commit is contained in:
Georgy Litvinov 2020-08-16 12:04:40 +02:00
parent 83045e9422
commit 2b36fde70a
5 changed files with 110 additions and 59 deletions

View file

@ -5,7 +5,7 @@ import com.sun.star.uno.XComponentContext;
import pro.litvinovg.w2phtml.gui.ConfigurationWindow; import pro.litvinovg.w2phtml.gui.ConfigurationWindow;
import pro.litvinovg.w2phtml.gui.ConversionExecutor; import pro.litvinovg.w2phtml.gui.ConversionExecutor;
import pro.litvinovg.w2phtml.gui.Document; import pro.litvinovg.w2phtml.gui.ODTDocument;
import com.sun.star.lib.uno.helper.Factory; import com.sun.star.lib.uno.helper.Factory;

View file

@ -77,7 +77,7 @@ public class ConfigurationWindow extends JFrame {
createEvents(); createEvents();
} }
public ConfigurationWindow(XComponentContext context, Document doc) { public ConfigurationWindow(XComponentContext context, ODTDocument doc) {
this.context = context; this.context = context;
fileName = doc.getFileName(); fileName = doc.getFileName();
setTitle("Converter from ODT to HTML, ePub and RDF"); setTitle("Converter from ODT to HTML, ePub and RDF");
@ -954,7 +954,7 @@ public class ConfigurationWindow extends JFrame {
} }
public static void runGUI(XComponentContext context) { public static void runGUI(XComponentContext context) {
Document doc = new Document(context); ODTDocument doc = new ODTDocument(context);
if (singleFrame != null) { if (singleFrame != null) {
singleFrame.dispose(); singleFrame.dispose();
} }

View file

@ -3,41 +3,113 @@ package pro.litvinovg.w2phtml.gui;
import java.util.Map; import java.util.Map;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import javax.swing.JTextPane;
import javax.swing.SwingUtilities;
import javax.swing.text.AbstractDocument;
import javax.swing.text.BadLocationException;
import javax.swing.text.Document;
import javax.swing.text.Element;
import javax.swing.text.SimpleAttributeSet;
import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.PatternLayout;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.core.AppenderBase; import ch.qos.logback.core.AppenderBase;
public class LogAppender<ILoggingEvent> extends AppenderBase<ILoggingEvent> { public class LogAppender extends AppenderBase<ch.qos.logback.classic.spi.ILoggingEvent> {
private Map eventMap = new ConcurrentHashMap(); private static SimpleAttributeSet ERROR_ATT, WARN_ATT, INFO_ATT, DEBUG_ATT, TRACE_ATT, RESTO_ATT;
private String prefix; private PatternLayout patternLayout;
private static LogAppender LOG_APPENDER_INSTANCE = null;
public String getPrefix() {
return prefix;
}
public void setPrefix(String prefix) {
this.prefix = prefix;
}
@Override @Override
protected void append(ILoggingEvent event) { protected void append(ch.qos.logback.classic.spi.ILoggingEvent event) {
if (prefix == null || "".equals(prefix)) { // Formata mensagem do log
addError("Prefix is not set for LogAppender."); String formattedMsg = patternLayout.doLayout( event);
return;
} // Forma segura de atualizar o JTextpane
eventMap.put(prefix + System.currentTimeMillis(), event); SwingUtilities.invokeLater(() -> {
} // Alias para o JTextPane no frame da aplicação
JTextPane textPane = null;//App.MAIN_FORM.getTextPane();
public LogAppender createInstance() {
if (LOG_APPENDER_INSTANCE == null) { try {
LOG_APPENDER_INSTANCE = new LogAppender(); // Trunca linhas para economizar memória
} // Quando atingir 2000 linhas, eu quero que
return LOG_APPENDER_INSTANCE; // apague as 500 primeiras linhas
} int limite = 1000;
int apaga = 200;
public void putEvent(String key, String value) { if (textPane.getDocument().getDefaultRootElement().getElementCount() > limite) {
eventMap.put(key, value); int end = getLineEndOffset(textPane, apaga);
} replaceRange(textPane, null, 0, end);
public Map getEventMap() { }
return eventMap;
} // Decide qual atributo (estilo) devo usar de acordo com o nível o log
if (event.getLevel() == Level.ERROR)
textPane.getDocument().insertString(textPane.getDocument().getLength(), formattedMsg, ERROR_ATT);
else if (event.getLevel() == Level.WARN)
textPane.getDocument().insertString(textPane.getDocument().getLength(), formattedMsg, WARN_ATT);
else if (event.getLevel() == Level.INFO)
textPane.getDocument().insertString(textPane.getDocument().getLength(), formattedMsg, INFO_ATT);
else if (event.getLevel() == Level.DEBUG)
textPane.getDocument().insertString(textPane.getDocument().getLength(), formattedMsg, DEBUG_ATT);
else if (event.getLevel() == Level.TRACE)
textPane.getDocument().insertString(textPane.getDocument().getLength(), formattedMsg, TRACE_ATT);
else
textPane.getDocument().insertString(textPane.getDocument().getLength(), formattedMsg, RESTO_ATT);
} catch (BadLocationException e) {
// Faz nada
}
// Vai para a última linha
textPane.setCaretPosition(textPane.getDocument().getLength());
});
}
public void start() {
patternLayout = new PatternLayout();
patternLayout.setContext(getContext());
patternLayout.setPattern("%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n");
patternLayout.start();
super.start();
}
private int getLineCount(JTextPane textPane) {
return textPane.getDocument().getDefaultRootElement().getElementCount();
}
private void replaceRange(JTextPane textPane, String str, int start, int end) throws IllegalArgumentException {
if (end < start) {
throw new IllegalArgumentException("end before start");
}
Document doc = textPane.getDocument();
if (doc != null) {
try {
if (doc instanceof AbstractDocument) {
((AbstractDocument)doc).replace(start, end - start, str, null);
}
else {
doc.remove(start, end - start);
doc.insertString(start, str, null);
}
} catch (BadLocationException e) {
throw new IllegalArgumentException(e.getMessage());
}
}
}
private int getLineEndOffset(JTextPane textPane, int line) throws BadLocationException {
int lineCount = getLineCount(textPane);
if (line < 0) {
throw new BadLocationException("Negative line", -1);
} else if (line >= lineCount) {
throw new BadLocationException("No such line", textPane.getDocument().getLength()+1);
} else {
Element map = textPane.getDocument().getDefaultRootElement();
Element lineElem = map.getElement(line);
int endOffset = lineElem.getEndOffset();
// hide the implicit break at the end of the document
return ((line == lineCount - 1) ? (endOffset - 1) : endOffset);
}
}
} }

View file

@ -23,9 +23,9 @@ import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XComponentContext; import com.sun.star.uno.XComponentContext;
import com.sun.star.util.XModifiable; import com.sun.star.util.XModifiable;
public class Document { public class ODTDocument {
private static final Logger logger = LoggerFactory.getLogger(Document.class); private static final Logger logger = LoggerFactory.getLogger(ODTDocument.class);
private XComponentContext context; private XComponentContext context;
@ -41,7 +41,7 @@ public class Document {
private XDispatchProvider dispatchProvider; private XDispatchProvider dispatchProvider;
XTextDocument textDocument; XTextDocument textDocument;
public Document(XComponentContext componentContext) { public ODTDocument(XComponentContext componentContext) {
if (componentContext != null) { if (componentContext != null) {
context = componentContext; context = componentContext;
multiComponentFactory = context.getServiceManager(); multiComponentFactory = context.getServiceManager();

View file

@ -1,21 +0,0 @@
package w2phtml.rdf;
import static org.junit.Assert.*;
import java.util.Vector;
import org.junit.Test;
import w2phtml.xhtml.XhtmlDocument;
public class DocumentStructureTests {
@Test
public void DocumentStructureExists() {
String fileName = "";
Vector<XhtmlDocument> files = new Vector<XhtmlDocument>();
DocumentStructure docStructure = new DocumentStructure(files , fileName);
}
}