2001-12-06 13:10:51 +01:00
|
|
|
/* Copyright (C) 2000 MySQL AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 13:10:51 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
/* Sort of string pointers in string-order with radix or qsort */
|
|
|
|
|
|
|
|
#include "mysys_priv.h"
|
|
|
|
#include <m_string.h>
|
|
|
|
|
|
|
|
void my_string_ptr_sort(void *base, uint items, size_s size)
|
|
|
|
{
|
|
|
|
#if INT_MAX > 65536L
|
|
|
|
uchar **ptr=0;
|
|
|
|
|
2001-10-11 03:25:00 +02:00
|
|
|
if (size <= 20 && items >= 1000 && items < 100000 &&
|
2000-07-31 21:29:14 +02:00
|
|
|
(ptr= (uchar**) my_malloc(items*sizeof(char*),MYF(0))))
|
|
|
|
{
|
|
|
|
radixsort_for_str_ptr((uchar**) base,items,size,ptr);
|
|
|
|
my_free((gptr) ptr,MYF(0));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (size && items)
|
|
|
|
{
|
|
|
|
uint size_arg=size;
|
|
|
|
qsort2(base,items,sizeof(byte*),get_ptr_compare(size),(void*) &size_arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|