1998-10-20 00:46:58 +04:00
|
|
|
/*
|
2001-11-29 03:24:43 +03:00
|
|
|
* "$Id: numericsort.c,v 1.10.2.4.2.1 2001/11/29 00:24:43 easysw Exp $"
|
1998-10-20 00:46:58 +04:00
|
|
|
*
|
|
|
|
* Numeric sorting routine for the Fast Light Tool Kit (FLTK).
|
|
|
|
*
|
2001-01-22 18:13:41 +03:00
|
|
|
* Copyright 1998-2001 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
2000-06-06 01:21:24 +04:00
|
|
|
* Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 00:46:58 +04:00
|
|
|
*/
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
/* My own scandir sorting function, useful for the film industry where
|
|
|
|
we have many files with numbers in their names: */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2000-04-04 21:57:05 +04:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
2001-11-29 03:24:43 +03:00
|
|
|
# include <FL/filename.H>
|
|
|
|
#elif defined(HAVE_DIRENT_H)
|
|
|
|
# include <dirent.h>
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2001-11-29 03:24:43 +03:00
|
|
|
# define dirent direct
|
|
|
|
# if HAVE_SYS_NDIR_H
|
|
|
|
# include <sys/ndir.h>
|
|
|
|
# endif
|
|
|
|
# if HAVE_SYS_DIR_H
|
|
|
|
# include <sys/dir.h>
|
|
|
|
# endif
|
|
|
|
# if HAVE_NDIR_H
|
|
|
|
# include <ndir.h>
|
|
|
|
# endif
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
#endif
|
1998-10-21 03:58:32 +04:00
|
|
|
int numericsort(struct dirent **A, struct dirent **B) {
|
1998-10-06 23:14:55 +04:00
|
|
|
const char* a = (*A)->d_name;
|
|
|
|
const char* b = (*B)->d_name;
|
1998-12-02 18:47:30 +03:00
|
|
|
int ret = 0;
|
1998-10-06 23:14:55 +04:00
|
|
|
for (;;) {
|
1999-03-08 17:53:44 +03:00
|
|
|
if (isdigit((unsigned)*a) && isdigit((unsigned)*b)) {
|
1998-12-02 18:47:30 +03:00
|
|
|
int diff,magdiff;
|
|
|
|
while (*a == '0') a++;
|
|
|
|
while (*b == '0') b++;
|
1999-03-08 17:53:44 +03:00
|
|
|
while (isdigit((unsigned)*a) && *a == *b) {a++; b++;}
|
|
|
|
diff = (isdigit((unsigned)*a) && isdigit((unsigned)*b)) ? *a - *b : 0;
|
1998-12-02 18:47:30 +03:00
|
|
|
magdiff = 0;
|
1999-03-08 17:53:44 +03:00
|
|
|
while (isdigit((unsigned)*a)) {magdiff++; a++;}
|
|
|
|
while (isdigit((unsigned)*b)) {magdiff--; b++;}
|
1998-12-02 18:47:30 +03:00
|
|
|
if (magdiff) {ret = magdiff; break;} /* compare # of significant digits*/
|
|
|
|
if (diff) {ret = diff; break;} /* compare first non-zero digit */
|
|
|
|
} else {
|
|
|
|
#if 1
|
1999-03-08 17:53:44 +03:00
|
|
|
if ((ret = tolower((unsigned)*a)-tolower((unsigned)*b))) break; /* compare case-insensitve */
|
1998-12-02 18:47:30 +03:00
|
|
|
#else
|
|
|
|
if ((ret = *a-*b)) break; /* compare case-sensitive */
|
|
|
|
#endif
|
|
|
|
if (!*a) break;
|
|
|
|
a++; b++;
|
1998-11-09 19:25:59 +03:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
1998-12-02 18:47:30 +03:00
|
|
|
if (!ret) return 0;
|
|
|
|
else return (ret < 0) ? -1 : 1;
|
1998-10-06 23:14:55 +04:00
|
|
|
}
|
1998-10-20 00:46:58 +04:00
|
|
|
|
1998-10-21 03:58:32 +04:00
|
|
|
/*
|
2001-11-29 03:24:43 +03:00
|
|
|
* End of "$Id: numericsort.c,v 1.10.2.4.2.1 2001/11/29 00:24:43 easysw Exp $".
|
1998-10-21 03:58:32 +04:00
|
|
|
*/
|