1
0
Fork 0
doc/devel/interface/interface-pipes.en.tm

171 lines
5.6 KiB
Plaintext
Raw Normal View History

2011-08-28 15:59:50 +08:00
<TeXmacs|1.0.3.7>
<style|tmdoc>
<\body>
<tmdoc-title|Basic input/output using pipes>
The configuration and the compilation of the <verbatim|minimal> plug-in is
<hyper-link|described|../plugin/plugin-binary.en.tm> in the chapter about
plug-ins. We will now study the source file
<example-plugin-link|minimal/src/minimal.cpp>. Essentially, the
<verbatim|main> routine is given by
<\cpp-fragment>
int
main () {
\ \ <em|display-startup-banner>
\ \ while (true) {
\ \ \ \ <em|read-input>
\ \ \ \ <em|display-output>
\ \ }
\ \ return 0;
}
</cpp-fragment>
By default, <TeXmacs> just send a <verbatim|'\\n'>-terminated string to the
application as the input. Consequently, the code for
<verbatim|<em|read-input>> is given by
<\cpp-fragment>
char buffer[100];
cin.getline (buffer, 100, '\\n');
</cpp-fragment>
The output part is more complicated, since <TeXmacs> needs to have a secure
way for knowing whether the output has finished. This is accomplished by
encapsulating each piece of output (in our case both the display banner and
the interactive output) inside a block of the form
<\quotation>
<framed-fragment|<verbatim|<render-key|DATA_BEGIN><em|format>:<em|message><render-key|DATA_END>>>
</quotation>
Here <verbatim|DATA_BEGIN> and <verbatim|DATA_END> stand for special
control characters:
<\cpp-fragment>
#define DATA_BEGIN \ \ ((char) 2)
#define DATA_END \ \ \ \ ((char) 5)
#define DATA_ESCAPE \ ((char) 27)
</cpp-fragment>
The <verbatim|DATA_ESCAPE> is used for producing the <verbatim|DATA_BEGIN>
and <verbatim|DATA_END> characters in the <verbatim|<em|message>> using the
rewriting rules
<\quotation>
<\framed-fragment>
<\with|font-family|tt>
<tabular|<tformat|<table|<row|<cell|<render-key|DATA_ESCAPE><space|0.6spc><render-key|DATA_BEGIN>>|<cell|<with|mode|math|\<longrightarrow\>>>|<cell|<render-key|DATA_BEGIN>>>|<row|<cell|<render-key|DATA_ESCAPE><space|0.6spc><render-key|DATA_END>>|<cell|<with|mode|math|\<longrightarrow\>>>|<cell|<render-key|DATA_END>>>|<row|<cell|<render-key|DATA_ESCAPE><space|0.6spc><render-key|DATA_ESCAPE>>|<cell|<with|mode|math|\<longrightarrow\>>>|<cell|<render-key|DATA_ESCAPE>>>>>>
</with>
</framed-fragment>
</quotation>
The <verbatim|<em|format>> specifies the format of the
<verbatim|<em|message>>. For instance, in our example, the code of
<verbatim|<em|display-startup-banner>> is given by
<\cpp-fragment>
cout \<less\>\<less\> DATA_BEGIN \<less\>\<less\> "verbatim:";
cout \<less\>\<less\> "Hi there!";
cout \<less\>\<less\> DATA_END;
fflush (stdout);
</cpp-fragment>
Similarly, the code of <verbatim|<em|display-output>> is given by
<\cpp-fragment>
cout \<less\>\<less\> DATA_BEGIN \<less\>\<less\> "verbatim:";
cout \<less\>\<less\> "You typed " \<less\>\<less\> buffer;
cout \<less\>\<less\> DATA_END;
fflush (stdout);
</cpp-fragment>
<\remark>
For synchronization purposes, <TeXmacs> will assume that the output is
finished as soon as it encounters the <render-key|DATA_END> which closes the
initial <render-key|DATA_BEGIN>. So all output has to be inside one <em|single>
outer <render-key|DATA_BEGIN>-<render-key|DATA_END> block: if you send more blocks,
then <TeXmacs> will retake control before reading all your output. It
<em|is> possible to nest <render-key|DATA_BEGIN>-<render-key|DATA_END> blocks though,
as we will see below.
</remark>
<\remark>
In our example, the <value|cpp> code for the application is included in
the plug-in. In the case when you are writing a <TeXmacs> interface for
an existing application <verbatim|<em|myapp>>, the convention is to
create a <verbatim|--texmacs> option for this program. Then it is no
longer necessary to have <verbatim|<em|myapp>/src> and
<verbatim|<em|myapp>/bin> directories for your plug-in and it suffices to
configure the plug-in by putting something like the following in
<verbatim|<em|myapp>/progs/init-<em|myapp>.scm>:
<\scheme-fragment>
(plugin-configure <em|myapp>
\ \ (:require (url-exists-in-path? "<em|myapp>"))
\ \ (:launch "<em|myapp> --texmacs")
\ \ (:session "<em|Myapp>"))
</scheme-fragment>
In the case when you do not have the possibility to modify the source
code of <verbatim|<em|myapp>>, you typically have to write an
input/output filter <verbatim|tm_<em|myapp>> for performing the
appropriate rewritings. By looking at the standard plug-ins distributed
with <TeXmacs> in
<\verbatim>
\ \ \ \ $TEXMACS_PATH/plugins
</verbatim>
you can find several examples of how this can be done.
</remark>
<tmdoc-copyright|1998--2002|Joris van der Hoeven>
<tmdoc-license|Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.1
or any later version published by the Free Software Foundation; with no
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
Texts. A copy of the license is included in the section entitled "GNU Free
Documentation License".>
</body>
<\initial>
<\collection>
<associate|language|english>
<associate|page-bot|30mm>
<associate|page-even|30mm>
<associate|page-odd|30mm>
<associate|page-reduce-bot|15mm>
<associate|page-reduce-left|25mm>
<associate|page-reduce-right|25mm>
<associate|page-reduce-top|15mm>
<associate|page-right|30mm>
<associate|page-top|30mm>
<associate|page-type|a4>
<associate|par-width|150mm>
<associate|sfactor|4>
</collection>
</initial>