2011-09-03 10:06:10 -04:00
|
|
|
#ifndef HEADER_CURL_SPLAY_H
|
|
|
|
#define HEADER_CURL_SPLAY_H
|
2006-04-10 11:00:53 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-09-03 10:06:10 -04:00
|
|
|
* Copyright (C) 1997 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2006-04-10 11:00:53 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2006-04-10 11:00:53 -04:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
struct Curl_tree {
|
|
|
|
struct Curl_tree *smaller; /* smaller node */
|
|
|
|
struct Curl_tree *larger; /* larger node */
|
|
|
|
struct Curl_tree *same; /* points to a node with identical key */
|
2008-05-07 11:41:41 -04:00
|
|
|
struct timeval key; /* this node's "sort" key */
|
2006-04-10 11:00:53 -04:00
|
|
|
void *payload; /* data the splay code doesn't care about */
|
|
|
|
};
|
|
|
|
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *Curl_splay(struct timeval i,
|
|
|
|
struct Curl_tree *t);
|
|
|
|
|
|
|
|
struct Curl_tree *Curl_splayinsert(struct timeval key,
|
|
|
|
struct Curl_tree *t,
|
2006-07-15 14:57:51 -04:00
|
|
|
struct Curl_tree *newnode);
|
2008-05-07 11:41:41 -04:00
|
|
|
|
2006-05-27 18:26:41 -04:00
|
|
|
#if 0
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *Curl_splayremove(struct timeval key,
|
|
|
|
struct Curl_tree *t,
|
2006-04-10 11:00:53 -04:00
|
|
|
struct Curl_tree **removed);
|
2006-05-27 18:26:41 -04:00
|
|
|
#endif
|
|
|
|
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *Curl_splaygetbest(struct timeval key,
|
|
|
|
struct Curl_tree *t,
|
2006-04-10 11:00:53 -04:00
|
|
|
struct Curl_tree **removed);
|
2008-05-07 11:41:41 -04:00
|
|
|
|
2006-05-27 18:26:41 -04:00
|
|
|
int Curl_splayremovebyaddr(struct Curl_tree *t,
|
2007-09-26 21:45:22 -04:00
|
|
|
struct Curl_tree *removenode,
|
2006-05-27 18:26:41 -04:00
|
|
|
struct Curl_tree **newroot);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2008-05-07 11:41:41 -04:00
|
|
|
#define Curl_splaycomparekeys(i,j) ( ((i.tv_sec) < (j.tv_sec)) ? -1 : \
|
|
|
|
( ((i.tv_sec) > (j.tv_sec)) ? 1 : \
|
|
|
|
( ((i.tv_usec) < (j.tv_usec)) ? -1 : \
|
|
|
|
( ((i.tv_usec) > (j.tv_usec)) ? 1 : 0 ))))
|
|
|
|
|
2009-06-09 22:49:42 -04:00
|
|
|
#ifdef DEBUGBUILD
|
2006-05-27 18:26:41 -04:00
|
|
|
void Curl_splayprint(struct Curl_tree * t, int d, char output);
|
2006-04-10 11:00:53 -04:00
|
|
|
#else
|
2011-09-03 10:06:10 -04:00
|
|
|
#define Curl_splayprint(x,y,z) Curl_nop_stmt
|
2006-04-10 11:00:53 -04:00
|
|
|
#endif
|
|
|
|
|
2011-09-03 10:06:10 -04:00
|
|
|
#endif /* HEADER_CURL_SPLAY_H */
|