OSDN Git Service

* change writting.
[modchxj/mod_chxj.git] / src / mod_chxj.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 <unistd.h>
18 #include <string.h>
19
20 #include "httpd.h"
21 #include "http_config.h"
22 #include "http_core.h"
23 #include "http_protocol.h"
24 #include "http_log.h"
25 #include "ap_config.h"
26 #include "apr_strings.h"
27 #include "util_filter.h"
28 #include "apr_buckets.h"
29 #include "apr_lib.h"
30 #include "apr_tables.h"
31 #include "apr_dso.h"
32 #include "apr_general.h"
33 #include "apr_pools.h"
34
35 #include "mod_chxj.h"
36 #include "chxj_encoding.h"
37 #include "qs_ignore_sp.h"
38 #include "qs_log.h"
39 #include "qs_malloc.h"
40 #include "qs_parse_attr.h"
41 #include "qs_parse_file.h"
42 #include "qs_parse_string.h"
43 #include "qs_parse_tag.h"
44 #include "chxj_load_device_data.h"
45 #include "chxj_load_emoji_data.h"
46 #include "chxj_specified_device.h"
47 #include "chxj_tag_util.h"
48 #include "chxj_xhtml_mobile_1_0.h"
49 #include "chxj_hdml.h"
50 #include "chxj_chtml10.h"
51 #include "chxj_chtml20.h"
52 #include "chxj_chtml30.h"
53 #include "chxj_jhtml.h"
54
55 #include "chxj_img_conv_format.h"
56 #include "chxj_qr_code.h"
57 #include "chxj_encoding.h"
58 #include "chxj_apply_convrule.h"
59 #include "chxj_cookie.h"
60 #include "chxj_url_encode.h"
61
62
63 #define CHXJ_VERSION_PREFIX PACKAGE_NAME "/"
64 #define CHXJ_VERSION        PACKAGE_VERSION
65
66 converter_t convert_routine[] = {
67   {
68     /* CHXJ_SPEC_UNKNOWN          */
69     .converter = NULL,
70     .encoder  = NULL,
71   },
72   {
73     /* CHXJ_SPEC_Chtml_1_0        */
74     .converter = chxj_exchange_chtml10,
75     .encoder  = chxj_encoding,
76   },
77   {
78     /* CHXJ_SPEC_Chtml_2_0        */
79     .converter = chxj_exchange_chtml20,
80     .encoder  = chxj_encoding,
81   },
82   {
83     /* CHXJ_SPEC_Chtml_3_0        */
84     .converter = chxj_exchange_chtml30,
85     .encoder  = chxj_encoding,
86   },
87   {
88     /* CHXJ_SPEC_Chtml_4_0        */
89     .converter = chxj_exchange_chtml30,
90     .encoder  = chxj_encoding,
91   },
92   {
93     /* CHXJ_SPEC_Chtml_5_0        */
94     .converter = chxj_exchange_chtml30,
95     .encoder  = chxj_encoding,
96   },
97   {
98     /* CHXJ_SPEC_XHtml_Mobile_1_0 */
99     .converter = chxj_exchange_xhtml_mobile_1_0,
100     .encoder  = chxj_encoding,
101   },
102   {
103     /* CHXJ_SPEC_Hdml             */
104     .converter = chxj_exchange_hdml,
105     .encoder  = chxj_encoding,
106   },
107   {
108     /* CHXJ_SPEC_Jhtml            */
109     .converter = chxj_exchange_jhtml,
110     .encoder  = chxj_encoding,
111   },
112   {
113     /* CHXJ_SPEC_HTML             */
114     .converter = NULL,
115     .encoder  = NULL,
116   },
117   {
118     NULL
119   }
120 };
121
122 static int chxj_convert_input_header(request_rec *r,chxjconvrule_entry* entryp);
123
124 /**
125  * Only when User-Agent is specified, the User-Agent header is camouflaged. 
126  *
127  * @param r   [i]
128  */
129 static apr_status_t 
130 chxj_headers_fixup(request_rec *r)
131 {
132   mod_chxj_config*    dconf; 
133   chxjconvrule_entry* entryp;
134   char*               user_agent;
135   device_table*       spec;
136
137   DBG(r, "start chxj_headers_fixup()");
138   dconf = ap_get_module_config(r->per_dir_config, &chxj_module);
139
140   user_agent = (char*)apr_table_get(r->headers_in, HTTP_USER_AGENT);
141   spec = chxj_specified_device(r, user_agent);
142
143   switch(spec->html_spec_type) {
144   case CHXJ_SPEC_Chtml_1_0:
145   case CHXJ_SPEC_Chtml_2_0:
146   case CHXJ_SPEC_Chtml_3_0:
147   case CHXJ_SPEC_Chtml_4_0:
148   case CHXJ_SPEC_Chtml_5_0:
149   case CHXJ_SPEC_XHtml_Mobile_1_0:
150   case CHXJ_SPEC_Hdml:
151   case CHXJ_SPEC_Jhtml:
152     entryp = chxj_apply_convrule(r, dconf->convrules);
153     if (! entryp) {
154       DBG(r, "end chxj_headers_fixup() no pattern");
155       return DECLINED;
156     }
157   
158     apr_table_setn(r->headers_in, 
159                    CHXJ_HTTP_USER_AGENT, 
160                    user_agent);
161   
162     if (entryp->user_agent)
163       apr_table_setn(r->headers_in, 
164                      HTTP_USER_AGENT, 
165                      entryp->user_agent);
166
167     chxj_convert_input_header(r,entryp);
168
169     break;
170   
171   default:
172     break;
173
174   }
175
176   DBG(r, "end chxj_headers_fixup()");
177
178   return DECLINED;
179 }
180
181
182 /**
183  * It converts it from CHTML into XXML corresponding to each model. 
184  *
185  * @param r   [i]
186  * @param src [i]   It is former HTML character string. 
187  * @param len [i/o] It is length of former HTML character string. 
188  */
189 static char* 
190 chxj_exchange(request_rec *r, const char** src, apr_size_t* len)
191 {
192   char*               user_agent;
193   char*               dst;
194   char*               tmp;
195   char*               cookie_id;
196   mod_chxj_config*    dconf; 
197   chxjconvrule_entry* entryp;
198
199   dst  = apr_pstrcat(r->pool, (char*)*src, NULL);
200
201   dconf = ap_get_module_config(r->per_dir_config, &chxj_module);
202
203
204   entryp = chxj_apply_convrule(r, dconf->convrules);
205
206   if (!entryp || !(entryp->action & CONVRULE_ENGINE_ON_BIT))
207     return (char*)*src;
208
209
210   /*------------------------------------------------------------------------*/
211   /* get UserAgent from http header                                         */
212   /*------------------------------------------------------------------------*/
213   if (entryp->user_agent)
214     user_agent = (char*)apr_table_get(r->headers_in, CHXJ_HTTP_USER_AGENT);
215   else
216     user_agent = (char*)apr_table_get(r->headers_in, HTTP_USER_AGENT);
217
218   DBG1(r,"User-Agent:[%s]", user_agent);
219   DBG(r, "start chxj_exchange()");
220   DBG1(r,"content type is %s", r->content_type);
221
222
223   if (*(char*)r->content_type == 't' 
224   && strncmp(r->content_type, "text/html",   9) != 0) {
225     DBG1(r,"content type is %s", r->content_type);
226     return (char*)*src;
227   }
228
229   /*
230    * save cookie.
231    */
232   cookie_id = NULL;
233   if (entryp->action & CONVRULE_COOKIE_ON_BIT)
234     cookie_id = chxj_save_cookie(r);
235
236   if (!r->header_only) {
237     device_table* spec = chxj_specified_device(r, user_agent);
238
239     tmp = NULL;
240     if (convert_routine[spec->html_spec_type].encoder)
241       tmp = convert_routine[spec->html_spec_type].encoder(r, 
242                                                           *src, 
243                                                           (apr_size_t*)len);
244
245     if (convert_routine[spec->html_spec_type].converter) {
246       if (tmp)
247         dst = convert_routine[spec->html_spec_type].converter(r, 
248                                                               spec, 
249                                                               tmp, 
250                                                               *len, 
251                                                               len, 
252                                                               entryp, 
253                                                               cookie_id);
254       else
255         dst = convert_routine[spec->html_spec_type].converter(r,
256                                                               spec, 
257                                                               tmp, 
258                                                               *len, 
259                                                               len, 
260                                                               entryp, 
261                                                               cookie_id);
262     }
263   }
264
265   if (*len == 0) {
266     dst = apr_psprintf(r->pool, "\n");
267     *len = 1;
268   }
269   dst[*len] = 0;
270
271   DBG(r, "end chxj_exchange()");
272
273   return dst;
274 }
275
276
277 /**
278  * It converts it from HEADER.
279  *
280  * @param r   [i]
281  */
282 static int
283 chxj_convert_input_header(request_rec *r,chxjconvrule_entry* entryp) 
284 {
285
286   char*      buff;
287   apr_size_t urilen;
288   char*      result;
289   char*      pair;
290   char*      name;
291   char*      value;
292   char*      pstate;
293   char*      vstate;
294
295   DBG(r, "start chxj_convert_input_header()");
296
297   if (! r->args) {
298     DBG(r, "r->args=[null]");
299     DBG(r, "end   chxj_convert_input_header()");
300     return 0;
301   }
302   urilen = strlen(r->args);
303
304   result = qs_alloc_zero_byte_string(r);
305
306   buff = apr_pstrdup(r->pool, r->args);
307   DBG1(r, "r->args=[%s]", buff);
308
309   /* _chxj_dmy */
310   /* _chxj_c_ */
311   /* _chxj_r_ */
312   /* _chxj_s_ */
313   for (;;) {
314
315     pair = apr_strtok(buff, "&", &pstate);
316     if (pair == NULL)
317       break;
318
319     buff = NULL;
320
321     name  = apr_strtok(pair, "=", &vstate);
322     value = apr_strtok(NULL, "=", &vstate);
323     if (strncasecmp(name, "_chxj", 5) != 0) {
324       if (strlen(result) != 0) 
325         result = apr_pstrcat(r->pool, result, "&", NULL);
326
327       if (strcasecmp(entryp->encoding, "NONE") != 0 && value && strlen(value)) {
328         apr_size_t dlen;
329         char* dvalue;
330
331         dlen   = strlen(value);
332         value = chxj_url_decode(r, value);
333         DBG1(r, "************ before encoding[%s]", value);
334
335         dvalue = chxj_rencoding(r, value, &dlen);
336         dvalue = chxj_url_encode(r, dvalue);
337
338         DBG1(r, "************ after encoding[%s]", dvalue);
339
340         result = apr_pstrcat(r->pool, result, name, "=", dvalue, NULL);
341       }
342       else {
343         if (strcmp(name, pair) != 0)
344           result = apr_pstrcat(r->pool, result, name, "=", value, NULL);
345         else
346           result = apr_pstrcat(r->pool, result, name, NULL);
347       }
348     }
349     else
350     if (strncasecmp(name, "_chxj_c_", 8) == 0 
351     ||  strncasecmp(name, "_chxj_r_", 8) == 0
352     ||  strncasecmp(name, "_chxj_s_", 8) == 0) {
353       if (value == NULL)
354         continue;
355
356       if (strlen(value) == 0)
357         continue;
358
359       if (strlen(result) != 0)
360         result = apr_pstrcat(r->pool, result, "&", NULL);
361
362       result = apr_pstrcat(r->pool, result, &name[8], "=", value, NULL);
363     }
364     else
365     if (strcasecmp(name, CHXJ_COOKIE_PARAM) == 0) {
366       DBG1(r, "found cookie parameter[%s]", value);
367       chxj_load_cookie(r, value);
368     }
369   }
370   r->args = result;
371
372   DBG1(r, "result r->args=[%s]", r->args);
373   DBG(r, "end   chxj_convert_input_header()");
374   return 0;
375 }
376
377
378 /**
379  * It converts it from POSTDATA .
380  *
381  * @param r   [i]
382  * @param src [i]   It is POSTDATA character string.
383  * @param len [i/o] It is length of former HTML character string.
384  */
385 static char*
386 chxj_input_convert(
387   request_rec*        r, 
388   const char**        src, 
389   apr_size_t*         len, 
390   chxjconvrule_entry* entryp)
391 {
392   char* pair;
393   char* name;
394   char* value;
395   char* pstate;
396   char* vstate;
397   char* s;
398   char* result;
399
400   s = apr_pstrdup(r->pool, *src);
401
402   result = qs_alloc_zero_byte_string(r);
403
404   DBG1(r, "BEFORE input convert source = [%s]", s);
405
406   /* _chxj_dmy */
407   /* _chxj_c_ */
408   /* _chxj_r_ */
409   /* _chxj_s_ */
410   for (;;) {
411     pair = apr_strtok(s, "&", &pstate);
412     if (pair == NULL)
413       break;
414     s = NULL;
415
416     name  = apr_strtok(pair, "=", &vstate);
417     value = apr_strtok(NULL, "=", &vstate);
418     if (strncasecmp(name, "_chxj", 5) != 0) {
419       if (strlen(result) != 0) 
420         result = apr_pstrcat(r->pool, result, "&", NULL);
421
422       if (strcasecmp(entryp->encoding, "NONE") != 0 
423       &&  value && strlen(value)) {
424         apr_size_t dlen;
425         char*      dvalue;
426
427         dlen   = strlen(value);
428         value = chxj_url_decode(r, value);
429         DBG1(r, "************ before encoding[%s]", value);
430
431         dvalue = chxj_rencoding(r, value, &dlen);
432         dvalue = chxj_url_encode(r,dvalue);
433
434         DBG1(r, "************ after encoding[%s]", dvalue);
435
436         result = apr_pstrcat(r->pool, result, name, "=", dvalue, NULL);
437
438       }
439       else {
440         result = apr_pstrcat(r->pool, result, name, "=", value, NULL);
441       }
442     }
443     else
444     if (strncasecmp(name, "_chxj_c_", 8) == 0 
445     ||  strncasecmp(name, "_chxj_r_", 8) == 0
446     ||  strncasecmp(name, "_chxj_s_", 8) == 0) {
447       if (value == NULL)
448         continue;
449
450       if (strlen(value) == 0)
451         continue;
452
453       if (strlen(result) != 0)
454         result = apr_pstrcat(r->pool, result, "&", NULL);
455
456       if (strcasecmp(entryp->encoding, "NONE") != 0 && value && strlen(value)) {
457         apr_size_t dlen;
458         char*      dvalue;
459
460         dlen   = strlen(value);
461         value = chxj_url_decode(r, value);
462         DBG1(r, "************ before encoding[%s]", value);
463
464         dvalue = chxj_rencoding(r, value, &dlen);
465         dvalue = chxj_url_encode(r,dvalue);
466
467         DBG1(r, "************ after encoding[%s]", dvalue);
468
469         result = apr_pstrcat(r->pool, result, &name[8], "=", dvalue, NULL);
470
471       }
472       else {
473         result = apr_pstrcat(r->pool, result, &name[8], "=", value, NULL);
474       }
475     }
476     else
477     if (strcasecmp(name, CHXJ_COOKIE_PARAM) == 0) {
478       DBG1(r, "found cookie parameter[%s]", value);
479       chxj_load_cookie(r, value);
480     }
481   }
482   *len = strlen(result);
483
484   DBG1(r, "AFTER input convert result = [%s]", result);
485
486   return result;
487 }
488
489
490 /**
491  * The received data is returned to the filter.
492  *
493  * @param f    [i/o] It is a filter. 
494  * @param data [i]   It is data returned to the filter. 
495  * @param len  [i]   It is length of the data returned to the filter. 
496  */
497 static apr_status_t 
498 pass_data_to_filter(ap_filter_t *f, const char *data, 
499                                         apr_size_t len)
500 {
501   request_rec*        r = f->r;
502   conn_rec*           c = r->connection;
503   apr_status_t        rv;
504   apr_bucket_brigade* bb;
505   apr_bucket*         b;
506
507   DBG(r, "start pass_data_to_filter()");
508
509   bb = apr_brigade_create(r->pool, c->bucket_alloc);
510   b  = apr_bucket_transient_create(data, len, c->bucket_alloc);
511
512   APR_BRIGADE_INSERT_TAIL(bb, b);
513   b = apr_bucket_eos_create(f->c->bucket_alloc);
514   APR_BRIGADE_INSERT_TAIL(bb, b);
515
516   rv = ap_pass_brigade(f->next, bb);
517   if (rv != APR_SUCCESS) {
518     DBG(r, "ap_pass_brigade()");
519     return rv;
520   }
521
522   DBG(r, "end pass_data_to_filter()");
523
524   return rv;
525 }
526
527
528 /**
529  * It is the main loop of the output filter. 
530  *
531  * @param f   [i/o] It is a filter.
532  * @param bb  [i]   
533  */
534 static apr_status_t 
535 chxj_output_filter(ap_filter_t *f, apr_bucket_brigade *bb)
536 {
537   request_rec*        r;
538   apr_status_t        rv;
539   apr_bucket*         b;
540   const char*         data;
541   char*               contentLength;
542   apr_size_t          len;
543   mod_chxj_ctx*       ctx;
544   char*               cookie_id;
545   char*               location_header;
546   mod_chxj_config*    dconf;
547   chxjconvrule_entry* entryp;
548
549
550
551   DBG(f->r, "start of chxj_output_filter()");
552
553   r  = f->r;
554   rv = APR_SUCCESS;
555
556   if (!f->ctx) {
557     if ((f->r->proto_num >= 1001) 
558     &&  !f->r->main 
559     &&  !f->r->prev) 
560       f->r->chunked = 1;
561   }
562
563   dconf  = ap_get_module_config(r->per_dir_config, &chxj_module);
564   entryp = chxj_apply_convrule(r, dconf->convrules);
565
566
567   for (b = APR_BRIGADE_FIRST(bb);
568        b != APR_BRIGADE_SENTINEL(bb); 
569        b = APR_BUCKET_NEXT(b)) {
570
571     if (APR_BUCKET_IS_EOS(b)) {
572
573       DBG(r, "eos");
574       /*----------------------------------------------------------------------*/
575       /* End Of File                                                          */
576       /*----------------------------------------------------------------------*/
577       if (f->ctx) {
578
579         ctx = (mod_chxj_ctx*)f->ctx;
580
581         DBG1(r, "content_type=[%s]", r->content_type);
582
583         if (r->content_type 
584         && *(char*)r->content_type == 't' 
585         && strncmp(r->content_type, "text/html",   9) == 0) {
586
587           if (ctx->len) {
588             char* tmp;
589
590             tmp = apr_palloc(r->pool, ctx->len + 1);
591
592             memset(tmp, 0, ctx->len + 1);
593             memcpy(tmp, ctx->buffer, ctx->len);
594
595             DBG2(r, "input data=[%s] len=[%d]", tmp, ctx->len);
596
597             ctx->buffer = chxj_exchange(r, 
598                                         (const char**)&tmp, 
599                                         (apr_size_t*)&ctx->len);
600
601             DBG2(r, "output data=[%.*s]", ctx->len,ctx->buffer);
602           }
603           else {
604             ctx->buffer = apr_psprintf(r->pool, "\n");
605             ctx->len += 1;
606             ctx->buffer = chxj_exchange(r, 
607                                         (const char**)&ctx->buffer, 
608                                         (apr_size_t*)&ctx->len);
609
610           }
611         }
612
613         if (r->content_type 
614         && *(char*)r->content_type == 'i' 
615         && strncmp(r->content_type, "image/", 6) == 0) {
616           if (ctx->len) {
617             char* tmp;
618
619             tmp = apr_palloc(r->pool, ctx->len + 1);
620
621             memset(tmp, 0, ctx->len + 1);
622             memcpy(tmp, ctx->buffer, ctx->len);
623
624             DBG1(r, "input data=[%s]", tmp);
625
626             ctx->buffer = 
627               chxj_exchange_image(r, 
628                                   (const char**)&tmp,
629                                   (apr_size_t*)&ctx->len);
630
631             if (ctx->buffer == NULL)
632               ctx->buffer = tmp;
633
634             DBG2(r, "output data=[%.*s]", ctx->len,ctx->buffer);
635           }
636         }
637
638         contentLength = apr_psprintf(r->pool, "%d", ctx->len);
639         apr_table_setn(r->headers_out, "Content-Length", contentLength);
640         
641         if (ctx->len > 0) {
642           rv = pass_data_to_filter(f, 
643                                    (const char*)ctx->buffer, 
644                                    (apr_size_t)ctx->len);
645         }
646         f->ctx = NULL;
647
648         return rv;
649       }
650       else {
651         DBG1(r, " SAVE COOKIE[%x]", entryp->action);
652
653         /*
654          * save cookie.
655          */
656         if (entryp->action & CONVRULE_COOKIE_ON_BIT) {
657           DBG(r, "entryp->action == COOKIE_ON_BIT");
658
659           cookie_id = chxj_save_cookie(r);
660
661           /*
662            * Location Header Check to add cookie parameter.
663            */
664           location_header = (char*)apr_table_get(r->headers_out, "Location");
665           if (location_header) {
666             DBG1(r, "Location Header=[%s]", location_header);
667             location_header = chxj_add_cookie_parameter(r,
668                                                         location_header,
669                                                         cookie_id);
670             apr_table_setn(r->headers_out, "Location", location_header);
671             DBG1(r, "Location Header=[%s]", location_header);
672           }
673         }
674
675         apr_table_setn(r->headers_out, "Content-Length", "0");
676         rv = pass_data_to_filter(f, (const char*)"", (apr_size_t)0);
677
678         return rv;
679       }
680     }
681     else
682     if (apr_bucket_read(b, &data, &len, APR_BLOCK_READ) == APR_SUCCESS) {
683       DBG2(r, "read data[%.*s]",len, data);
684
685       if (f->ctx == NULL) {
686         /*--------------------------------------------------------------------*/
687         /* Start                                                              */
688         /*--------------------------------------------------------------------*/
689         DBG(r, "new context");
690         ctx = (mod_chxj_ctx*)apr_palloc(r->pool, sizeof(mod_chxj_ctx));
691         if (len > 0) {
692           ctx->buffer = apr_palloc(r->pool, len);
693           memcpy(ctx->buffer, data, len);
694         }
695         else {
696           ctx->buffer = apr_palloc(r->pool, 1);
697           ctx->buffer = '\0';
698         }
699         ctx->len = len;
700         f->ctx = (void*)ctx;
701       }
702       else {
703         /*--------------------------------------------------------------------*/
704         /* append data                                                        */
705         /*--------------------------------------------------------------------*/
706         char* tmp;
707         DBG(r, "append data start");
708         ctx = (mod_chxj_ctx*)f->ctx;
709
710         if (len > 0) {
711           tmp = apr_palloc(r->pool, ctx->len);
712           memcpy(tmp, ctx->buffer, ctx->len);
713
714           ctx->buffer = apr_palloc(r->pool, ctx->len + len);
715
716           memcpy(ctx->buffer, tmp, ctx->len);
717           memcpy(&ctx->buffer[ctx->len], data, len);
718
719           ctx->len += len;
720         }
721         DBG(r, "append data end");
722       }
723     }
724   }
725   apr_brigade_destroy(bb);
726
727   DBG(r, "end of output filter");
728
729   return APR_SUCCESS;
730 }
731
732
733 /**
734  * It is the main loop of the input filter. 
735  *
736  * @param f         [i/o] It is a filter.
737  * @param bb        [i]   brigade
738  * @param mode      [i]   mode
739  * @param block     [i]   block
740  * @param readbytes [i]   readbyte
741  */
742 static apr_status_t 
743 chxj_input_filter(ap_filter_t*        f, 
744                  apr_bucket_brigade*  bb,
745                  ap_input_mode_t      mode, 
746                  apr_read_type_e      block,
747                  apr_off_t            readbytes)
748 {
749   request_rec*        r = f->r;
750   apr_status_t        rv;
751   conn_rec*           c = r->connection;
752   apr_bucket*         b;
753   /*--------------------------------------------------------------------------*/
754   /* It is the brigade area for output                                        */
755   /*--------------------------------------------------------------------------*/
756   apr_bucket_brigade* ibb;            
757   /*--------------------------------------------------------------------------*/
758   /* It is the brigade area for input                                         */
759   /*--------------------------------------------------------------------------*/
760   apr_bucket_brigade* obb;
761   apr_size_t          len;
762   apr_bucket*         tmp_heap;
763   apr_bucket*         eos;
764   const char*         data;
765   char*               data_bucket;
766   char*               data_brigade;
767   char*               content_type;
768   device_table*       spec ;
769   char*               user_agent;
770   mod_chxj_config*    dconf;
771   chxjconvrule_entry* entryp;
772
773   DBG(r, "start of chxj_input_filter()");
774
775   data_brigade = qs_alloc_zero_byte_string(r);
776
777
778   ibb = apr_brigade_create(r->pool, c->bucket_alloc);
779   obb = apr_brigade_create(r->pool, c->bucket_alloc);
780
781   content_type = (char*)apr_table_get(r->headers_in, "Content-Type");
782   if (content_type 
783   && strncasecmp("multipart/form-data", content_type, 19) == 0) {
784
785     DBG(r, "detect multipart/form-data");
786     ap_remove_input_filter(f);
787
788     return ap_get_brigade(f->next, bb, mode, block, readbytes);
789   }
790
791   dconf = ap_get_module_config(r->per_dir_config, &chxj_module);
792
793   entryp = chxj_apply_convrule(r, dconf->convrules);
794   if (!entryp || !(entryp->action & CONVRULE_ENGINE_ON_BIT)) {
795     DBG(r,"EngineOff");
796
797     ap_remove_input_filter(f);
798     return ap_get_brigade(f->next, bb, mode, block, readbytes);
799   }
800
801   user_agent = (char*)apr_table_get(r->headers_in, "User-Agent");
802   spec = chxj_specified_device(r, user_agent);
803
804   switch(spec->html_spec_type) {
805   case CHXJ_SPEC_Chtml_1_0:
806   case CHXJ_SPEC_Chtml_2_0:
807   case CHXJ_SPEC_Chtml_3_0:
808   case CHXJ_SPEC_Chtml_4_0:
809   case CHXJ_SPEC_Chtml_5_0:
810   case CHXJ_SPEC_XHtml_Mobile_1_0:
811   case CHXJ_SPEC_Hdml:
812   case CHXJ_SPEC_Jhtml:
813     break;
814
815   default:
816     ap_remove_input_filter(f);
817     return ap_get_brigade(f->next, bb, mode, block, readbytes);
818   }
819
820
821   rv = ap_get_brigade(f->next, ibb, mode, block, readbytes);
822   if (rv != APR_SUCCESS) {
823     DBG(r, "ap_get_brigade() failed");
824     return rv;
825   }
826
827   APR_BRIGADE_FOREACH(b, ibb) {
828     rv = apr_bucket_read(b, &data, &len, APR_BLOCK_READ);
829     if (rv != APR_SUCCESS) {
830       DBG(r, "apr_bucket_read() failed");
831       return rv;
832     }
833
834     if (data != NULL) {
835       data_bucket = apr_palloc(r->pool, len+1);
836       memset((void*)data_bucket, 0, len+1);
837       memcpy(data_bucket, data, len);
838       DBG1(r, "(in)POSTDATA:[%s]", data_bucket);
839   
840       data_brigade = apr_pstrcat(r->pool, data_brigade, data_bucket, NULL);
841     }
842
843     if (APR_BUCKET_IS_EOS(b)) {
844       break;
845     }
846   }
847   apr_brigade_cleanup(ibb);
848
849
850   len = strlen(data_brigade);
851   if (len == 0) {
852     DBG(r,"data_brigade length is 0");
853     DBG(r,"end of chxj_input_filter()");
854     ap_remove_input_filter(f);
855     return ap_get_brigade(f->next, bb, mode, block, readbytes);
856   }
857   data_brigade = chxj_input_convert(
858     r, 
859     (const char**)&data_brigade, 
860     (apr_size_t*)&len,
861     entryp
862     );
863
864   if (len > 0) {
865     DBG1(r, "(in:exchange)POSTDATA:[%s]", data_brigade);
866
867     obb = apr_brigade_create(r->pool, c->bucket_alloc);
868
869     tmp_heap = apr_bucket_heap_create(data_brigade, 
870                                       len, 
871                                       NULL, 
872                                       f->c->bucket_alloc);
873     eos      = apr_bucket_eos_create(f->c->bucket_alloc);
874
875     APR_BRIGADE_INSERT_TAIL(obb, tmp_heap);
876     APR_BRIGADE_INSERT_TAIL(obb, eos);
877     APR_BRIGADE_CONCAT(bb, obb);
878   }
879
880   DBG(r, "end of chxj_input_filter()");
881
882   return APR_SUCCESS;
883 }
884
885
886 static mod_chxj_global_config*
887 chxj_global_config_create(apr_pool_t* pool, server_rec* s)
888 {
889   mod_chxj_global_config* conf;
890
891   SDBG(s, "start chxj_global_config_create()");
892
893   /*--------------------------------------------------------------------------*/
894   /* allocate an own subpool which survives server restarts                   */
895   /*--------------------------------------------------------------------------*/
896   conf = (mod_chxj_global_config*)apr_palloc(pool, 
897                   sizeof(mod_chxj_global_config));
898 #if 0
899   conf->cookie_db_lock = NULL;
900 #endif
901   SDBG(s, "end   chxj_global_config_create()");
902
903   return conf;
904 }
905
906 /**
907  * initialize chxj module
908  */
909 static int 
910 chxj_init_module(apr_pool_t *p, 
911                   apr_pool_t *plog, 
912                   apr_pool_t *ptemp, 
913                   server_rec *s)
914 {
915 #if 0
916   mod_chxj_global_config* conf;
917 #endif
918   void *user_data;
919
920   SDBG(s, "start chxj_init_module()");
921
922   apr_pool_userdata_get(&user_data, CHXJ_MOD_CONFIG_KEY, s->process->pool);
923   SDBG(s, " ");
924   if (user_data == NULL) {
925     SDBG(s, " ");
926     /*
927      * dummy user_data set.
928      */
929     apr_pool_userdata_set(
930       (const void *)(1), 
931       CHXJ_MOD_CONFIG_KEY, 
932       apr_pool_cleanup_null, 
933       s->process->pool);
934     SDBG(s, "end  chxj_init_module()");
935     return OK;
936   }
937
938   ap_add_version_component(p, CHXJ_VERSION_PREFIX CHXJ_VERSION);
939
940
941 #if 0
942   conf = (mod_chxj_global_config *)ap_get_module_config(s->module_config, 
943                                                         &chxj_module);
944
945   if (apr_global_mutex_create(&(conf->cookie_db_lock), 
946                               NULL, APR_LOCK_DEFAULT, p) != APR_SUCCESS) {
947     SERR(s, "end  chxj_init_module()");
948     return HTTP_INTERNAL_SERVER_ERROR;
949   }
950
951 #ifdef AP_NEED_SET_MUTEX_PERMS
952   if (unixd_set_global_mutex_perms(conf->cookie_db_lock) != APR_SUCCESS) {
953     SERR(s, "end  chxj_init_module()");
954     return HTTP_INTERNAL_SERVER_ERROR;
955   }
956 #endif
957 #endif
958
959
960   SDBG(s, "end  chxj_init_module()");
961
962   return OK;
963 }
964
965 static void 
966 chxj_child_init(apr_pool_t *p, server_rec *s)
967 {
968 #if 0
969   mod_chxj_global_config* conf;
970 #endif
971
972   SDBG(s, "start chxj_child_init()");
973
974 #if 0
975   conf = (mod_chxj_global_config*)ap_get_module_config(s->module_config, 
976                                                        &chxj_module);
977
978   if (apr_global_mutex_child_init(&conf->cookie_db_lock, NULL, p) 
979   != APR_SUCCESS) {
980     SERR(s, "Can't attach global mutex.");
981     return;
982   }
983 #endif
984
985   SDBG(s, "end   chxj_child_init()");
986 }
987
988
989 /**
990  * A set structure of each server is generated. 
991  * 
992  * @param p
993  * @param s
994  */
995 static void*
996 chxj_config_server_create(apr_pool_t *p, server_rec *s)
997 {
998   mod_chxj_global_config *gc;
999
1000   gc = chxj_global_config_create(p,s);
1001
1002   return gc;
1003 }
1004
1005
1006 static int
1007 chxj_translate_name(request_rec *r)
1008 {
1009   return chxj_trans_name(r);
1010 }
1011
1012
1013 /**
1014  * The hook is registered.
1015  *
1016  * @param p
1017  */
1018 static void 
1019 chxj_register_hooks(apr_pool_t *p)
1020 {
1021   ap_hook_post_config(chxj_init_module,
1022                       NULL,
1023                       NULL,
1024                       APR_HOOK_REALLY_FIRST);
1025   ap_hook_child_init(chxj_child_init, 
1026                      NULL, 
1027                      NULL, 
1028                      APR_HOOK_REALLY_FIRST);
1029   ap_register_output_filter (
1030                       "chxj_output_filter", 
1031                       chxj_output_filter, 
1032                       NULL, 
1033                       AP_FTYPE_RESOURCE);
1034   ap_register_input_filter(
1035                       "chxj_input_filter", 
1036                       chxj_input_filter, 
1037                       NULL, 
1038                       AP_FTYPE_RESOURCE);
1039   ap_hook_handler(chxj_img_conv_format_handler, NULL, NULL, APR_HOOK_MIDDLE);
1040   ap_hook_handler(chxj_qr_code_handler, NULL, NULL, APR_HOOK_MIDDLE);
1041   ap_hook_translate_name(chxj_translate_name, NULL, NULL, APR_HOOK_MIDDLE);
1042   ap_hook_fixups(chxj_headers_fixup, NULL, NULL, APR_HOOK_LAST);
1043 }
1044
1045
1046 /**
1047  * A set structure according to the directory is generated. 
1048  *
1049  * @param p
1050  * @param arg
1051  */
1052 static void* 
1053 chxj_create_per_dir_config(apr_pool_t *p, char *arg) 
1054 {
1055   mod_chxj_config* conf;
1056
1057   conf = apr_pcalloc(p, sizeof(mod_chxj_config));
1058   conf->device_data_file = NULL;
1059   conf->devices          = NULL;
1060   conf->emoji_data_file  = NULL;
1061   conf->emoji            = NULL;
1062   conf->emoji_tail       = NULL;
1063   conf->image            = CHXJ_IMG_OFF;
1064   conf->image_cache_dir  = apr_psprintf(p, "%s",DEFAULT_IMAGE_CACHE_DIR);
1065   conf->server_side_encoding = NULL;
1066   if (arg == NULL) {
1067     conf->dir                  = NULL;
1068   }
1069   else {
1070     conf->dir                  = apr_pcalloc(p, strlen(arg)+1);
1071     memset(conf->dir, 0, strlen(arg)+1);
1072     strcpy(conf->dir, arg);
1073   }
1074   conf->convrules   = apr_array_make(p, 2, sizeof(chxjconvrule_entry));
1075
1076   /* Default is copyleft */
1077   conf->image_copyright = NULL; 
1078
1079   return conf;
1080 }
1081
1082
1083 /*
1084  *  Merge per-directory CHXJ configurations
1085  */
1086 static void*
1087 chxj_merge_per_dir_config(apr_pool_t *p, void *basev, void *addv)
1088 {
1089   mod_chxj_config *base;
1090   mod_chxj_config *add;
1091   mod_chxj_config *mrg;
1092
1093   base = (mod_chxj_config*)basev;
1094   add  = (mod_chxj_config*)addv;
1095   mrg  = (mod_chxj_config*)apr_palloc(p, sizeof(mod_chxj_config));
1096
1097   mrg->device_data_file = NULL;
1098   mrg->devices          = NULL;
1099   mrg->emoji_data_file  = NULL;
1100   mrg->image            = CHXJ_IMG_OFF;
1101   mrg->image_cache_dir  = NULL;
1102   mrg->image_copyright  = NULL;
1103   mrg->emoji            = NULL;
1104   mrg->emoji_tail       = NULL;
1105
1106   mrg->dir = apr_pstrdup(p, add->dir);
1107
1108   if (! add->device_data_file) {
1109     mrg->devices = base->devices;
1110     mrg->device_data_file = apr_pstrdup(p, base->device_data_file);
1111   }
1112   else {
1113     mrg->devices = add->devices;
1114     mrg->device_data_file = apr_pstrdup(p, add->device_data_file);
1115   }
1116
1117   if (! add->emoji_data_file) {
1118     mrg->emoji = base->emoji;
1119     mrg->emoji_tail = base->emoji_tail;
1120     mrg->emoji_data_file = apr_pstrdup(p, base->emoji_data_file);
1121   }
1122   else {
1123     mrg->emoji = add->emoji;
1124     mrg->emoji_tail = add->emoji_tail;
1125     mrg->emoji_data_file = apr_pstrdup(p, add->emoji_data_file);
1126   }
1127
1128   if (add->image == CHXJ_IMG_OFF) 
1129     mrg->image = base->image;
1130   else 
1131     mrg->image = add->image;
1132
1133
1134   if (strcasecmp(add->image_cache_dir ,DEFAULT_IMAGE_CACHE_DIR)==0) 
1135     mrg->image_cache_dir = apr_pstrdup(p, base->image_cache_dir);
1136   else 
1137     mrg->image_cache_dir = apr_pstrdup(p, add->image_cache_dir);
1138
1139   if (add->image_copyright) 
1140     mrg->image_copyright = apr_pstrdup(p, add->image_copyright);
1141   else
1142     mrg->image_copyright = apr_pstrdup(p, base->image_copyright);
1143
1144   if (add->server_side_encoding) {
1145     mrg->server_side_encoding = apr_pstrdup(p, add->server_side_encoding);
1146   }
1147   else 
1148   if (base->server_side_encoding) {
1149     mrg->server_side_encoding = apr_pstrdup(p, base->server_side_encoding);
1150   }
1151   else {
1152     mrg->server_side_encoding = apr_pstrdup(p, DEFAULT_SERVER_SIDE_ENCODING);
1153   }
1154
1155   mrg->convrules    = apr_array_append(p, add->convrules, base->convrules);
1156
1157   return mrg;
1158 }
1159
1160
1161 static int
1162 chxj_command_parse_take5(
1163   const char* arg, 
1164   char** prm1, 
1165   char** prm2, 
1166   char** prm3, 
1167   char** prm4, 
1168   char** prm5)
1169 {
1170   int isquoted;
1171   char* strp;
1172
1173   strp = (char*)arg;
1174
1175   for (;*strp == ' '||*strp == '\t'; strp++) ;
1176
1177   isquoted = 0; 
1178   if (*strp == '"') { 
1179     isquoted = 1;
1180     strp++;
1181   }
1182
1183   *prm1 = strp;
1184
1185   for (; *strp != '\0'; strp++) {
1186     if ((isquoted && (*strp == ' ' || *strp == '\t'))
1187     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
1188       strp++;
1189       continue;
1190     }
1191
1192     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
1193     ||  (isquoted  && *strp == '"'))
1194       break;
1195   }
1196
1197   if (! *strp) {
1198     *prm2 = strp;
1199     *prm3 = strp;
1200     *prm4 = strp;
1201     *prm5 = strp;
1202     return 1;
1203   }
1204
1205   *strp++ = '\0';
1206
1207   for (;*strp == ' '||*strp == '\t'; strp++) ;
1208
1209   isquoted = 0; 
1210   if (*strp == '"') { 
1211     isquoted = 1;
1212     strp++;
1213   }
1214
1215   *prm2 = strp;
1216   for (; *strp != '\0'; strp++) {
1217     if ((isquoted && (*strp == ' ' || *strp == '\t'))
1218     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
1219       strp++;
1220       continue;
1221     }
1222
1223     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
1224     ||  (isquoted  && *strp == '"'))
1225       break;
1226   }
1227
1228   if (! *strp) {
1229     *prm3 = strp;
1230     *prm4 = strp;
1231     *prm5 = strp;
1232     return 0;
1233   }
1234
1235   *strp++ = '\0';
1236
1237   for (;*strp == ' '||*strp == '\t'; strp++);
1238
1239   isquoted = 0; 
1240   if (*strp == '"') { 
1241     isquoted = 1;
1242     strp++;
1243   }
1244   *prm3 = strp;
1245   for (; *strp != '\0'; strp++) {
1246     if ((isquoted && (*strp == ' ' || *strp == '\t'))
1247     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
1248       strp++;
1249       continue;
1250     }
1251
1252     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
1253     ||  (isquoted  && *strp == '"'))
1254       break;
1255   }
1256
1257   if (! *strp) {
1258     *prm4 = strp;
1259     *prm5 = strp;
1260     return 0;
1261   }
1262
1263   *strp++ = '\0';
1264
1265   for (;*strp == ' '||*strp == '\t'; strp++);
1266
1267   isquoted = 0; 
1268   if (*strp == '"') { 
1269     isquoted = 1;
1270     strp++;
1271   }
1272   *prm4 = strp;
1273   for (; *strp != '\0'; strp++) {
1274     if ((isquoted && (*strp == ' ' || *strp == '\t'))
1275     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
1276       strp++;
1277       continue;
1278     }
1279
1280     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
1281     ||  (isquoted  && *strp == '"'))
1282       break;
1283   }
1284
1285   if (! *strp) {
1286     *prm5 = strp;
1287     return 0;
1288   }
1289
1290   *strp++ = '\0';
1291
1292   for (;*strp == ' '||*strp == '\t'; strp++);
1293
1294   isquoted = 0; 
1295   if (*strp == '"') { 
1296     isquoted = 1;
1297     strp++;
1298   }
1299   *prm5 = strp;
1300   for (; *strp != '\0'; strp++) {
1301     if ((isquoted && (*strp == ' ' || *strp == '\t'))
1302     ||  (*strp == '\\' && (*(strp+1) == ' ' || *(strp+1) == '\t'))) {
1303       strp++;
1304       continue;
1305     }
1306
1307     if ((!isquoted && (*strp == ' ' || *strp == '\t'))
1308     ||  (isquoted  && *strp == '"'))
1309       break;
1310   }
1311   *strp = '\0';
1312
1313   return 0;
1314 }
1315
1316
1317 /**
1318  * The device definition file is loaded. 
1319  *
1320  * @param arg     [i]   The name of the device definition file is specified.
1321  * @param mconfig [i/o] The pointer to a set structure is specified. 
1322  * @param parms   [i]   
1323  */
1324 static const char* 
1325 cmd_load_device_data(cmd_parms *parms, void *mconfig, const char* arg) 
1326 {
1327   mod_chxj_config* conf;
1328   Doc              doc;
1329
1330   doc.r = NULL;
1331
1332   if (strlen(arg) > 256) 
1333     return "device data filename too long.";
1334
1335   conf = (mod_chxj_config*)mconfig;
1336   conf->device_data_file = apr_pstrdup(parms->pool, arg);
1337
1338   qs_init_malloc(&doc);
1339   qs_init_root_node(&doc);
1340
1341   qs_parse_file((Doc*)&doc, (const char*)arg);
1342   chxj_load_device_data(&doc,parms->pool, conf);
1343   qs_all_free(&doc, QX_LOGMARK);
1344
1345   return NULL;
1346 }
1347
1348
1349 /**
1350  * Device definition information is loaded. 
1351  *
1352  * @param parms 
1353  * @param arg     [i]   The name of the device definition file is specified. 
1354  * @param mconfig [i/o] The pointer to a set structure is specified. 
1355  * @return 
1356  */
1357 static const char* 
1358 cmd_load_emoji_data(cmd_parms *parms, void *mconfig, const char* arg) 
1359 {
1360   mod_chxj_config* conf;
1361   char*            rtn;
1362   Doc              doc;
1363
1364   doc.r = NULL;
1365
1366
1367   if (strlen(arg) > 256) 
1368     return "emoji data filename too long.";
1369
1370   conf = (mod_chxj_config*)mconfig;
1371   conf->emoji_data_file = apr_pstrdup(parms->pool, arg);
1372   qs_init_malloc(&doc);
1373   qs_init_root_node(&doc);
1374
1375   qs_parse_file((Doc*)&doc, (const char*)arg);
1376
1377   rtn = chxj_load_emoji_data(&doc,parms->pool, conf);
1378
1379   qs_all_free(&doc, QX_LOGMARK);
1380
1381
1382   return rtn;
1383 }
1384
1385
1386 static const char* 
1387 cmd_set_image_engine(cmd_parms *parms, void *mconfig, const char* arg) 
1388 {
1389   mod_chxj_config* conf;
1390   Doc              doc;
1391
1392   doc.r = NULL;
1393
1394   if (strlen(arg) > 256) 
1395     return "image uri is too long.";
1396
1397   conf = (mod_chxj_config*)mconfig;
1398   if (strcasecmp("ON", arg) == 0)
1399     conf->image = CHXJ_IMG_ON;
1400   else
1401     conf->image = CHXJ_IMG_OFF;
1402
1403   return NULL;
1404 }
1405
1406
1407 static const char* 
1408 cmd_set_image_cache_dir(cmd_parms *parms, void *mconfig, const char* arg) 
1409 {
1410   mod_chxj_config* conf;
1411   Doc              doc;
1412
1413   doc.r = NULL;
1414
1415   if (strlen(arg) > 256) 
1416     return "cache dir name is too long.";
1417
1418   conf = (mod_chxj_config*)mconfig;
1419   conf->image_cache_dir = apr_pstrdup(parms->pool, arg);
1420
1421   return NULL;
1422 }
1423
1424
1425 static const char* 
1426 cmd_set_image_copyright(cmd_parms *parms, void* mconfig, const char* arg) 
1427 {
1428   mod_chxj_config* conf;
1429   Doc              doc;
1430
1431   doc.r = NULL;
1432
1433   if (strlen(arg) > 256) 
1434     return "Copyright Flag is too long.";
1435
1436   conf = (mod_chxj_config*)mconfig;
1437   conf->image_copyright = apr_pstrdup(parms->pool, arg);
1438
1439   return NULL;
1440 }
1441
1442
1443 static const char*
1444 cmd_convert_rule(cmd_parms *cmd, void* mconfig, const char *arg)
1445 {
1446   int                 mode;
1447   ap_regex_t*         regexp;
1448   mod_chxj_config*    dconf;
1449   chxjconvrule_entry* newrule;
1450   char*               prm1;
1451   char*               prm2;
1452   char*               prm3;
1453   char*               prm4;
1454   char*               prm5;
1455   char*               pstate;
1456   char*               action;
1457   char*               pp;
1458
1459   dconf = (mod_chxj_config*)mconfig;
1460
1461   if (strlen(arg) > 4096) 
1462     return "ChxjConvertRule: is too long.";
1463
1464   dconf = (mod_chxj_config*)mconfig;
1465   if (dconf->convrules == NULL)
1466     dconf->convrules   = apr_array_make(cmd->pool, 
1467                                         2, 
1468                                         sizeof(chxjconvrule_entry));
1469
1470   newrule = apr_array_push(dconf->convrules);
1471
1472   newrule->flags  = 0;
1473   newrule->action = 0;
1474
1475   if (chxj_command_parse_take5(arg, &prm1, &prm2, &prm3, &prm4, &prm5))
1476     return "ChxjConvertRule: bad argument line";
1477
1478   newrule->pattern = apr_pstrdup(cmd->pool, prm1);
1479
1480   /* Parse action */
1481   for (;;) {
1482     if ((action = apr_strtok(prm2, ",", &pstate)) == NULL)
1483       break;
1484     prm2 = NULL;
1485     switch(*action) {
1486     case 'e':
1487     case 'E':
1488       if (strcasecmp(CONVRULE_ENGINE_ON_CMD, action) == 0) {
1489         newrule->action |= CONVRULE_ENGINE_ON_BIT;
1490       }
1491       else
1492       if (strcasecmp(CONVRULE_ENGINE_OFF_CMD, action) == 0) {
1493         newrule->action |= CONVRULE_ENGINE_OFF_BIT;
1494       }
1495       break;
1496
1497     case 'C':
1498     case 'c':
1499       if (strcasecmp(CONVRULE_COOKIE_ON_CMD, action) == 0) {
1500         newrule->action |= CONVRULE_COOKIE_ON_BIT;
1501       }
1502       break;
1503     default:
1504       break;
1505     }
1506   }
1507   
1508   pp = prm1;
1509   if (*pp == '!') {
1510     newrule->flags |= CONVRULE_FLAG_NOTMATCH;
1511     pp++;
1512   }
1513
1514   mode = AP_REG_EXTENDED;
1515   if ((regexp = ap_pregcomp(cmd->pool, pp, mode)) == NULL)
1516     return "RewriteRule: cannot compile regular expression ";
1517
1518   newrule->regexp = regexp;
1519   if (*prm3)
1520     newrule->encoding = apr_pstrdup(cmd->pool, prm3);
1521   else
1522     newrule->encoding = apr_pstrdup(cmd->pool, "none");
1523
1524   newrule->pc_flag = CONVRULE_PC_FLAG_OFF_BIT;
1525   if (*prm4)
1526     if (strcasecmp(CONVRULE_PC_FLAG_ON_CMD, prm4) == 0)
1527       newrule->pc_flag = CONVRULE_PC_FLAG_ON_BIT;
1528
1529   newrule->user_agent = NULL;
1530   if (*prm5)
1531     newrule->user_agent = apr_pstrdup(cmd->pool, prm5);
1532     
1533   return NULL;
1534 }
1535
1536
1537 static const command_rec cmds[] = {
1538   AP_INIT_TAKE1(
1539     "ChxjLoadDeviceData",
1540     cmd_load_device_data,
1541     NULL,
1542     OR_ALL,
1543     "Load Device Data"),
1544   AP_INIT_TAKE1(
1545     "ChxjLoadEmojiData",
1546     cmd_load_emoji_data,
1547     NULL,
1548     OR_ALL,
1549     "Load Emoji Data"),
1550   AP_INIT_TAKE1(
1551     "ChxjImageEngine",
1552     cmd_set_image_engine,
1553     NULL,
1554     OR_ALL,
1555     "Convert Target URI"),
1556   AP_INIT_TAKE1(
1557     "ChxjImageCacheDir",
1558     cmd_set_image_cache_dir,
1559     NULL,
1560     OR_ALL,
1561     "Image Cache Directory"),
1562   AP_INIT_TAKE1(
1563     "ChxjImageCopyright",
1564     cmd_set_image_copyright,
1565     NULL,
1566     OR_ALL,
1567     "Copyright Flag"),
1568   AP_INIT_RAW_ARGS(
1569     "ChxjConvertRule",
1570     cmd_convert_rule,
1571     NULL, 
1572     OR_FILEINFO,
1573     "an URL-applied regexp-pattern and a substitution URL"),
1574   { NULL },
1575 };
1576
1577
1578 /*----------------------------------------------------------------------------*/
1579 /* Dispatch list for API hooks                                                */
1580 /*----------------------------------------------------------------------------*/
1581 module AP_MODULE_DECLARE_DATA chxj_module = {
1582   STANDARD20_MODULE_STUFF, 
1583   chxj_create_per_dir_config,          /* create per-dir    config structures */
1584   chxj_merge_per_dir_config,           /* merge  per-dir    config structures */
1585   chxj_config_server_create,           /* create per-server config structures */
1586   NULL,                                /* merge  per-server config structures */
1587   cmds,                                /* table of config file commands       */
1588   chxj_register_hooks                  /* register hooks                      */
1589 };
1590 /*
1591  * vim:ts=2 et
1592  */