-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
66 additions
and
51 deletions.
There are no files selected for viewing
79 changes: 47 additions & 32 deletions
79
core/src/main/java/io/narayana/nta/logparsing/as8/filters/GetFilterKeywords.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,56 @@ | ||
package io.narayana.nta.logparsing.as8.filters; | ||
|
||
import org.apache.log4j.Logger; | ||
|
||
import java.io.FileNotFoundException; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.util.HashSet; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Properties; | ||
import java.util.Set; | ||
|
||
public class GetFilterKeywords { | ||
|
||
InputStream inputStream; | ||
String filterKeywords; | ||
|
||
public String getPropValues() { | ||
|
||
try { | ||
Properties prop = new Properties(); | ||
|
||
String propFileName = "filter.properties"; | ||
inputStream = getClass().getClassLoader().getResourceAsStream(propFileName); | ||
|
||
if (inputStream != null) { | ||
prop.load(inputStream); | ||
} else { | ||
throw new FileNotFoundException("property file '" + propFileName + "' not found in the classpath"); | ||
} | ||
|
||
filterKeywords = prop.getProperty("keywords"); | ||
|
||
} catch (Exception e) { | ||
System.out.println("Exception: " + e); | ||
} finally { | ||
try { | ||
inputStream.close(); | ||
} catch (IOException e){ | ||
} | ||
} | ||
return filterKeywords; | ||
} | ||
private List<String> filterKeywords; | ||
private static final Logger logger = Logger.getLogger(GetFilterKeywords.class.getName()); | ||
|
||
private static class GetFilterKeywordsHolder { | ||
private static final GetFilterKeywords INSTANCE = new GetFilterKeywords(); | ||
} | ||
|
||
public static final GetFilterKeywords getInstance() { | ||
return GetFilterKeywordsHolder.INSTANCE; | ||
} | ||
|
||
private GetFilterKeywords() { | ||
InputStream inputStream = null; | ||
try { | ||
Properties prop = new Properties(); | ||
filterKeywords = new ArrayList<>(); | ||
|
||
String propFileName = "filter.properties"; | ||
logger.warn(getClass().getClassLoader().getResource()); | ||
inputStream = getClass().getClassLoader().getResourceAsStream(propFileName); | ||
if (inputStream != null) { | ||
prop.load(inputStream); | ||
} else { | ||
throw new FileNotFoundException("property file '" + propFileName + "' not found in the classpath"); | ||
} | ||
|
||
for (String name : prop.stringPropertyNames()) { | ||
if (name.contains("keywords")) | ||
filterKeywords.add(prop.getProperty(name)); | ||
} | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
} finally { | ||
try { | ||
inputStream.close(); | ||
} catch (IOException ignored) { | ||
} | ||
} | ||
} | ||
|
||
public List<String> getFilterKeywords() { | ||
return filterKeywords; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
keywords=TransactionImple,Periodic Recovery,TransactionSynchronizationRegistryImple | ||
keywords.1=TransactionImple | ||
keywords.2=Periodic Recovery | ||
keywords.3=TransactionSynchronizationRegistryImple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
keywords=TransactionImple,Periodic Recovery,TransactionSynchronizationRegistryImple | ||
keywords.1=TransactionImple | ||
keywords.2=Periodic Recovery | ||
keywords.3=TransactionSynchronizationRegistryImple |