summaryrefslogtreecommitdiffstats
path: root/parsers/MetaParser.java
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-11-28 09:05:54 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-11-28 09:05:54 +0530
commit7d0d748b58711a28f1af0fabe8d399ebc067b898 (patch)
treec7236daaba09273468dec135527b53a13fa050cd /parsers/MetaParser.java
parent8d538fa1c1fccb3ce1c5324c9b7b6ebeb78439cf (diff)
new feature: meta tag for author info is available.
removed: parsers/DocumentName.java (MetaParser supersedes this Parser) added: parsers/MetaParser.java (it looks for meta info and updates them to PresentFile) modified: conversion/ConvertFile.java (now it initiates some of the PresentFile fields to null) parsers/Header.java (Meta field 'author' added) parsers/ParserList.java (added MetaParser, removed DocumentName) status/PresentFile.java (new field 'author') todo (update todo)
Diffstat (limited to 'parsers/MetaParser.java')
-rw-r--r--parsers/MetaParser.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/parsers/MetaParser.java b/parsers/MetaParser.java
new file mode 100644
index 0000000..3519cf3
--- /dev/null
+++ b/parsers/MetaParser.java
@@ -0,0 +1,39 @@
+package scruf.parsers;
+
+import java.util.regex.*;
+import scruf.status.*;
+
+/**
+ * this class deals with searching the 'scruffy' marked-up document
+ * for meta-tag related things.
+ */
+
+public class MetaParser implements Parser {
+ private Pattern pattern;
+ private Matcher matcher;
+ private NullIt nullIt;
+ public MetaParser() {
+ pattern = Pattern.compile("^meta\\-(.+?)\\:(.+)",
+ Pattern.MULTILINE);
+ nullIt = new NullIt();
+
+ }
+ public String parse(String fileContent) {
+ String value;
+ matcher = pattern.matcher(fileContent);
+ while(matcher.find()) {
+ value = matcher.group(2);
+ if(matcher.group(1).equals("author")) {
+ PresentFile.author = value;
+ }
+ else if(matcher.group(1).equals("title")) {
+ PresentFile.name = value;
+ }
+ // remove the found 'meta' markup to an empty string.
+ fileContent = nullIt.nullIt(fileContent,matcher.group());
+ // reset the matcher with the new file Content.
+ matcher.reset(fileContent);
+ }
+ return fileContent;
+ }
+} \ No newline at end of file