/* * Copyright (c) 2008, 2009, 2010, 2011 * Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include #include #include #import "OFString.h" #import "OFOutOfMemoryException.h" int _OFString_XMLEscaping_reference; @implementation OFString (XMLEscaping) - (OFString*)stringByXMLEscaping { char *retCString; const char *append; size_t retLength, appendLength; size_t i, j; OFString *ret; j = 0; retLength = length; /* * We can't use allocMemoryWithSize: here as it might be a @"" literal */ if ((retCString = malloc(retLength)) == NULL) @throw [OFOutOfMemoryException newWithClass: isa requestedSize: retLength]; for (i = 0; i < length; i++) { switch (string[i]) { case '<': append = "<"; appendLength = 4; break; case '>': append = ">"; appendLength = 4; break; case '"': append = """; appendLength = 6; break; case '\'': append = "'"; appendLength = 6; break; case '&': append = "&"; appendLength = 5; break; default: append = NULL; appendLength = 0; } if (append != NULL) { char *newRetCString; if ((newRetCString = realloc(retCString, retLength + appendLength)) == NULL) { free(retCString); @throw [OFOutOfMemoryException newWithClass: isa requestedSize: retLength + appendLength]; } retCString = newRetCString; retLength += appendLength - 1; memcpy(retCString + j, append, appendLength); j += appendLength; } else retCString[j++] = string[i]; } assert(j == retLength); @try { ret = [OFString stringWithCString: retCString length: retLength]; } @finally { free(retCString); } return ret; } @end