I'm working on a URI parser in Prolog, but at the moment I'm stuck with something much simpler. I am exploring a string to find a particular char, ":", and when I find it, I want to have a string that only contains the concatenated chars before it.
This program:
%caratteri speciali
colonCheck(S):-string_to_atom([S],C),C=':'. % S==:
headGetter([H|T],[H]):-!.
%struttura uri
uri(Scheme, Userinfo, Host, Port, Path, Query, Fragment).
%parsing uri
parsed_uri(UriInput, uri(Scheme, Userinfo, Host, Port, Path, Query, Fragment)):-
scheme(UriInput, uri(S, Userinfo, Host, Port, Path, Query, Fragment)),
not(headGetter(UriInput, ':')), !,
string_to_atom([S], Scheme).
%controllo Scheme, in ingresso ho i dati da controllare e l'oggetto uri che mi servirà per inviarlo al passaggio successivo
%ho trovato i due punti
scheme([H|T], uri(Scheme, Userinfo, Host, Port, Path, Query, Fragment)):-
colonCheck(H), !, end(Scheme).
%non trovo i due punti e procedo a controllare il prossimo carattere(la testa dell'attuale coda)
scheme([H|T], uri(Scheme, Userinfo, Host, Port, Path, Query, Fragment)):-
not(colonCheck(H)), scheme(T, uri(This, Userinfo, Host, Port, Path, Query, Fragment)), append([H], This, Scheme).
%fine computazione
end([S]).
Gives this result:
?- scheme("http:", uri(A,_,_,_,_,_,_)).
A = [104, 116, 116, 112, _G1205].
I think that part is correct, but now I want to convert the char list into a string, so I changed the last line to this:
end([S]):-string_to_atom([S], K).
But I get this error message:
ERROR: string_to_atom/2: Arguments are not sufficiently instantiated
I'm probably missing something. Can you tell what it is?
end(Scheme)ofscheme/2, the rule forend/1creates a free variable. If that's what you intend, okay, but it seems to be the presence of that free variable causing the error in callingstring_to_atom/2. Also a good idea is specifying which Prolog you are using, so any possible quirks can be discussed. – hardmath Nov 27 '12 at 14:16