2017-08-12 14:56:14 -04:00
|
|
|
/*
|
|
|
|
__ __ _
|
|
|
|
___\ \/ /_ __ __ _| |_
|
|
|
|
/ _ \\ /| '_ \ / _` | __|
|
|
|
|
| __// \| |_) | (_| | |_
|
|
|
|
\___/_/\_\ .__/ \__,_|\__|
|
|
|
|
|_| XML parser
|
|
|
|
|
|
|
|
Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
|
|
|
|
Copyright (c) 2000-2017 Expat development team
|
|
|
|
Licensed under the MIT license:
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
persons to whom the Software is furnished to do so, subject to the
|
|
|
|
following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
1998-11-30 22:32:20 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include "xmlmime.h"
|
|
|
|
|
2002-07-01 11:13:02 -04:00
|
|
|
static const char *
|
|
|
|
getTok(const char **pp)
|
1998-11-30 22:32:20 -05:00
|
|
|
{
|
|
|
|
/* inComment means one level of nesting; inComment+1 means two levels etc */
|
|
|
|
enum { inAtom, inString, init, inComment };
|
|
|
|
int state = init;
|
|
|
|
const char *tokStart = 0;
|
|
|
|
for (;;) {
|
|
|
|
switch (**pp) {
|
|
|
|
case '\0':
|
|
|
|
if (state == inAtom)
|
2002-07-01 11:13:02 -04:00
|
|
|
return tokStart;
|
1998-11-30 22:32:20 -05:00
|
|
|
return 0;
|
|
|
|
case ' ':
|
|
|
|
case '\r':
|
|
|
|
case '\t':
|
|
|
|
case '\n':
|
|
|
|
if (state == inAtom)
|
2002-07-01 11:13:02 -04:00
|
|
|
return tokStart;
|
1998-11-30 22:32:20 -05:00
|
|
|
break;
|
|
|
|
case '(':
|
|
|
|
if (state == inAtom)
|
2002-07-01 11:13:02 -04:00
|
|
|
return tokStart;
|
1998-11-30 22:32:20 -05:00
|
|
|
if (state != inString)
|
2002-07-01 11:13:02 -04:00
|
|
|
state++;
|
1998-11-30 22:32:20 -05:00
|
|
|
break;
|
|
|
|
case ')':
|
|
|
|
if (state > init)
|
2002-07-01 11:13:02 -04:00
|
|
|
--state;
|
1998-11-30 22:32:20 -05:00
|
|
|
else if (state != inString)
|
2002-07-01 11:13:02 -04:00
|
|
|
return 0;
|
1998-11-30 22:32:20 -05:00
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
case '/':
|
|
|
|
case '=':
|
|
|
|
if (state == inAtom)
|
2002-07-01 11:13:02 -04:00
|
|
|
return tokStart;
|
1998-11-30 22:32:20 -05:00
|
|
|
if (state == init)
|
2002-07-01 11:13:02 -04:00
|
|
|
return (*pp)++;
|
1998-11-30 22:32:20 -05:00
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
++*pp;
|
|
|
|
if (**pp == '\0')
|
2002-07-01 11:13:02 -04:00
|
|
|
return 0;
|
1998-11-30 22:32:20 -05:00
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
switch (state) {
|
|
|
|
case inString:
|
2002-07-01 11:13:02 -04:00
|
|
|
++*pp;
|
|
|
|
return tokStart;
|
1998-11-30 22:32:20 -05:00
|
|
|
case inAtom:
|
2002-07-01 11:13:02 -04:00
|
|
|
return tokStart;
|
1998-11-30 22:32:20 -05:00
|
|
|
case init:
|
2002-07-01 11:13:02 -04:00
|
|
|
tokStart = *pp;
|
|
|
|
state = inString;
|
|
|
|
break;
|
1998-11-30 22:32:20 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (state == init) {
|
2002-07-01 11:13:02 -04:00
|
|
|
tokStart = *pp;
|
|
|
|
state = inAtom;
|
1998-11-30 22:32:20 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++*pp;
|
|
|
|
}
|
|
|
|
/* not reached */
|
|
|
|
}
|
|
|
|
|
2000-04-21 00:20:31 -04:00
|
|
|
/* key must be lowercase ASCII */
|
1998-11-30 22:32:20 -05:00
|
|
|
|
2002-07-01 11:13:02 -04:00
|
|
|
static int
|
|
|
|
matchkey(const char *start, const char *end, const char *key)
|
1998-11-30 22:32:20 -05:00
|
|
|
{
|
|
|
|
if (!start)
|
|
|
|
return 0;
|
|
|
|
for (; start != end; start++, key++)
|
|
|
|
if (*start != *key && *start != 'A' + (*key - 'a'))
|
|
|
|
return 0;
|
|
|
|
return *key == '\0';
|
|
|
|
}
|
|
|
|
|
2002-07-01 11:13:02 -04:00
|
|
|
void
|
|
|
|
getXMLCharset(const char *buf, char *charset)
|
1998-11-30 22:32:20 -05:00
|
|
|
{
|
|
|
|
const char *next, *p;
|
|
|
|
|
|
|
|
charset[0] = '\0';
|
|
|
|
next = buf;
|
|
|
|
p = getTok(&next);
|
|
|
|
if (matchkey(p, next, "text"))
|
|
|
|
strcpy(charset, "us-ascii");
|
|
|
|
else if (!matchkey(p, next, "application"))
|
|
|
|
return;
|
|
|
|
p = getTok(&next);
|
|
|
|
if (!p || *p != '/')
|
|
|
|
return;
|
|
|
|
p = getTok(&next);
|
2018-10-21 08:33:25 -04:00
|
|
|
/* BEGIN disabled code */
|
2018-10-21 02:16:42 -04:00
|
|
|
if (0) {
|
|
|
|
if (!matchkey(p, next, "xml") && charset[0] == '\0')
|
|
|
|
return;
|
|
|
|
}
|
2018-10-21 08:33:25 -04:00
|
|
|
/* END disabled code */
|
1998-11-30 22:32:20 -05:00
|
|
|
p = getTok(&next);
|
|
|
|
while (p) {
|
|
|
|
if (*p == ';') {
|
|
|
|
p = getTok(&next);
|
|
|
|
if (matchkey(p, next, "charset")) {
|
2002-07-01 11:13:02 -04:00
|
|
|
p = getTok(&next);
|
|
|
|
if (p && *p == '=') {
|
|
|
|
p = getTok(&next);
|
|
|
|
if (p) {
|
|
|
|
char *s = charset;
|
|
|
|
if (*p == '"') {
|
|
|
|
while (++p != next - 1) {
|
|
|
|
if (*p == '\\')
|
|
|
|
++p;
|
|
|
|
if (s == charset + CHARSET_MAX - 1) {
|
|
|
|
charset[0] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*s++ = *p;
|
|
|
|
}
|
|
|
|
*s++ = '\0';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (next - p > CHARSET_MAX - 1)
|
|
|
|
break;
|
|
|
|
while (p != next)
|
|
|
|
*s++ = *p++;
|
|
|
|
*s = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
1998-11-30 22:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
p = getTok(&next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TEST
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2002-07-01 11:13:02 -04:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
1998-11-30 22:32:20 -05:00
|
|
|
{
|
|
|
|
char buf[CHARSET_MAX];
|
|
|
|
if (argc <= 1)
|
|
|
|
return 1;
|
|
|
|
printf("%s\n", argv[1]);
|
|
|
|
getXMLCharset(argv[1], buf);
|
|
|
|
printf("charset=\"%s\"\n", buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* TEST */
|