summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/syndication/handler/HandlerState.java
blob: 6c206b8f3782042aca2b8a545c9de4209d0fe1aa (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package de.danoeh.antennapod.syndication.handler;

import java.util.HashMap;
import java.util.Stack;

import de.danoeh.antennapod.feed.Feed;
import de.danoeh.antennapod.feed.FeedItem;
import de.danoeh.antennapod.syndication.namespace.Namespace;
import de.danoeh.antennapod.syndication.namespace.SyndElement;

/** Contains all relevant information to describe the current state of a SyndHandler.*/
public class HandlerState {
	
	/** Feed that the Handler is currently processing. */
	protected Feed feed;
	protected FeedItem currentItem;
	protected Stack<SyndElement> tagstack;
	/** Namespaces that have been defined so far. */
	protected HashMap<String, Namespace> namespaces;
	protected Stack<Namespace> defaultNamespaces;
	/** Buffer for saving characters. */
	protected StringBuffer contentBuf;
	
	public HandlerState(Feed feed) {
		this.feed = feed;
		tagstack = new Stack<SyndElement>();
		namespaces = new HashMap<String, Namespace>();
		defaultNamespaces = new Stack<Namespace>();
	}
	
	
	public Feed getFeed() {
		return feed;
	}
	public FeedItem getCurrentItem() {
		return currentItem;
	}
	public Stack<SyndElement> getTagstack() {
		return tagstack;
	}


	public void setFeed(Feed feed) {
		this.feed = feed;
	}


	public void setCurrentItem(FeedItem currentItem) {
		this.currentItem = currentItem;
	}

	/** Returns the SyndElement that comes after the top element of the tagstack. */
	public SyndElement getSecondTag() {
		SyndElement top = tagstack.pop();
		SyndElement second = tagstack.peek();
		tagstack.push(top);
		return second;
	}
	
	public SyndElement getThirdTag() {
		SyndElement top = tagstack.pop();
		SyndElement second = tagstack.pop();
		SyndElement third = tagstack.peek();
		tagstack.push(second);
		tagstack.push(top);
		return third;
	}
	
	public StringBuffer getContentBuf() {
		return contentBuf;
	}

	
	
	
	
}