#include "affunctions.h" #include #include #include #include #include #include #include #include #define EQUIVSET_LOC "equivset.txt" AFPData af_count(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to count" ); } string needle, haystack; if (args.size() < 2) { needle = ","; haystack = args[0].toString(); } else { needle = args[0].toString(); haystack = args[1].toString(); } size_t last_pos = 0; unsigned int count = 0; while (last_pos != haystack.npos) { count++; last_pos = haystack.find(needle, last_pos); } // One extra was added, but one extra is needed if only one arg was supplied. if (args.size() >= 2) { count--; } return AFPData((long int)count); } AFPData af_norm(vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to norm" ); } string orig = args[0].toString(); string::const_iterator p, charStart, end; int chr = 0,lastchr = 0; map const &equivSet = getEquivSet(); string result; p = orig.begin(); end = orig.end(); while (chr = next_utf8_char( p, charStart, end )) { std::map::const_iterator it; if ((it = equivSet.find(chr)) != equivSet.end()) { chr = it->second; } if (chr != lastchr && isalnum(chr)) { result.append(codepointToUtf8(chr)); } lastchr = chr; } return AFPData(result); } string rmdoubles(std::string const &orig) { string::const_iterator p, charStart, end; int chr,lastchr = 0; string result; p = orig.begin(); end = orig.end(); while (chr = next_utf8_char( p, charStart, end )) { if (chr != lastchr) { result.append(codepointToUtf8(chr)); } lastchr = chr; } return result; } AFPData af_specialratio(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to specialratio" ); } string orig = args[0].toString(); string::const_iterator p, charStart, end; int chr,lastchr = 0; int specialcount = 0; p = orig.begin(); end = orig.end(); while (chr = next_utf8_char( p, charStart, end )) { if (!isalnum(chr)) { specialcount++; } } double ratio = (float)(specialcount) / (float)(utf8_strlen(orig)); return AFPData(ratio); } AFPData af_rmspecials(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to rmspecials" ); } return AFPData(rmspecials(args[0].toString())); } std::string rmspecials(std::string const &orig) { string::const_iterator p, charStart, end; int chr = 0; string result; p = orig.begin(); end = orig.end(); while (chr = next_utf8_char( p, charStart, end )) { if (isalnum(chr)) { result.append(codepointToUtf8(chr)); } } return result; } AFPData af_ccnorm(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to ccnorm" ); } return AFPData( confusable_character_normalise( args[0].toString() ) ); } AFPData af_rmdoubles(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to rmdoubles" ); } return AFPData(rmdoubles(args[0].toString())); } AFPData af_length(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to lcase" ); } return AFPData( (long int)utf8_strlen(args[0].toString()) ); } AFPData af_lcase(std::vector const &args) { if (!args.size()) { throw AFPException( "Not enough arguments to lcase" ); } return AFPData(utf8_tolower(args[0].toString())); } std::string confusable_character_normalise(std::string const &orig) { string::const_iterator p, charStart, end; int chr; map const &equivSet = getEquivSet(); string result; p = orig.begin(); end = orig.end(); while (chr = next_utf8_char( p, charStart, end )) { map::const_iterator it; if ((it = equivSet.find(chr)) != equivSet.end()) { chr = it->second; } result.append(codepointToUtf8(chr)); } return result; } map const & getEquivSet() { static map equivSet; // Map of codepoint:codepoint if (equivSet.empty()) { ifstream eqsFile( EQUIVSET_LOC ); if (!eqsFile) { throw AFPException( "Unable to open equivalence sets!" ); } string line; while (getline(eqsFile,line)) { size_t pos = line.find_first_of( ":", 0 ); if (pos != line.npos) { // We have a codepoint:codepoint thing. int actual = 0; int canonical = 0; istringstream actual_buffer(line.substr(0,pos)); istringstream canon_buffer( line.substr(pos+1)); actual_buffer >> actual; canon_buffer >> canonical; if (actual != 0 && canonical != 0) { equivSet[actual] = canonical; } } } eqsFile.close(); } return equivSet; } // Weak UTF-8 decoder // Will return garbage on invalid input (overshort sequences, overlong sequences, etc.) // Stolen from wikidiff2 extension by Tim Starling (no point in reinventing the wheel) int next_utf8_char(std::string::const_iterator & p, std::string::const_iterator & charStart, std::string::const_iterator end) { int c=0; unsigned char byte; int bytes = 0; charStart = p; if (p == end) { return 0; } do { byte = (unsigned char)*p; if (byte < 0x80) { c = byte; bytes = 0; } else if (byte >= 0xc0) { // Start of UTF-8 character // If this is unexpected, due to an overshort sequence, we ignore the invalid // sequence and resynchronise here if (byte < 0xe0) { bytes = 1; c = byte & 0x1f; } else if (byte < 0xf0) { bytes = 2; c = byte & 0x0f; } else { bytes = 3; c = byte & 7; } } else if (bytes) { c <<= 6; c |= byte & 0x3f; --bytes; } else { // Unexpected continuation, ignore } ++p; } while (bytes && p != end); return c; } std::size_t utf8_strlen(std::string const &s) { std::size_t ret = 0; for (std::string::const_iterator it = s.begin(), end = s.end(); it < end; ++it) { int skip = 1; skip = U8_LENGTH(*it); if (it + skip >= end) return ret; /* end of string */ it += skip; } return ret; } /* * This could almost certainly be done in a nicer way. */ std::string utf8_tolower(std::string const &s) { std::vector ustring; UErrorCode error = U_ZERO_ERROR; for (int i = 0; i < s.size(); ) { UChar32 c; U8_NEXT(s.data(), i, s.size(), c); ustring.push_back(c); } std::vector dest; u_strToLower(&dest[0], dest.size(), &ustring[0], ustring.size(), NULL, &error); if (U_FAILURE(error)) return s; std::vector u8string; int i, j; for (i = 0, j = 0; i < dest.size(); j++) { U8_APPEND_UNSAFE(&u8string[0], i, dest[j]); } return std::string(u8string.begin(), u8string.begin() + i); } // Ported from MediaWiki core function in PHP. string codepointToUtf8(int codepoint) { string ret; if(codepoint < 0x80) { ret.append(1, codepoint); return ret; } if(codepoint < 0x800) { ret.append(1, codepoint >> 6 & 0x3f | 0xc0); ret.append(1, codepoint & 0x3f | 0x80); return ret; } if(codepoint < 0x10000) { ret.append(1, codepoint >> 12 & 0x0f | 0xe0); ret.append(1, codepoint >> 6 & 0x3f | 0x80); ret.append(1, codepoint & 0x3f | 0x80); return ret; } if(codepoint < 0x110000) { ret.append(1, codepoint >> 18 & 0x07 | 0xf0); ret.append(1, codepoint >> 12 & 0x3f | 0x80); ret.append(1, codepoint >> 6 & 0x3f | 0x80); ret.append(1, codepoint & 0x3f | 0x80); return ret; } throw AFPException("Asked for code outside of range ($codepoint)\n"); }