summaryrefslogtreecommitdiffstats
path: root/src/b_echo.c
blob: ec6604965ca9452cedfb639ac48bf0cace999b30 (plain)
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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   b_echo.c                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:19:27 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:19:29 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

#include "s_struct.h"
#include "u_utils.h"

/* TODO: echo "quoted text", echo 'quoted text', done*/
/* echo kill\nbackslash\nbut\nnot\nn, echo "quoted\nnew\nlines", done */
/* full buffer */

void
	e_put(char *str,
			uint8_t op)
{
	size_t i;

	i = -1;
	if (op == 0)
		while (str[++i])
		{
			if (str[i] == '\\')
				i++;
			ft_putchar(str[i]);
		}
}

char
	*e_initb(char *ptr[],
                    char *str)
{
    size_t    len;
    uint8_t   i;

    len = 0;
    i = -1;
    while (ptr[++i])
    {
        len += ft_strlen(ptr[i]);
    }
    if (!(str = (char*)malloc(len * sizeof(char))))
        return (NULL);
    return (str);
}

/***********************************************/
/* void                                        */
/*     e_fill(char *ptr[], char **str)         */
/* {                                           */
/*     char *bs;                               */
/*                                             */
/*     ft_sprintf(*str, "%s", *ptr);           */
/*     if (*str[0] == '\"' || *str[0] == '\'') */
/*     {                                       */
/*         *str = ft_strtrim(*str, "\"\'");    */
/*         ft_printf("%s", *str);              */
/*     }                                       */
/*     else if ((bs = ft_strrchr(*str, '\\'))) */
/*     {                                       */
/*         e_put(*str, 0);                     */
/*     }                                       */
/*     else                                    */
/*         ft_printf("%s", *str);              */
/* }                                           */
/***********************************************/

uint8_t
	b_echo(char *args[],
			t_msh *msh)
{
	const uint64_t	argc = u_builtins_get_argc((const char **)args);
	char			**ptr;
	char			*str;
	int8_t			nopt;

	(void)msh;
	ptr = args;
	nopt = 0;
    str = NULL;
    str = e_initb(ptr, str);
	if (argc >= 1)
	{
		if (ft_strncmp(ptr[0], "-n", 3) == 0)
		{
			nopt = 1;
			ptr += 1;
		}
		if (argc - nopt >= 1)
        {
            ft_printf("%s", *ptr);
            ptr++;
            while (*ptr)
            {
                ft_printf(" %s", *ptr);
                ptr++;
            }
        }
	}
	ft_memdel((void*)&str);
	if (nopt == 0)
		ft_printf("\n");
	return (0);
}