move FourHash into libcitadel.
authorWilfried Goesgens <willi@arangodb.com>
Sun, 20 Dec 2015 19:03:03 +0000 (20:03 +0100)
committerWilfried Goesgens <willi@arangodb.com>
Sun, 20 Dec 2015 19:03:03 +0000 (20:03 +0100)
citadel/modules/ctdlproto/serv_messages.c
libcitadel/lib/hash.c
libcitadel/lib/libcitadel.h

index 0751e28a91ead449f721e3f30d99c26aaecdd056..ef1d70a7a4ef27de66fbe868fd98294f9ef880cd 100644 (file)
@@ -156,10 +156,12 @@ void cmd_msgs(char *cmdbuf)
                        long tValueLen;
                        extract_token(tfield, buf, 0, '|', sizeof tfield);
                        tValueLen = extract_token(tvalue, buf, 1, '|', sizeof tvalue);
-                       for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
-                               if (!strcasecmp(tfield, msgkeys[i])) {
-                                       CM_SetField(template, i, tvalue, tValueLen);
-                               }
+                       if (tValueLen >= 0) {
+                               for (i='A'; i<='Z'; ++i) if (msgkeys[i]!=NULL) {
+                                               if (!strcasecmp(tfield, msgkeys[i])) {
+                                                       CM_SetField(template, i, tvalue, tValueLen);
+                                               }
+                                       }
                        }
                }
                buffer_output();
index c1e8d4d422bc16b81295b2802257d9f29a8b45d2..665e39b304cd43bf81127a26a9f2d9106b14bfa0 100644 (file)
@@ -657,6 +657,29 @@ long lFlathash(const char *str, long len)
        else return *(long*)str;
 }
 
+/**
+ * @ingroup HashListAlgorithm
+ * @brief another hashing algorithm; accepts exactly 4 characters, convert it to a hash key.
+ * @param str Our pointer to the long value
+ * @param len the length of the data pointed to; needs to be sizeof long, else we won't use it!
+ * @return the calculated hash value
+ */
+long FourHash(const char *key, long length) 
+{
+       int i;
+       int ret = 0;
+       const unsigned char *ptr = (const unsigned char*)key;
+
+       for (i = 0; i < 4; i++, ptr ++) 
+               ret = (ret << 8) | 
+                       ( ((*ptr >= 'a') &&
+                          (*ptr <= 'z'))? 
+                         *ptr - 'a' + 'A': 
+                         *ptr);
+
+       return ret;
+}
+
 /**
  * @ingroup HashListPrivate
  * @brief private abstract wrapper around the hashing algorithm
index 9d251ad83360dccbbb244f46489b4e3c666cf849..3a4d7a18bb9527268df3219bd3656e5ce1a33410 100644 (file)
@@ -515,6 +515,7 @@ typedef long (*HashFunc)(const char *Str, long Len);
 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
 typedef const char* (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
 
+long FourHash(const char *key, long length);
 long Flathash(const char *str, long len);
 long lFlathash(const char *str, long len);
 #define IKEY(a) (const char*) &a, sizeof(a)