2005-01-10 08:39:26 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-26 06:18:55 +00:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Michael Fischbein.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 06:18:55 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-08-07 22:28:25 +00:00
|
|
|
#if 0
|
2002-02-03 20:55:54 +00:00
|
|
|
#ifndef lint
|
1997-08-07 22:28:25 +00:00
|
|
|
static char sccsid[] = "@(#)cmp.c 8.1 (Berkeley) 5/31/93";
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2002-02-03 20:55:54 +00:00
|
|
|
#endif
|
2002-06-30 05:13:54 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <fts.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "ls.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
namecmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
1996-12-28 03:46:27 +00:00
|
|
|
return (strcoll(a->fts_name, b->fts_name));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
revnamecmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
1996-12-28 03:46:27 +00:00
|
|
|
return (strcoll(b->fts_name, a->fts_name));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
modcmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_mtim.tv_sec >
|
|
|
|
a->fts_statp->st_mtim.tv_sec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_mtim.tv_sec <
|
|
|
|
a->fts_statp->st_mtim.tv_sec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (-1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_mtim.tv_nsec >
|
|
|
|
a->fts_statp->st_mtim.tv_nsec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_mtim.tv_nsec <
|
|
|
|
a->fts_statp->st_mtim.tv_nsec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (-1);
|
2012-11-08 23:45:19 +00:00
|
|
|
if (f_samesort)
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(b->fts_name, a->fts_name));
|
2012-11-08 23:45:19 +00:00
|
|
|
else
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(a->fts_name, b->fts_name));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
revmodcmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
|
|
|
return (modcmp(b, a));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
acccmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_atim.tv_sec >
|
|
|
|
a->fts_statp->st_atim.tv_sec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_atim.tv_sec <
|
|
|
|
a->fts_statp->st_atim.tv_sec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (-1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_atim.tv_nsec >
|
|
|
|
a->fts_statp->st_atim.tv_nsec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_atim.tv_nsec <
|
|
|
|
a->fts_statp->st_atim.tv_nsec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (-1);
|
2012-11-08 23:45:19 +00:00
|
|
|
if (f_samesort)
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(b->fts_name, a->fts_name));
|
2012-11-08 23:45:19 +00:00
|
|
|
else
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(a->fts_name, b->fts_name));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
revacccmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
|
|
|
return (acccmp(b, a));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2006-03-24 16:38:02 +00:00
|
|
|
int
|
|
|
|
birthcmp(const FTSENT *a, const FTSENT *b)
|
|
|
|
{
|
|
|
|
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_birthtim.tv_sec >
|
|
|
|
a->fts_statp->st_birthtim.tv_sec)
|
2006-03-24 16:38:02 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_birthtim.tv_sec <
|
|
|
|
a->fts_statp->st_birthtim.tv_sec)
|
2006-03-24 16:38:02 +00:00
|
|
|
return (-1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_birthtim.tv_nsec >
|
|
|
|
a->fts_statp->st_birthtim.tv_nsec)
|
2006-03-24 16:38:02 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_birthtim.tv_nsec <
|
|
|
|
a->fts_statp->st_birthtim.tv_nsec)
|
2006-03-24 16:38:02 +00:00
|
|
|
return (-1);
|
2012-11-08 23:45:19 +00:00
|
|
|
if (f_samesort)
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(b->fts_name, a->fts_name));
|
2012-11-08 23:45:19 +00:00
|
|
|
else
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(a->fts_name, b->fts_name));
|
2006-03-24 16:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
revbirthcmp(const FTSENT *a, const FTSENT *b)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (birthcmp(b, a));
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
statcmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_ctim.tv_sec >
|
|
|
|
a->fts_statp->st_ctim.tv_sec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_ctim.tv_sec <
|
|
|
|
a->fts_statp->st_ctim.tv_sec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (-1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_ctim.tv_nsec >
|
|
|
|
a->fts_statp->st_ctim.tv_nsec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (1);
|
2010-03-28 13:16:08 +00:00
|
|
|
if (b->fts_statp->st_ctim.tv_nsec <
|
|
|
|
a->fts_statp->st_ctim.tv_nsec)
|
2004-06-23 08:26:31 +00:00
|
|
|
return (-1);
|
2012-11-08 23:45:19 +00:00
|
|
|
if (f_samesort)
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(b->fts_name, a->fts_name));
|
2012-11-08 23:45:19 +00:00
|
|
|
else
|
2012-11-08 00:24:26 +00:00
|
|
|
return (strcoll(a->fts_name, b->fts_name));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
revstatcmp(const FTSENT *a, const FTSENT *b)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-06-23 08:26:31 +00:00
|
|
|
|
|
|
|
return (statcmp(b, a));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2005-06-03 11:05:58 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
sizecmp(const FTSENT *a, const FTSENT *b)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (b->fts_statp->st_size > a->fts_statp->st_size)
|
|
|
|
return (1);
|
|
|
|
if (b->fts_statp->st_size < a->fts_statp->st_size)
|
|
|
|
return (-1);
|
|
|
|
return (strcoll(a->fts_name, b->fts_name));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
revsizecmp(const FTSENT *a, const FTSENT *b)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (sizecmp(b, a));
|
|
|
|
}
|