You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.7 KiB

package com.github.jreddit.parser.listing;
import java.util.LinkedList;
import java.util.List;
import org.json.simple.parser.ParseException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.jreddit.parser.entity.Comment;
import com.github.jreddit.parser.entity.Thing;
import com.github.jreddit.parser.exception.RedditParseException;
public class CommentsListingParser extends RedditListingParser {
private static final Logger LOGGER = LoggerFactory.getLogger(CommentsListingParser.class);
/**
* Parse JSON received from reddit into a list of comments.
* This parser expects the JSON to be of a listing of comments.<br>
* <br>
* <i>Note: this parsing can only be performed on listings of comments, not on
* a comment tree of a submission.</i>
*
* @param jsonText JSON Text
* @return Parsed list of comments
*
* @throws ParseException
* @throws RedditRequestException
*/
public List<Comment> parse(String jsonText) throws RedditParseException {
// Parse to a list of things
List<Thing> things = this.parseGeneric(jsonText);
// List of comment and submission mixed elements
List<Comment> comments = new LinkedList<Comment>();
// Iterate over things
for (Thing t : things) {
if (t instanceof Comment) {
comments.add((Comment) t);
} else {
LOGGER.warn("Encountered an unexpected reddit thing (" + t.getKind().value() + "), skipping it.");
}
}
// Return resulting comments list
return comments;
}
}