OSDN Git Service

* change writting.
[modchxj/mod_chxj.git] / src / qs_parse_attr.c
1 /*
2  * Copyright (C) 2005 QSDN,Inc. All rights reserved.
3  * Copyright (C) 2005 Atsushi Konno All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 #include <stdio.h>
18 #include "qs_parse_string.h"
19 #include "qs_parse_attr.h"
20 #include "qs_log.h"
21 #include "qs_ignore_sp.h"
22
23
24 Attr*
25 qs_parse_attr(Doc* doc, const char*s, int len, int *pos) 
26 {
27   int   ii;
28   int   start_pos;
29   int   size;
30   int   novalue;
31   char* name;
32   char* value;
33   Attr* attr;
34   int   use_quote = 0;
35   int   backslash = 0;
36
37   QX_LOGGER_DEBUG("start qs_parse_attr()");
38
39   /* ignore space */
40   ii = start_pos = qs_ignore_sp_and_quote(doc, s, len);
41   QX_LOGGER_DEBUG_INT("len",len);
42
43   /* get attr name */
44   for (;ii<len; ii++) {
45     if (is_white_space(s[ii])) {
46       break;
47     }
48     if (s[ii] == '=') {
49       break;
50     }
51   }
52
53   size = ii - start_pos;
54   QX_LOGGER_DEBUG_INT("size", size);
55   /* not found */
56   if (size == 0) {
57     *pos = ii;
58     return NULL;
59   }
60   name = (char*)apr_palloc(doc->pool,size+1);
61   memset(name, 0, size+1);
62   memcpy(name, &s[start_pos], size);
63   QX_LOGGER_DEBUG((char*)name);
64
65   novalue = 0;
66   /* find '=' */
67   for (;ii<len; ii++) {
68     if (is_white_space(s[ii])) 
69       /* ignore */
70       continue;
71     if (s[ii] == '=') 
72       ii++;
73     else 
74       /* novalue */
75       novalue = 1;
76     break;
77   }
78
79   if (ii == len) 
80     novalue = 1;
81
82   size = 0;
83   if (!novalue) {
84     /* ignore space */
85     ii += qs_ignore_sp(doc, &s[ii], len-ii);
86     for (;ii<len; ii++) {
87       if (s[ii] == '\'' || s[ii] == '"') {
88         use_quote = 1;
89         ii++;
90         break;
91       }
92       if (!is_white_space(s[ii])) {
93         break;
94       }
95     }
96   
97     start_pos = ii;
98     /* get attr value */
99     for (;ii<len; ii++) {
100       if (is_sjis_kanji(s[ii])) {
101         ii++;
102         continue;
103       }
104       if (is_sjis_kana(s[ii])) 
105         continue;
106       if (is_white_space(s[ii])) {
107         if (! use_quote) 
108           break;
109       }
110       if (s[ii] == '"') 
111         break;
112
113       if (s[ii] == '\'') 
114         break;
115     }
116     size = ii - start_pos;
117     QX_LOGGER_DEBUG_INT("size",size);
118   }
119
120   value = (char*)apr_palloc(doc->pool, size+1);
121   memset(value, 0, size+1);
122   if (size != 0) 
123     memcpy(value, &s[start_pos], size);
124
125   attr = qs_new_attr(doc);
126   attr->name = name;
127   attr->value = value;
128   QX_LOGGER_DEBUG(attr->name);
129   QX_LOGGER_DEBUG(attr->value);
130
131   QX_LOGGER_DEBUG("end qs_parse_attr()");
132   *pos = ii;
133   return attr;
134 }
135
136 Attr*
137 qs_new_attr(Doc* doc) 
138 {
139   Attr* attr = (Attr*)apr_palloc(doc->pool,sizeof(Attr));
140   if (attr == NULL) {
141     QX_LOGGER_FATAL("Out Of Memory");
142   }
143   attr->next   = NULL;
144   attr->parent = NULL;
145   attr->name   = NULL;
146   attr->value  = NULL;
147   return attr;
148 }
149 /*
150  * vim:ts=2 et
151  */