Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/compensator/org.eclipse.fx.code.compensator.editor/src/org/eclipse/fx/code/compensator/editor/internal/FileInput.java')
-rw-r--r--experimental/compensator/org.eclipse.fx.code.compensator.editor/src/org/eclipse/fx/code/compensator/editor/internal/FileInput.java70
1 files changed, 70 insertions, 0 deletions
diff --git a/experimental/compensator/org.eclipse.fx.code.compensator.editor/src/org/eclipse/fx/code/compensator/editor/internal/FileInput.java b/experimental/compensator/org.eclipse.fx.code.compensator.editor/src/org/eclipse/fx/code/compensator/editor/internal/FileInput.java
new file mode 100644
index 000000000..2f715f09d
--- /dev/null
+++ b/experimental/compensator/org.eclipse.fx.code.compensator.editor/src/org/eclipse/fx/code/compensator/editor/internal/FileInput.java
@@ -0,0 +1,70 @@
+/*******************************************************************************
+* Copyright (c) 2014 BestSolution.at and others.
+* All rights reserved. This program and the accompanying materials
+* are made available under the terms of the Eclipse Public License v1.0
+* which accompanies this distribution, and is available at
+* http://www.eclipse.org/legal/epl-v10.html
+*
+* Contributors:
+* Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
+*******************************************************************************/
+package org.eclipse.fx.code.compensator.editor.internal;
+
+import java.io.BufferedReader;
+import java.io.BufferedWriter;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+
+import org.eclipse.fx.code.compensator.editor.ContentTypeProvider;
+import org.eclipse.fx.code.compensator.editor.Input;
+
+public class FileInput implements Input<String>, ContentTypeProvider {
+ private Path path;
+
+ public FileInput(Path path) {
+ this.path = path;
+ }
+
+ @Override
+ public String getData() {
+ try(BufferedReader reader = Files.newBufferedReader(path)) {
+ StringBuilder b = new StringBuilder();
+ String line;
+ while( (line = reader.readLine()) != null ) {
+ b.append(line);
+ }
+ reader.close();
+ return b.toString();
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ return "";
+ }
+
+ @Override
+ public void setData(String data) {
+ try(BufferedWriter writer = Files.newBufferedWriter(path)) {
+ writer.write(data);
+ writer.close();
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ }
+
+ @Override
+ public String getContentType() {
+ //FIXME Need suffix => type mapping
+ System.err.println("PATH: " + path);
+ if( path.toString().endsWith(".xml") ) {
+ return ContentTypeProvider.XML;
+ } else if( path.toString().endsWith(".java") ) {
+ return ContentTypeProvider.JAVA;
+ } else if( path.toString().endsWith(".js") ) {
+ return ContentTypeProvider.JAVASCRIPT;
+ }
+ return null;
+ }
+} \ No newline at end of file

Back to the top