From: Cezary Kaliszyk <ck189400@zodiac.mimuw.edu.pl>
To: Alessandro Baretta <alex@baretta.com>, caml-list@inria.fr
Subject: Re: [Caml-list] format type
Date: Mon, 4 Nov 2002 12:03:59 +0100 [thread overview]
Message-ID: <20021104110359.GA17924@zodiac.mimuw.edu.pl> (raw)
In-Reply-To: <3DC627A5.9090900@baretta.com>
[-- Attachment #1: Type: text/plain, Size: 3346 bytes --]
On Mon, Nov 04, 2002 at 08:54:13AM +0100, Alessandro Baretta wrote:
> >>From: Cezary Kaliszyk <ck189400@zodiac.mimuw.edu.pl>
> >>Date: Sun, 3 Nov 2002 08:08:58 +0100
> >>To: caml-list@inria.fr
> >>Subject: [Caml-list] format type
> >>
> >>I'm trying to write a function that takes a format and a function and
> >>applies some (got from elsewere) arguments to the function.
> >>
> >><snip>
> >>
> >>The only known workaround for me for now is to pass "%t" and
> >>make my function not (unit -> unit) but ('a -> unit).
>
> As far as I can see from the docs, "%t" is only meaningful
> with the Printf module. I see no mention of it in Scanf.
> What exactly are you trying to do anyway?
I am trying to create a protocol for passing messages via network.
Each message may be acompanied by a certain amount of parameters
(of type char, int, float or string) (the parameters are dependant on the
message).
output/input_value aren't apropriate. (For network speed reasons, and no
type extensibility)
I am writing a function which adds a message to the protocol, which takes the
type of arguments accompanying the message and the receiving function.
It should return function used to send this message type. Eg:
let two_char_sender = add_to_protocol "%c%c" two_char_receiver;;
Where two_char_receiver : (char -> char -> unit)
And tho_char_sender : (char -> char -> unit).
And I'd like the types to be controlled.
And I've written it. But it doesn't work if I want to create a message
that does not take any parameters. And I suppose the builtin type format
doesn't have the functionality necessary to write it.
> Assuming you are talking about the Scanf module, I'd say you
> can't. Of course, if your function takes a unit input, it
> can very well be a perfectly polymorphic function (? la
> ignore) with type ('a -> unit). In which case you can force
> a call to such function while scanning the input buffer by
> passing it a range conversion with an empty range:
> "%[^\000-\255]". Your function would be called with an empty
> string as an actual parameter.
I'm not talkin about Printf nor Scanf, but about my module that uses the
format type.
> Or, better yet, you can use the "%N" conversion, which
> passes the number of characters consumed. Just discard this
> value.
As above.
> >>Writing code with changed types just for the sake of the language is
> >>very bad. And with "%t" 'a seems to be (unit -> unit).
>
> It is also very bad to complain without doing any work
> yourself. You are probably the only one on this list wishing
> to call a function with no input while parsing a buffer.
I'm not parsing a buffer...
> Nothing wrong with this, apart from stylistic
> considerations, but it implies two things: 1) I don't
> suppose Pierre ever even thought of such a conversion for
> Scanf, and 2) even if he did, I doubt he'd care to implement
> it. If you really think it is necessary, you might consider
> hacking it into the Scanf module and submitting the patch to
> the maintainers.
It's not scanf relative...
> Alex
The format argument is parsed by me, not by scanf or printf (as I wrote
in the example code) and I don't know where in ocaml code is type
checking of the arguments accompanying the format type.
Cezary Kaliszyk
--
[-- Attachment #2: Type: application/pgp-signature, Size: 254 bytes --]
next prev parent reply other threads:[~2002-11-05 8:55 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-11-03 7:08 Cezary Kaliszyk
2002-11-04 4:00 ` Ken Wakita
2002-11-04 7:54 ` Alessandro Baretta
2002-11-04 11:03 ` Cezary Kaliszyk [this message]
2002-11-04 11:56 ` Alessandro Baretta
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20021104110359.GA17924@zodiac.mimuw.edu.pl \
--to=ck189400@zodiac.mimuw.edu.pl \
--cc=alex@baretta.com \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox