summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParshad Patel <pars.patel@samsung.com>2019-03-28 14:55:53 +0900
committerParshad Patel <pars.patel@samsung.com>2019-03-28 14:55:58 +0900
commitf066c7d3d20112a1a888ed3930cd2a2928a04814 (patch)
tree5ee3023e89cbaa1aa680d2e41436e630f621f66c
parenta8aadf17072c22e7093c3aefeca215d4b10e125e (diff)
Fix sonar issues in javatoscachecker
Fix Make field final issue Fix Either log or rethrow this exception Add the "@Override" annotation above this method signature Issue-ID: MODELING-154 Change-Id: I629704406bf826f4698a74de6ccba46303490bdf Signed-off-by: Parshad Patel <pars.patel@samsung.com>
-rw-r--r--javatoscachecker/checker/src/main/java/org/onap/tosca/checker/CSARRepository.java99
-rw-r--r--javatoscachecker/checker/src/main/java/org/onap/tosca/checker/processing/ProcessorException.java40
2 files changed, 52 insertions, 87 deletions
diff --git a/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/CSARRepository.java b/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/CSARRepository.java
index 6375185..67c426a 100644
--- a/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/CSARRepository.java
+++ b/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/CSARRepository.java
@@ -48,12 +48,13 @@ import org.apache.commons.io.IOUtils;
*/
public class CSARRepository extends Repository {
-
- private String metaEntryName = "TOSCA-Metadata/TOSCA.meta";
-
- private byte[] data;
- private Properties meta = new Properties();
- private Map<URI, Target> entries = null;
+ private static Logger logger =
+ Logger.getLogger("com.att.research.is.tosca.yaml.CSARRepository");
+ private static final String CHARSET = "UTF-8";
+ private String metaEntryName = "TOSCA-Metadata/TOSCA.meta";
+ private byte[] data;
+ private Properties meta = new Properties();
+ private Map<URI, Target> entries = null;
public CSARRepository(String theName, URI theRoot) throws IOException {
super(theName, theRoot);
@@ -62,18 +63,18 @@ public class CSARRepository extends Repository {
private void load() throws IOException {
InputStream is = null;
- try {
- is = this.getRoot().toURL().openStream();
- this.data = IOUtils.toByteArray(is);
- }
- finally {
- if (is != null) {
- try {
- is.close();
- }
- catch(IOException iox) {}
- }
- }
+ try {
+ is = this.getRoot().toURL().openStream();
+ this.data = IOUtils.toByteArray(is);
+ } finally {
+ if (is != null) {
+ try {
+ is.close();
+ } catch (IOException iox) {
+ logger.log(Level.WARNING, "Failed to close input stream", iox);
+ }
+ }
+ }
}
//one should read the meta-inf/MANIFEST.MF file before deciding that a file is text
@@ -91,13 +92,14 @@ public class CSARRepository extends Repository {
}
}
catch (IOException iox) {
- log.log(Level.WARNING, "Failed to read archive", iox);
+ logger.log(Level.WARNING, "Failed to read archive", iox);
}
finally {
try {
archiveInputStream.close();
}
catch (IOException iox) {
+ logger.log(Level.WARNING, "Failed to close input stream", iox);
}
}
return result;
@@ -117,59 +119,20 @@ public class CSARRepository extends Repository {
private Boolean readMeta(InputStream theStream) {
BufferedReader reader = null;
try {
- reader = new BufferedReader(new InputStreamReader(theStream, "UTF-8"));
+ reader = new BufferedReader(new InputStreamReader(theStream, CHARSET));
this.meta.load(reader);
return Boolean.TRUE;
}
catch(IOException iox) {
- log.log(Level.WARNING, "Failed to read archive meta entry", iox);
+ logger.log(Level.WARNING, "Failed to read archive meta entry", iox);
return Boolean.FALSE;
}
- finally {
- /*
- if (reader != null) {
- try {
- reader.close();
- }
- catch (IOException iox) {
- }
- }
- */
- //!!Do not close as it is used with processData which does the entry close itself
- }
+ //!!Do not close reader as it is used with processData which does the entry close itself
}
- /*
- private Boolean readMeta() {
- BufferedReader reader = null;
- try {
- reader = new BufferedReader(new InputStreamReader(stream, "UTF-8"));
- String line = null;
- while ((line = reader.readLine()) != null) {
- //TODO:
- }
- return Boolean.TRUE;
- }
- catch (IOException iox) {
- log.log(Level.WARNING, "Failed to read archive meta entry", iox);
- return Boolean.FALSE;
- }
- finally {
- if (reader != null) {
- try {
- reader.close();
- }
- catch (IOException iox) {
- }
- }
- //!!Do not close as it is used with processData which does the entry close itself
- }
- }
- */
-
private Map<URI,Target> entries() {
if (this.entries == null) {
- this.entries = new HashMap<URI, Target>();
+ this.entries = new HashMap<>();
processData( (entry,stream) -> {
URI entryURI = this.rootURI.resolve(entry.getName());
this.entries.put(entryURI, new CsarTarget(entry.getName(), entryURI));
@@ -252,20 +215,21 @@ public class CSARRepository extends Repository {
while ((len = stream.read(buffer)) > 0) {
out.write(buffer, 0, len);
}
- log.info(entry.getName() + ": " + out.toString("UTF-8"));
+ logger.info(entry.getName() + ": " + out.toString(CHARSET));
}
catch (IOException iox) {
- log.warning("Failed to read entry data: " + iox);
- return out = null;
+ logger.warning("Failed to read entry data: " + iox);
+ out = null;
+ return out;
}
}
//!!Do not close as it is used with processData which does the entry close itself
try {
- return (out != null) ? out.toString("UTF-8") : null;
+ return (out != null) ? out.toString(CHARSET) : null;
}
catch (UnsupportedEncodingException uex) {
- log.warning("Failed to process entry data as string: " + uex);
+ logger.warning("Failed to process entry data as string: " + uex);
return "";
}
});
@@ -273,6 +237,7 @@ public class CSARRepository extends Repository {
return this.content;
}
+ @Override
public Reader open() throws IOException {
return new StringReader(content());
}
diff --git a/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/processing/ProcessorException.java b/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/processing/ProcessorException.java
index 2d9cd22..5bbd5ce 100644
--- a/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/processing/ProcessorException.java
+++ b/javatoscachecker/checker/src/main/java/org/onap/tosca/checker/processing/ProcessorException.java
@@ -20,24 +20,24 @@ import org.onap.tosca.checker.CheckerException;
*/
public class ProcessorException extends CheckerException {
- private Target target;
-
- public ProcessorException(Target theTarget, String theMsg, Throwable theCause) {
- super(theMsg, theCause);
- this.target = theTarget;
- }
-
- public ProcessorException(Target theTarget, String theMsg) {
- super(theMsg);
- this.target = theTarget;
- }
-
- public Target getTarget() {
- return this.target;
- }
-
- @Override
- public String getMessage() {
- return this.target + ":" + super.getMessage() + (getCause() == null ? "" : ("(" + getCause() + ")"));
- }
+ private final transient Target target;
+
+ public ProcessorException(Target theTarget, String theMsg, Throwable theCause) {
+ super(theMsg, theCause);
+ this.target = theTarget;
+ }
+
+ public ProcessorException(Target theTarget, String theMsg) {
+ super(theMsg);
+ this.target = theTarget;
+ }
+
+ public Target getTarget() {
+ return this.target;
+ }
+
+ @Override
+ public String getMessage() {
+ return this.target + ":" + super.getMessage() + (getCause() == null ? "" : ("(" + getCause() + ")"));
+ }
}