File: sessionhash.h

package info (click to toggle)
haproxy 1.4.8-1%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,220 kB
  • ctags: 4,072
  • sloc: ansic: 34,590; perl: 543; sh: 415; makefile: 377; xml: 124
file content (62 lines) | stat: -rw-r--r-- 1,879 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef SESSION_HASH_H
#define SESSION_HASH_H

/*
 * HashTable functions.
 *
 * Copyright 2007 Arnaud Cornet
 *
 * This file is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License, version 2.1 as published by the Free Software Foundation.
 *
 */

#include <common/appsession.h>

#ifndef TABLESHIFT
#define TABLESHIFT 11
#endif
#define TABLESIZE (1UL << TABLESHIFT)
#define TABLEMASK (TABLESIZE - 1)

/*
 * quick and dirty AppSession hash table, using sessid as key
 */

struct appsession_hash
{
	struct list *table;
	void (*destroy)(appsess *);
};

unsigned int appsession_hash_f(char *);
int appsession_hash_init(struct appsession_hash *hash,
		void(*destroy)(appsess*));
void appsession_hash_insert(struct appsession_hash *hash,
		struct appsessions *session);
struct appsessions *appsession_hash_lookup(struct appsession_hash *hash,
		char *key);
void appsession_hash_remove(struct appsession_hash *hash,
		struct appsessions *session);

void appsession_hash_destroy(struct appsession_hash *hash);
#if defined(DEBUG_HASH)
void appsession_hash_dump(struct appsession_hash *hash);
#endif

/*
 * Iterates <item> through a hashtable of items of type "typeof(*item)"
 * A pointer to the appsession_hash is passed in <hash>. The hash table
 * internaly uses <list_head> member of the struct. A temporary variable <back>
 * of same type as <item> is needed so that <item> may safely be deleted if
 * needed.  <idx> is a variable containing <item>'s current bucket index in the
 * hash table.
 * Example: as_hash_for_each_entry_safe(idx, item, tmp, &hash, hash_list)
 * { ... }
 */
#define as_hash_for_each_entry_safe(idx, item, back, hash, member) \
	 for (idx = 0; idx < TABLESIZE; idx++)                          \
		list_for_each_entry_safe(item, back, &((hash)->table[idx]), member)

#endif /* SESSION_HASH_H */