OSDN Git Service

* Fixed Bug.
[modchxj/mod_chxj.git] / src / chxj_specified_device.c
index 3932055..68a97a7 100644 (file)
@@ -1,6 +1,6 @@
 /*
+ * Copyright (C) 2005-2011 Atsushi Konno All rights reserved.
  * Copyright (C) 2005 QSDN,Inc. All rights reserved.
- * Copyright (C) 2005 Atsushi Konno All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * limitations under the License.
  */
 #include "mod_chxj.h"
-#include "ap_regex.h"
+#include "chxj_add_device_env.h"
 
-static device_table_t  UNKNOWN_DEVICE      = {
-    NULL, "","UNKNOWN", CHXJ_SPEC_UNKNOWN,  0,  0,0,0,0,0,0,0,0,0,0,0,0, ""};
+static device_table  UNKNOWN_DEVICE      = {
+  .next = NULL,
+  .device_id = "",
+  .device_name = "UNKNOWN",
+  .html_spec_type = CHXJ_SPEC_UNKNOWN,
+  .width = 640,
+  .heigh = 480,
+  /*--------------------------------------------------------------------------*/
+  /* Walll Paper Size                                                         */
+  /*--------------------------------------------------------------------------*/
+  .wp_width = 640,
+  .wp_heigh = 480,
+  /*--------------------------------------------------------------------------*/
+  /* Cache Size                                                               */
+  /*--------------------------------------------------------------------------*/
+  .cache    = 10000000,
+  /*--------------------------------------------------------------------------*/
+  /* Correspondence image format                                              */
+  /* 1: It is possible to display it.                                         */
+  /* 0: It is not possible to display it.                                     */
+  /*--------------------------------------------------------------------------*/
+  .available_gif = 1,
+  .available_jpeg = 1,
+  .available_png = 1,
+  .available_bmp2 = 1,
+  .available_bmp4 = 1,
+  .dpi_width = 96,
+  .dpi_heigh = 96,
+  /*--------------------------------------------------------------------------*/
+  /* Color number type                                                        */
+  /* 2       : 2        Colors                                                */
+  /* 4       : 4        Colors                                                */
+  /* 256     : 256      Colors                                                */
+  /* 4096    : 4096     Colors                                                */
+  /* 65536   : 65536    Colors                                                */
+  /* 262144  : 262144   Colors                                                */
+  /* 15680000: 15680000 over colors                                           */
+  /*--------------------------------------------------------------------------*/
+  .color = 15680000,
+  .emoji_type = NULL,
+};
+static device_table * s_get_device_data(request_rec *r, const char *device_id, device_table_list *dtl);
 
 /**
  * The device is specified from UserAgent. 
@@ -26,76 +66,109 @@ static device_table_t  UNKNOWN_DEVICE      = {
  * @param userAgent UserAgent is appointed here,
  * @return The style which corresponds is returned.
  */
-device_table_t*
-chxj_specified_device(request_rec* r, const char* user_agent) 
+device_table *
+chxj_specified_device(request_rec *r, const char *user_agent) 
 {
-  ap_regex_t*          regexp;
   ap_regmatch_t        match[10];
-  device_table_t*      returnType = &UNKNOWN_DEVICE;
-  device_table_list_t* dtl;
-  device_table_t* dt;
-  mod_chxj_config_t* conf; 
-  int rtn;
-  char* device_id;
+  device_table         *returnType = &UNKNOWN_DEVICE;
+  device_table_list    *dtl;
+  mod_chxj_config      *conf; 
+  mod_chxj_req_config  *request_conf; 
+  char                 *device_id;
 
-  ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "start chxj_specified_device()");
-  conf = ap_get_module_config(r->per_dir_config, &chxj_module);
-  for (dtl = conf->devices; dtl; dtl = dtl->next) 
-  {
-    if (dtl->pattern == NULL)
-    {
-      ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "pattern is null");
+  DBG(r,"REQ[%x] start %s()", TO_ADDR(r), __func__ );
+
+  if (! user_agent) {
+    DBG(r,"REQ[%x] end %s() (User-Agent is NULL)", TO_ADDR(r),__func__);
+    return returnType;
+  }
+
+  /*
+   * Get per request config.
+   */
+  request_conf = (mod_chxj_req_config *)chxj_get_module_config(r->request_config, &chxj_module);
+  if (!request_conf) {
+    request_conf = apr_pcalloc(r->pool, sizeof(mod_chxj_req_config));
+    request_conf->spec = NULL;
+    request_conf->user_agent = NULL;
+    request_conf->f = NULL;
+    request_conf->entryp = NULL;
+    chxj_set_module_config(r->request_config, &chxj_module, request_conf);
+  }
+  if (user_agent) {
+    request_conf->user_agent = apr_pstrdup(r->pool, user_agent);
+  }
+  else {
+    request_conf->user_agent = "";
+  }
+
+  conf = chxj_get_module_config(r->per_dir_config, &chxj_module);
+  if (! conf->devices) {
+    ERR(r,"REQ[%X] device_data.xml load failure", TO_ADDR(r));
+    DBG(r,"REQ[%x] end %s()", TO_ADDR(r),__func__);
+    return returnType;
+  }
+
+  for (dtl = conf->devices; dtl; dtl = dtl->next) {
+    if (! dtl->pattern) {
+      /* DBG(r, "REQ[%X] pattern is null", TO_ADDR(r)); */
       continue;
     }
 
-    ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "pattern is [%s]", dtl->pattern);
-    regexp = ap_pregcomp(r->pool, (const char*)dtl->pattern, AP_REG_EXTENDED|AP_REG_ICASE);
-    if (regexp == NULL) 
-    {
-      ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "compile failed.");
+    /* DBG(r, "REQ[%X] pattern is [%s]", TO_ADDR(r), dtl->pattern); */
+    if (! dtl->regexp) {
+      ERR(r,"REQ[%X] compile failed.", TO_ADDR(r));
+      DBG(r,"REQ[%x] end %s()", TO_ADDR(r),__func__);
       return returnType;
     }
 
-    rtn = ap_regexec(regexp, user_agent, regexp->re_nsub + 1, match, 0);
-    if (rtn == 0) 
-    {
-      device_id = ap_pregsub(r->pool, "$1", user_agent, regexp->re_nsub + 1, match);
-      ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "device_id:[%s]", device_id);
-      for (dt = dtl->table; dt; dt = dt->next) 
-      {
-        if (strcasecmp(device_id, dt->device_id) == 0) 
-        {
-          ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "device_name:[%s]", dt->device_name);
-          returnType = dt;
-          break;
+    if (ap_regexec((const ap_regex_t *)dtl->regexp, user_agent, (apr_size_t)dtl->regexp->re_nsub + 1, match, 0) == 0) {
+      device_id = ap_pregsub(r->pool, "$1", user_agent, dtl->regexp->re_nsub + 1, match);
+      DBG(r,"REQ[%X] device_id:[%s]", TO_ADDR(r), device_id);
+      returnType = s_get_device_data(r, device_id, dtl);
+      if (! returnType) {
+        if (dtl->tail) {
+          returnType = dtl->tail;
         }
-      }
-      if (dt == NULL) 
-      {
-        for (dt = dtl->table; dt; dt = dt->next) 
-        {
-          if (dt->next == NULL) {
-            break;
-          }
-        }
-        if (dt != NULL)
-        {
-          returnType = dt;
+        else {
+          returnType = &UNKNOWN_DEVICE;
         }
       }
-    }
-    ap_pregfree(r->pool, regexp);
-    if (returnType != &UNKNOWN_DEVICE) 
-    {
-      ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "end chxj_specified_device()");
+      request_conf->spec = returnType;
+      DBG(r,"REQ[%X] end %s() (Found User-Agent Type)", TO_ADDR(r),__func__);
       return returnType;
     }
   }
-  ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "end chxj_specified_device()");
 
-  return returnType;
+  request_conf->spec = &UNKNOWN_DEVICE;
+  DBG(r,"REQ[%X] end %s() (Not Found User-Agent Type) [%s]",TO_ADDR(r), __func__,user_agent);
+
+  return &UNKNOWN_DEVICE;
 }
 
+
+#include <stdlib.h>
+static int 
+s_compar(const void *a, const void *b)
+{
+  device_table *aa = *(device_table **)a;
+  device_table *bb = *(device_table **)b;
+  /* Not strcasecmp. for LOAD */
+  return strcmp(aa->device_id, bb->device_id);
+}
+static device_table *
+s_get_device_data(request_rec *r, const char *device_id, device_table_list *dtl)
+{
+  device_table dt;
+  device_table *_dt;
+  dt.device_id = device_id;
+  _dt = &dt;
+  device_table **ret = bsearch(&_dt, dtl->sort_table, dtl->table_count, sizeof(device_table *), s_compar);
+  if (ret && *ret) {
+    return *ret;
+  }
+  return NULL;
+}
 /*
  * vim:ts=2 et
  */