1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* Copyright (c) 1989 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 are permitted
* provided that: (1) source distributions retain this entire copyright
* notice and comment, and (2) distributions including binaries display
* the following acknowledgement: ``This product includes software
* developed by the University of California, Berkeley and its contributors''
* in the documentation or other materials provided with the distribution
* and in all advertising materials mentioning features or use of this
* software. Neither the name of the University nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include "tweak.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <sys/param.h>
#include <grp.h>
#include <pwd.h>
#include <utmp.h>
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#include "my-string.h"
#include "ls.h"
#define BLK(A) (((A)+1023)/1024)
static int printtype (mode_t mode)
{
switch(mode & S_IFMT) {
case S_IFDIR:
(void)putchar('/');
return(1);
}
return(0);
}
/*
* print [inode] [size] name
* return # of characters printed, no trailing characters
*/
static int printaname (LS * lp)
{
int chcnt;
chcnt = 0;
if (f_inode) {
printf("%5lu ", (unsigned long)lp->lstat.st_ino);
chcnt += 6;
}
if (f_size) {
printf("%4ld ", (long)BLK(lp->lstat.st_size));
chcnt += 5;
}
printf("%s", lp->name); chcnt += strlen(lp->name);
if (f_type) chcnt += printtype(lp->lstat.st_mode);
return(chcnt);
}
void printscol (LS * stats, int num)
{
for (; num--; ++stats) {
printaname(stats);
putchar('\n');
}
}
static void printtime (time_t ftime)
{
int i;
char *longstring;
longstring = (char *)ctime(&ftime);
for (i = 4; i < 11; ++i) (void)putchar(longstring[i]);
#define SIXMONTHS ((365 / 2) * 24 * 60 * 60)
if (ftime + SIXMONTHS > time((time_t *)NULL))
for (i = 11; i < 16; ++i) (void)putchar(longstring[i]);
else {
(void)putchar(' ');
for (i = 20; i < 24; ++i) (void)putchar(longstring[i]);
}
(void)putchar(' ');
}
void printlong (LS * stats, int num)
{
const char *modep;
if (f_total) (void)printf("total %lu\n",(unsigned long) stats[0].lstat.st_btotal);
for (; num--; ++stats) {
if (f_inode) printf("%6lu ", (unsigned long)stats->lstat.st_ino);
if (f_size ) printf("%4lu ", (unsigned long)BLK(stats->lstat.st_size));
modep = ((S_IFDIR & stats->lstat.st_mode)) ? "drwxrwxrwx" : "-rw-rw-rw-" ;
(void)printf("%s %3u %-*s ", modep, stats->lstat.st_nlink, 8, "nobody");
if (f_group) printf("%-*s ", 8, "nobody");
else printf("%8lu ", (unsigned long)stats->lstat.st_size);
if (f_accesstime) printtime(stats->lstat.st_atime);
else if (f_statustime) printtime(stats->lstat.st_ctime);
else printtime(stats->lstat.st_mtime);
printf("%s", stats->name);
if (f_type) printtype(stats->lstat.st_mode);
putchar('\n');
}
}
#define TAB 8
extern int termwidth;
void printcol (LS * stats, int num)
{
register int base, chcnt, cnt, col, colwidth;
int endcol, numcols, numrows, row;
colwidth = stats[0].lstat.st_maxlen;
if (f_inode) colwidth += 6;
if (f_size) colwidth += 5;
if (f_type) colwidth += 1;
colwidth = (colwidth + TAB) & ~(TAB - 1);
if (termwidth < 2 * colwidth) {
printscol(stats, num);
return;
}
numcols = termwidth / colwidth;
numrows = num / numcols;
if (num % numcols) ++numrows;
if (f_size && f_total) printf("total %lu\n", (unsigned long)stats[0].lstat.st_btotal);
for (row = 0; row < numrows; ++row) {
endcol = colwidth;
for (base = row, chcnt = col = 0; col < numcols; ++col) {
chcnt += printaname(stats + base);
if ((base += numrows) >= num) break;
while ((cnt = ( (chcnt + TAB) & ~(TAB - 1))) <= endcol) {
(void)putchar('\t');
chcnt = cnt;
}
endcol += colwidth;
}
putchar('\n');
}
}
|