summaryrefslogtreecommitdiffstats
path: root/parsers/MetaParser.java
blob: 3519cf3013828228449abee6231ceddee9976ae8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
	}
}