2015-12-04 01:27:07 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define ARGUMENTS "d:f:"
|
|
|
|
|
|
|
|
struct fields
|
|
|
|
{
|
|
|
|
int nbfields;
|
|
|
|
unsigned int *fields;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
chomp (const char *s)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
while (NULL != s && NULL != (p = strrchr(s, '\n'))) {
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
} /* chomp */
|
|
|
|
|
|
|
|
int
|
|
|
|
human (const char *s, char *stmp, ssize_t bufsize)
|
|
|
|
{
|
|
|
|
unsigned long long int val = strtoull(s, NULL, 10);
|
|
|
|
|
|
|
|
char suf = ' ';
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'k';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'M';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'M';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'G';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'T';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'P';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'E';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'Z';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val > 1000) {
|
|
|
|
val /= 1000;
|
|
|
|
suf = 'Y';
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(stmp, bufsize, "%llu %co", val, suf);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_token_to_human (const char *token)
|
|
|
|
{
|
|
|
|
char *stmp = malloc(BUFSIZ);
|
|
|
|
if(stmp != 0) {
|
|
|
|
int ret = human(token, stmp, BUFSIZ);
|
|
|
|
printf("%s ", stmp);
|
|
|
|
free(stmp);
|
|
|
|
}
|
2015-12-04 01:54:50 +01:00
|
|
|
|
|
|
|
// TODO prints error then exits
|
2015-12-04 01:27:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_delim (char *s, const char *delim, const struct fields *f)
|
|
|
|
{
|
|
|
|
char *token, *saveptr;
|
|
|
|
char *str;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
// printf("%d fields :: ", f->nbfields);
|
|
|
|
// for( i = 0 ; i < f->nbfields ; i++) {
|
|
|
|
// printf("%u, ", f->fields[i]);
|
|
|
|
// }
|
|
|
|
// printf("\n");
|
|
|
|
|
|
|
|
for (str = s, i = 1; ; str = NULL, i++) {
|
|
|
|
token = strtok_r(str, delim, &saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// check if we need to print the current token humanized
|
|
|
|
int found = 0;
|
|
|
|
|
2015-12-04 01:54:50 +01:00
|
|
|
for (j = 0 ; j < f->nbfields && found == 0; j++ ) {
|
2015-12-04 01:27:07 +01:00
|
|
|
if( i == f->fields[j] ) {
|
|
|
|
print_token_to_human(token);
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// print the current token not humanized
|
|
|
|
if (found == 0) {
|
|
|
|
printf("%s ", token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the index of every token to humanize
|
|
|
|
int
|
|
|
|
get_tok_to_humanize (char *s, struct fields *f)
|
|
|
|
{
|
|
|
|
if(f == NULL || s == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *str = NULL;
|
|
|
|
char *token = NULL, *saveptr = NULL;
|
|
|
|
f->nbfields = 0;
|
|
|
|
|
|
|
|
// counts the number of fields
|
|
|
|
char * strtmp = s;
|
|
|
|
while(*strtmp++ != '\0') {
|
|
|
|
if (*strtmp == ',')
|
|
|
|
f->nbfields++;
|
|
|
|
}
|
|
|
|
f->nbfields++;
|
|
|
|
|
|
|
|
f->fields = (unsigned int *) malloc(sizeof(unsigned int) * f->nbfields);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (str = s, i = 0; ; str = NULL, i++) {
|
|
|
|
token = strtok_r(str, ",", &saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
f->fields[i] = atoi(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
2015-12-04 09:06:03 +01:00
|
|
|
char strtmp[BUFSIZ];
|
2015-12-04 01:27:07 +01:00
|
|
|
char *delim = NULL; // options
|
|
|
|
struct fields fields;
|
|
|
|
|
|
|
|
if(argc < 1 || argc > 3) {
|
|
|
|
fprintf(stderr, "Usage: %s [fields [delim]]\n", argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ret ;
|
|
|
|
switch (argc) {
|
|
|
|
case 3 :
|
|
|
|
ret = get_tok_to_humanize(argv[1], &fields);
|
|
|
|
delim = argv[2];
|
|
|
|
break;
|
|
|
|
case 2 :
|
|
|
|
ret = get_tok_to_humanize(argv[1], &fields);
|
|
|
|
delim = (char *) malloc(1);
|
|
|
|
*delim = ' ';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(fgets(strtmp, BUFSIZ, stdin)) {
|
|
|
|
chomp(strtmp);
|
2015-12-04 01:54:50 +01:00
|
|
|
print_delim (strtmp, delim, &fields);
|
2015-12-04 01:27:07 +01:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2015-12-04 01:54:50 +01:00
|
|
|
free(fields.fields);
|
|
|
|
|
|
|
|
if(argc == 2)
|
|
|
|
free(delim);
|
|
|
|
|
2015-12-04 01:27:07 +01:00
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|