summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/handler/TypeGetter.java
blob: 9dab56af8471cc6f0e3eb2b5d9fe5d9f736a77b6 (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
package de.podfetcher.syndication.handler;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;

import android.util.Log;

import de.podfetcher.feed.Feed;

/** Gets the type of a specific feed. */
public class TypeGetter {
	private static final String TAG = "TypeGetter";
	
	enum Type {
		RSS20, ATOM, INVALID
	}

	private static final String ATOM_ROOT = "feed";
	private static final String RSS_ROOT = "rss";

	public Type getType(Feed feed) {
		XmlPullParserFactory factory;
		try {
			factory = XmlPullParserFactory.newInstance();
			factory.setNamespaceAware(true);
			XmlPullParser xpp = factory.newPullParser();
			xpp.setInput(createReader(feed));
			int eventType = xpp.getEventType();
			while (eventType != XmlPullParser.END_DOCUMENT) {
				if (eventType == XmlPullParser.START_TAG) {
					String tag = xpp.getName();
					if (tag.equals(ATOM_ROOT)) {
						Log.d(TAG, "Recongnized type Atom");
						return Type.ATOM;
					} else if (tag.equals(RSS_ROOT)
							&& (xpp.getAttributeValue(null, "version")
									.equals("2.0"))) {
						Log.d(TAG, "Recognized type RSS 2.0");
						return Type.RSS20;
					} else {
						return Type.INVALID;
					}
				} else {
					eventType = xpp.next();
				}
			}

		} catch (XmlPullParserException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return Type.INVALID;
	}

	private Reader createReader(Feed feed) {
		FileReader reader;
		try {
			reader = new FileReader(new File(feed.getFile_url()));
		} catch (FileNotFoundException e) {
			e.printStackTrace();
			return null;
		}
		return reader;
	}
}