Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

string_get_string_as_array tiene un comportamiento erróneo si no recibe una lista #118

Closed
RaniAgus opened this issue Aug 31, 2020 · 2 comments

Comments

@RaniAgus
Copy link
Contributor

RaniAgus commented Aug 31, 2020

Buenas!

Cuando se llama la función string_get_string_as_array, pero el string que se le pasa por argumento no está en formato lista (entiendo como "formato lista": un string que empieza y termina con corchetes, cuyos elementos se separan con comas), la función no me retorna algún valor de 'error', sino que hace la conversión quitando el primer elemento del string. Ejemplo:

char* array_string = "12,13,14,15"
string_get_value_as_array(array_string) => ["2","13","14","1"]

También cuando se le pasa una lista con un elemento "vacío" tampoco retorna ningún error, sino que retorna una lista con menos elementos:

char* array_string = "[12,,14,15]"
string_get_value_as_array(array_string) => ["12","14","15"]

No sé si efectivamente es un error y debería entrar dentro de la función original, o si la idea es que "si no recibe una lista, el comportamiento es indefinido" y habría que implementar una función string_get_string_as_array_v2 del estilo:

int	string_array_lines_count(char** str_arr)
{
	int lines = 0;
	if(!str_arr) return lines;

	void _accumulate_lines(char* element)
	{
		lines++;
	}
	string_iterate_lines(str_arr,_accumulate_lines);

	return lines;
}

void string_array_destroy(char** str_arr)
{
	if(!str_arr) return;

	void _free_lines(char* element)
	{
		if(element) free(element);
	}
	string_iterate_lines(str_arr,_free_lines);

	free(str_arr);
}

char** string_get_string_as_array_v2(char* array_string)
{
	char** str_array = NULL;

	//Resuelve el problema de los corchetes
	if(string_starts_with(array_string, "[") && string_ends_with(array_string, "]"))
	{
		str_array = string_get_string_as_array(array_string);

		//Resuelve el problema de las comas
		int commas = 0;

		for(int i=0; array_string[i] != '\0'; i++)
			if(array_string[i]==',') commas++;

		if(commas >= cs_string_array_lines_count(str_array))
		{
			string_array_destroy(str_array);
			str_array = NULL;
		}

	}

	return str_array;
}

De paso, aprovecho para mostrarles las abstracciones string_array_lines_count y string_array_destroy, que no están en las commons y pueden ser útiles al manejar arrays de strings.

Saludos!

@RaniAgus
Copy link
Contributor Author

Perdón si no es el lugar indicado para decir esto, me di cuenta que quizás sería mejor haberlo subido al foro.

@RaniAgus
Copy link
Contributor Author

RaniAgus commented Sep 1, 2020

Issue ya respondido en el foro: sisoputnfrba/foro#1892

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant