// // NSData+RSParser.m // RSParser // // Created by Brent Simmons on 6/24/17. // Copyright © 2017 Ranchero Software, LLC. All rights reserved. // #import "NSData+RSParser.h" /* TODO: find real-world cases where the isProbably* cases fail when they should succeed, and add them to tests.*/ static BOOL bytesAreProbablyHTML(const char *bytes, NSUInteger numberOfBytes); static BOOL bytesAreProbablyXML(const char *bytes, NSUInteger numberOfBytes); static BOOL bytesStartWithStringIgnoringWhitespace(const char *string, const char *bytes, NSUInteger numberOfBytes); @implementation NSData (RSParser) - (BOOL)isProbablyHTML { return bytesAreProbablyHTML(self.bytes, self.length); } - (BOOL)isProbablyXML { return bytesAreProbablyXML(self.bytes, self.length); } - (BOOL)isProbablyJSON { return bytesStartWithStringIgnoringWhitespace("{", self.bytes, self.length); } - (BOOL)isProbablyJSONFeed { if (![self isProbablyJSON]) { return NO; } return didFindString("https://jsonfeed.org/version/", self.bytes, self.length); } - (BOOL)isProbablyRSSInJSON { if (![self isProbablyJSON]) { return NO; } const char *bytes = self.bytes; NSUInteger length = self.length; return didFindString("rss", bytes, length) && didFindString("channel", bytes, length) && didFindString("item", bytes, length); } - (BOOL)isProbablyRSS { if (![self isProbablyXML]) { return NO; } return didFindString("