1 |
27 |
unneback |
//===========================================================================
|
2 |
|
|
//
|
3 |
|
|
// bsearch.cxx
|
4 |
|
|
//
|
5 |
|
|
// ANSI standard binary search function defined in section 7.10.5.1
|
6 |
|
|
// of the standard
|
7 |
|
|
//
|
8 |
|
|
//===========================================================================
|
9 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
10 |
|
|
// -------------------------------------------
|
11 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
12 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
13 |
|
|
//
|
14 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
15 |
|
|
// the terms of the GNU General Public License as published by the Free
|
16 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
17 |
|
|
//
|
18 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
19 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
20 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
21 |
|
|
// for more details.
|
22 |
|
|
//
|
23 |
|
|
// You should have received a copy of the GNU General Public License along
|
24 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
25 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
26 |
|
|
//
|
27 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
28 |
|
|
// or inline functions from this file, or you compile this file and link it
|
29 |
|
|
// with other works to produce a work based on this file, this file does not
|
30 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
31 |
|
|
// License. However the source code for this file must still be made available
|
32 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
33 |
|
|
//
|
34 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
35 |
|
|
// this file might be covered by the GNU General Public License.
|
36 |
|
|
//
|
37 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
38 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
39 |
|
|
// -------------------------------------------
|
40 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
41 |
|
|
//===========================================================================
|
42 |
|
|
//#####DESCRIPTIONBEGIN####
|
43 |
|
|
//
|
44 |
|
|
// Author(s): jlarmour
|
45 |
|
|
// Contributors:
|
46 |
|
|
// Date: 2000-04-30
|
47 |
|
|
// Purpose:
|
48 |
|
|
// Description:
|
49 |
|
|
// Usage:
|
50 |
|
|
//
|
51 |
|
|
//####DESCRIPTIONEND####
|
52 |
|
|
//
|
53 |
|
|
//===========================================================================
|
54 |
|
|
|
55 |
|
|
// CONFIGURATION
|
56 |
|
|
|
57 |
|
|
#include <pkgconf/libc_stdlib.h> // Configuration header
|
58 |
|
|
|
59 |
|
|
// INCLUDES
|
60 |
|
|
|
61 |
|
|
#include <cyg/infra/cyg_type.h> // Common type definitions and support
|
62 |
|
|
#include <cyg/infra/cyg_trac.h> // Tracing support
|
63 |
|
|
#include <cyg/infra/cyg_ass.h> // Assertion support
|
64 |
|
|
#include <stdlib.h> // Header for all stdlib functions
|
65 |
|
|
// (like this one)
|
66 |
|
|
|
67 |
|
|
// TRACING
|
68 |
|
|
|
69 |
|
|
# if defined(CYGDBG_USE_TRACING) && \
|
70 |
|
|
defined(CYGNUM_LIBC_BSEARCH_TRACE_LEVEL)
|
71 |
|
|
static int bsearch_trace = CYGNUM_LIBC_BSEARCH_TRACE_LEVEL;
|
72 |
|
|
# define TL1 (0 < bsearch_trace)
|
73 |
|
|
# else
|
74 |
|
|
# define TL1 (0)
|
75 |
|
|
# endif
|
76 |
|
|
|
77 |
|
|
|
78 |
|
|
// FUNCTIONS
|
79 |
|
|
|
80 |
|
|
externC void *
|
81 |
|
|
bsearch( const void *key, const void *base, size_t nmemb, size_t size,
|
82 |
|
|
__bsearch_comparison_fn_t compar )
|
83 |
|
|
{
|
84 |
|
|
CYG_REPORT_FUNCNAMETYPE( "bsearch", "returning %08x" );
|
85 |
|
|
|
86 |
|
|
CYG_REPORT_FUNCARG5( "key=%08x, base=%08x, nmemb=%d, size=%d, "
|
87 |
|
|
"compar=%08x", key, base, nmemb, size, compar );
|
88 |
|
|
|
89 |
|
|
CYG_CHECK_DATA_PTR( key, "key is not a valid pointer!" );
|
90 |
|
|
CYG_CHECK_DATA_PTR( base, "base is not a valid pointer!" );
|
91 |
|
|
CYG_CHECK_FUNC_PTR( compar, "compar is not a valid function pointer!" );
|
92 |
|
|
|
93 |
|
|
CYG_ADDRESS current;
|
94 |
|
|
size_t lower = 0;
|
95 |
|
|
size_t upper = nmemb;
|
96 |
|
|
size_t index;
|
97 |
|
|
int result;
|
98 |
|
|
|
99 |
|
|
if (nmemb == 0 || size == 0)
|
100 |
|
|
{
|
101 |
|
|
CYG_TRACE2( TL1, "Warning! either nmemb (%d) or size (%d) is 0",
|
102 |
|
|
nmemb, size );
|
103 |
|
|
CYG_REPORT_RETVAL( NULL );
|
104 |
|
|
return NULL;
|
105 |
|
|
} // if
|
106 |
|
|
|
107 |
|
|
while (lower < upper)
|
108 |
|
|
{
|
109 |
|
|
index = (lower + upper) / 2;
|
110 |
|
|
current = (CYG_ADDRESS) (((char *) base) + (index * size));
|
111 |
|
|
|
112 |
|
|
CYG_TRACE2( TL1, "About to call comparison function with "
|
113 |
|
|
"key=%08x, current=%08x", key, current );
|
114 |
|
|
result = compar (key, (void *) current);
|
115 |
|
|
CYG_TRACE1( TL1, "Comparison function returned %d", result );
|
116 |
|
|
|
117 |
|
|
if (result < 0)
|
118 |
|
|
upper = index;
|
119 |
|
|
else if (result > 0)
|
120 |
|
|
lower = index + 1;
|
121 |
|
|
else
|
122 |
|
|
{
|
123 |
|
|
CYG_REPORT_RETVAL( current );
|
124 |
|
|
return (void *)current;
|
125 |
|
|
} // else
|
126 |
|
|
} // while
|
127 |
|
|
|
128 |
|
|
CYG_REPORT_RETVAL( NULL );
|
129 |
|
|
return NULL;
|
130 |
|
|
} // bsearch()
|
131 |
|
|
|
132 |
|
|
// EOF bsearch.cxx
|