summaryrefslogtreecommitdiffstats
path: root/src/b_export.c
blob: 5e7ee1445a62dc5af87e3b893ac6ef0cfd4b2fbc (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   b_export.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 <stdlib.h>
#include <stdint.h>

#include "b_env.h"
#include "f_fail.h"
#include "s_struct.h"
#include "u_utils.h"

static int8_t
	check_valid_identifier(const char *arg)
{
	char	*ptr;

	ptr = (char*)arg;
	if (ft_isalpha(ptr[0]))
	{
		return (1);
	}
	return (0);
}

static int8_t
	check_equals(const char *arg)
{
	char	*ptr;

	ptr = (char*)arg;
	while (*ptr)
	{
		if (*ptr == '=')
			return (1);
		ptr++;
	}
	return (0);
}

uint8_t
	b_export(char *args[],
			 	t_msh *msh)
{
	const uint64_t	argc = get_argc((const char**)args);
	char			**ptr;
	int8_t			next;
	uint8_t			r;

	if (argc == 0)
	{
		return (b_env(NULL, msh));
	}
	ptr = args;
	r = 0;
	while (*ptr)
	{
		next = 0;
		if (!check_valid_identifier(*ptr))
		{
			fail_identifier("export", *ptr, msh);
			next = 1;
			r = 1;
		}
		if (next == 0 && !check_equals(*ptr))
			next = 1;
		ptr++;
	}
	 /* TODO: finish export */
	return (r);
}