summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
diff options
context:
space:
mode:
Diffstat (limited to 'dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java')
-rw-r--r--dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java80
1 files changed, 80 insertions, 0 deletions
diff --git a/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java b/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
new file mode 100644
index 0000000..b630564
--- /dev/null
+++ b/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
@@ -0,0 +1,80 @@
+package org.onap.sdc.dcae.checker;
+
+import org.onap.sdc.common.onaplog.OnapLoggerDebug;
+import org.onap.sdc.common.onaplog.OnapLoggerError;
+
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.io.BufferedReader;
+import java.io.IOException;
+
+import java.net.URI;
+import java.net.URL;
+import java.net.MalformedURLException;
+
+/**
+ * Represents a yaml document to be parsed/validated/checked
+ */
+public class Target {
+
+ private static OnapLoggerError errLogger = OnapLoggerError.getInstance();
+ private static OnapLoggerDebug debugLogger = OnapLoggerDebug.getInstance();
+
+
+ private String name; //maintained mainly for logging
+ private URI location;
+ private Object target; //this is the parsed form of the target
+
+ private Report report = new Report(); //collects the errors related to this target
+
+ public Target(String theName, URI theLocation) {
+ this.name = theName;
+ this.location = theLocation;
+ }
+
+ public String getName() {
+ return this.name;
+ }
+
+ public URI getLocation() {
+ return this.location;
+ }
+
+ public Report getReport() {
+ return this.report;
+ }
+
+ public void report(Throwable theError) {
+ this.report.add(theError);
+ }
+
+ public void report(String theErrMsg) {
+ this.report.add(new Exception(theErrMsg));
+ }
+
+ public void setTarget(Object theTarget) {
+ this.target = theTarget;
+ }
+
+ public Object getTarget() {
+ return this.target;
+ }
+
+ /*
+ * @return a reader for the source or null if failed
+ */
+ public Reader open() throws IOException {
+
+ return new BufferedReader(
+ new InputStreamReader(
+ this.location.toURL().openStream()));
+ }
+
+ public String toString() {
+ //return String.format("Target %s (%.20s ...)", this.location, this.target == null ? "" : this.target.toString());
+ return String.format("Target %s at %s", this.name, this.location);
+
+ }
+}
+