81 lines
2.5 KiB
C
81 lines
2.5 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* lib_ls_long.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/11/07 14:59:51 by jhalford #+# #+# */
|
|
/* Updated: 2016/11/23 18:50:52 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_ls.h"
|
|
|
|
int ft_ls_long_middle(struct stat *stat, t_pads *pads)
|
|
{
|
|
struct passwd *pwd;
|
|
struct group *grp;
|
|
|
|
if ((pwd = getpwuid(stat->st_uid)) == NULL)
|
|
return (1);
|
|
if ((grp = getgrgid(stat->st_gid)) == NULL)
|
|
return (1);
|
|
ft_printf(" %*hu", pads->nlink, stat->st_nlink);
|
|
ft_printf(" %-*s", pads->name, pwd->pw_name);
|
|
ft_printf(" %-*s", pads->gr_name, grp->gr_name);
|
|
if (S_ISBLK(stat->st_mode) || S_ISCHR(stat->st_mode))
|
|
ft_printf(" % *i,% *i",
|
|
pads->major + 1, major(stat->st_rdev),
|
|
pads->minor + 1, minor(stat->st_rdev));
|
|
else
|
|
ft_printf(" %*lld", pads->size, stat->st_size);
|
|
return (0);
|
|
}
|
|
|
|
void ft_ls_long_date(struct stat *stat, int opts)
|
|
{
|
|
char *date;
|
|
char *day;
|
|
char *month;
|
|
char *time;
|
|
time_t st_time;
|
|
|
|
if (opts & OPTS_LC)
|
|
st_time = stat->st_ctime;
|
|
else if (opts & OPTS_LU)
|
|
st_time = stat->st_atime;
|
|
else if (opts & OPTS_UU)
|
|
st_time = stat->st_birthtime;
|
|
else
|
|
st_time = stat->st_mtime;
|
|
date = ctime(&st_time);
|
|
/* ft_printf("\nctime is:%s\n", date); */
|
|
month = ft_strsub(date, 4, 3);
|
|
day = ft_strsub(date, 8, 2);
|
|
if (ft_time_isrecent(st_time))
|
|
time = ft_strsub(date, 11, 5);
|
|
else if (ft_isdigit(date[20]))
|
|
time = ft_strsub(date, 20, 4);
|
|
else
|
|
time = ft_strsub(date, 23, 6);
|
|
ft_printf(" %s %s %5s", month, day, time);
|
|
free(month);
|
|
free(day);
|
|
free(time);
|
|
}
|
|
|
|
void ft_ls_long_type(mode_t m)
|
|
{
|
|
char type;
|
|
|
|
type = '\0';
|
|
type = S_ISREG(m) ? '-' : type;
|
|
type = S_ISDIR(m) ? 'd' : type;
|
|
type = S_ISFIFO(m) ? 'p' : type;
|
|
type = S_ISSOCK(m) ? 's' : type;
|
|
type = S_ISCHR(m) ? 'c' : type;
|
|
type = S_ISBLK(m) ? 'b' : type;
|
|
type = S_ISLNK(m) ? 'l' : type;
|
|
ft_printf("%c", type);
|
|
}
|