]> git.lyx.org Git - lyx.git/blob - src/lyxserver.C
another fix
[lyx.git] / src / lyxserver.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 /**
12   Docu   : To use the lyxserver define the name of the pipe in your
13            lyxrc:
14            \serverpipe "/home/myhome/.lyxpipe"
15            Then use .lyxpipe.in and .lyxpipe.out to communicate to LyX.
16            Each message consists of a single line in ASCII. Input lines
17            (client -> LyX) have the following format:
18             "LYXCMD:<clientname>:<functionname>:<argument>"
19            Answers from LyX look like this:
20            "INFO:<clientname>:<functionname>:<data>"
21  [asierra970531] Or like this in case of error:
22            "ERROR:<clientname>:<functionname>:<error message>"
23            where <clientname> and <functionname> are just echoed.
24            If LyX notifies about a user defined extension key-sequence,
25            the line looks like this:
26            "NOTIFY:<key-sequence>"
27  [asierra970531] New server-only messages to implement a simple protocol
28            "LYXSRV:<clientname>:<protocol message>"
29            where <protocol message> can be "hello" or "bye". If hello is
30            received LyX will inform the client that it's listening its
31            messages, and 'bye' will inform that lyx is closing.
32
33            See development/server_monitor.c for an example client.
34   Purpose: implement a client/server lib for LyX
35 */
36
37 #include <config.h>
38
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #include <unistd.h>
42 #include <fcntl.h>
43 #include <cerrno>
44
45 #ifdef __GNUG__
46 #pragma implementation
47 #endif
48
49 #include "lyxserver.h"
50 #include "lyx_main.h"
51 #include "debug.h"
52 #include "lyxfunc.h"
53 #include "support/lstrings.h"
54 #include "support/lyxlib.h"
55 #include "frontends/lyx_gui.h"
56
57 #ifdef __EMX__
58 #include <cstdlib>
59 #include <io.h>
60 #define OS2EMX_PLAIN_CHAR
61 #define INCL_DOSNMPIPES
62 #define INCL_DOSERRORS
63 #include <os2.h>
64 #include "support/os2_errortable.h"
65 #endif
66
67 using std::endl;
68
69 // provide an empty mkfifo() if we do not have one. This disables the
70 // lyxserver.
71 #ifndef HAVE_MKFIFO
72 int mkfifo(char const * __path, mode_t __mode) {
73         return 0;
74 }
75 #endif
76
77
78 void LyXComm::openConnection()
79 {
80         lyxerr[Debug::LYXSERVER] << "LyXComm: Opening connection" << endl;
81
82         // If we are up, that's an error
83         if (ready) {
84                 lyxerr << "LyXComm: Already connected" << endl;
85                 return;
86         }
87         // We assume that we don't make it
88         ready = false;
89
90         if (pipename.empty()) {
91                 lyxerr[Debug::LYXSERVER]
92                         << "LyXComm: server is disabled, nothing to do"
93                         << endl;
94                 return;
95         }
96
97         if ((infd = startPipe(inPipeName(), false)) == -1)
98                 return;
99
100         if ((outfd = startPipe(outPipeName(), true)) == -1) {
101                 endPipe(infd, inPipeName(), false);
102                 return;
103         }
104
105         if (fcntl(outfd, F_SETFL, O_NONBLOCK) < 0) {
106                 lyxerr << "LyXComm: Could not set flags on pipe " << outPipeName()
107                        << '\n' << strerror(errno) << endl;
108                 return;
109         }
110
111         // We made it!
112         ready = true;
113         lyxerr[Debug::LYXSERVER] << "LyXComm: Connection established" << endl;
114 }
115
116
117 /// Close pipes
118 void LyXComm::closeConnection()
119 {
120         lyxerr[Debug::LYXSERVER] << "LyXComm: Closing connection" << endl;
121
122         if (pipename.empty()) {
123                 lyxerr[Debug::LYXSERVER]
124                         << "LyXComm: server is disabled, nothing to do"
125                         << endl;
126                 return;
127         }
128
129         if (!ready) {
130                 lyxerr << "LyXComm: Already disconnected" << endl;
131                 return;
132         }
133
134         endPipe(infd, inPipeName(), false);
135         endPipe(outfd, outPipeName(), true);
136
137         ready = false;
138 }
139
140 int LyXComm::startPipe(string const & filename, bool write)
141 {
142         int fd;
143
144 #ifdef __EMX__
145         HPIPE os2fd;
146         APIRET rc;
147         int errnum;
148         // Try create one instance of named pipe with the mode O_RDONLY|O_NONBLOCK.
149         // The current emx implementation of access() won't work with pipes.
150         rc = DosCreateNPipe(filename.c_str(), &os2fd, NP_ACCESS_INBOUND,
151                 NP_NOWAIT|0x01, 0600, 0600, 0);
152         if (rc == ERROR_PIPE_BUSY) {
153                 lyxerr << "LyXComm: Pipe " << filename << " already exists.\n"
154                        << "If no other LyX program is active, please delete"
155                         " the pipe by hand and try again." << endl;
156                 pipename.erase();
157                 return -1;
158         }
159
160         if (rc != NO_ERROR) {
161                 errnum = TranslateOS2Error(rc);
162                 lyxerr <<"LyXComm: Could not create pipe " << filename
163                        << strerror(errnum) << endl;
164                 return -1;
165         };
166         // Listen to it.
167         rc = DosConnectNPipe(os2fd);
168         if (rc != NO_ERROR && rc != ERROR_PIPE_NOT_CONNECTED) {
169                 errnum = TranslateOS2Error(rc);
170                 lyxerr <<"LyXComm: Could not create pipe " << filename
171                        << strerror(errnum) << endl;
172                 return -1;
173         };
174         // Imported handles can be used both with OS/2 APIs and emx
175         // library functions.
176         fd = _imphandle(os2fd);
177 #else
178         if (::access(filename.c_str(), F_OK) == 0) {
179                 lyxerr << "LyXComm: Pipe " << filename << " already exists.\n"
180                        << "If no other LyX program is active, please delete"
181                         " the pipe by hand and try again." << endl;
182                 pipename.erase();
183                 return -1;
184         }
185
186         if (::mkfifo(filename.c_str(), 0600) < 0) {
187                 lyxerr << "LyXComm: Could not create pipe " << filename << '\n'
188                        << strerror(errno) << endl;
189                 return -1;
190         };
191         fd = ::open(filename.c_str(), write ? (O_RDWR) : (O_RDONLY|O_NONBLOCK));
192 #endif
193
194         if (fd < 0) {
195                 lyxerr << "LyXComm: Could not open pipe " << filename << '\n'
196                        << strerror(errno) << endl;
197                 lyx::unlink(filename);
198                 return -1;
199         }
200
201         if (!write) {
202                 lyx_gui::set_read_callback(fd, this);
203         }
204
205         return fd;
206 }
207
208
209 void LyXComm::endPipe(int & fd, string const & filename, bool write)
210 {
211         if (fd < 0)
212                 return;
213
214         if (!write) {
215                 lyx_gui::remove_read_callback(fd);
216         }
217  
218 #ifdef __EMX__
219         APIRET rc;
220         int errnum;
221
222         rc = DosDisConnectNPipe(fd);
223         if (rc != NO_ERROR) {
224                 errnum = TranslateOS2Error(rc);
225                 lyxerr << "LyXComm: Could not disconnect pipe " << filename
226                        << '\n' << strerror(errnum) << endl;
227                 return;
228         }
229 #endif
230
231         if (::close(fd) < 0) {
232                 lyxerr << "LyXComm: Could not close pipe " << filename
233                        << '\n' << strerror(errno) << endl;
234         }
235
236 // OS/2 pipes are deleted automatically
237 #ifndef __EMX__
238         if (lyx::unlink(filename) < 0) {
239                 lyxerr << "LyXComm: Could not remove pipe " << filename
240                        << '\n' << strerror(errno) << endl;
241         };
242 #endif
243
244         fd = -1;
245 }
246
247
248 void LyXComm::emergencyCleanup()
249 {
250         if (!pipename.empty()) {
251                 endPipe(infd, inPipeName(), false);
252                 endPipe(outfd, outPipeName(), true);
253         }
254 }
255
256
257 // Receives messages and sends then to client
258 void LyXComm::read_ready()
259 {
260         if (lyxerr.debugging(Debug::LYXSERVER)) {
261                 lyxerr << "LyXComm: Receiving from fd " << infd << endl;
262         }
263
264         int const CMDBUFLEN = 100;
265         char charbuf[CMDBUFLEN];
266         string cmd;
267 // nb! make lsbuf a class-member for multiple sessions
268         static string lsbuf;
269
270         errno = 0;
271         int status;
272         // the single = is intended here.
273         while ((status = read(infd, charbuf, CMDBUFLEN - 1))) {
274                 int rerrno = errno;
275  
276                 if (status > 0) {
277                         charbuf[status]= '\0'; // turn it into a c string
278                         lsbuf += rtrim(charbuf, "\r");
279                         // commit any commands read
280                         while (lsbuf.find('\n') != string::npos) {
281                                 // split() grabs the entire string if
282                                 // the delim /wasn't/ found. ?:-P
283                                 lsbuf= split(lsbuf, cmd,'\n');
284                                 lyxerr[Debug::LYXSERVER]
285                                         << "LyXComm: status:" << status
286                                         << ", lsbuf:" << lsbuf
287                                         << ", cmd:" << cmd << endl;
288                                 if (!cmd.empty())
289                                         clientcb(client, cmd);
290                                         //\n or not \n?
291                         }
292                 }
293                 if (rerrno == EAGAIN) {
294                         errno = 0;
295                         return;
296                 }
297                 if (rerrno != 0) {
298                         lyxerr << "LyXComm: " << strerror(rerrno) << endl;
299                         if (!lsbuf.empty()) {
300                                 lyxerr << "LyXComm: truncated command: "
301                                        << lsbuf << endl;
302                                 lsbuf.erase();
303                         }
304                         break; // reset connection
305                 }
306         }
307         closeConnection();
308         openConnection();
309         errno= 0;
310 }
311
312
313 void LyXComm::send(string const & msg)
314 {
315         if (msg.empty()) {
316                 lyxerr << "LyXComm: Request to send empty string. Ignoring."
317                        << endl;
318                 return;
319         }
320
321         if (lyxerr.debugging(Debug::LYXSERVER)) {
322                 lyxerr << "LyXComm: Sending '" << msg << '\'' << endl;
323         }
324
325         if (pipename.empty()) return;
326
327         if (!ready) {
328                 lyxerr << "LyXComm: Pipes are closed. Could not send "
329                        << msg << endl;
330         } else if (::write(outfd, msg.c_str(), msg.length()) < 0) {
331                 lyxerr << "LyXComm: Error sending message: " << msg
332                        << '\n' << strerror(errno)
333                        << "\nLyXComm: Resetting connection" << endl;
334                 closeConnection();
335                 openConnection();
336         }
337 #ifdef __EMX__
338         APIRET rc;
339         int errnum;
340         rc = DosResetBuffer(outfd);     // To avoid synchronization problems.
341         if (rc != NO_ERROR) {
342                 errnum = TranslateOS2Error(rc);
343                 lyxerr << "LyXComm: Message could not be flushed: " << msg
344                        << '\n' << strerror(errnum) << endl;
345         }
346 #endif
347 }
348
349
350 // LyXServer class
351
352 LyXServer::~LyXServer()
353 {
354         // say goodbye to clients so they stop sending messages
355         // modified june 1999 by stefano@zool.su.se to send as many bye
356         // messages as there are clients, each with client's name.
357         string message;
358         for (int i= 0; i<numclients; ++i) {
359                 message = "LYXSRV:" + clients[i] + ":bye\n";
360                 pipes.send(message);
361         }
362 }
363
364
365 /* ---F+------------------------------------------------------------------ *\
366    Function  : ServerCallback
367     Called by : LyXComm
368     Purpose   : handle data gotten from communication
369 \* ---F------------------------------------------------------------------- */
370
371 void LyXServer::callback(LyXServer * serv, string const & msg)
372 {
373         lyxerr[Debug::LYXSERVER] << "LyXServer: Received: '"
374                                  << msg << '\'' << endl;
375
376         char const * p = msg.c_str();
377
378         // --- parse the string --------------------------------------------
379         //
380         //  Format: LYXCMD:<client>:<func>:<argstring>\n
381         //
382         bool server_only = false;
383         while (*p) {
384                 // --- 1. check 'header' ---
385
386                 if (compare(p, "LYXSRV:", 7) == 0) {
387                         server_only = true;
388                 } else if (0 != compare(p, "LYXCMD:", 7)) {
389                         lyxerr << "LyXServer: Unknown request \"" << p << "\"" << endl;
390                         return;
391                 }
392                 p += 7;
393
394                 // --- 2. for the moment ignore the client name ---
395                 string client;
396                 while (*p && *p != ':')
397                         client += char(*p++);
398                 if (*p == ':') ++p;
399                 if (!*p) return;
400
401                 // --- 3. get function name ---
402                 string cmd;
403                 while (*p && *p != ':')
404                         cmd += char(*p++);
405
406                 // --- 4. parse the argument ---
407                 string arg;
408                 if (!server_only && *p == ':' && *(++p)) {
409                         while (*p && *p != '\n')
410                                 arg += char(*p++);
411                         if (*p) ++p;
412                 }
413
414                 lyxerr[Debug::LYXSERVER]
415                         << "LyXServer: Client: '" << client
416                         << "' Command: '" << cmd
417                         << "' Argument: '" << arg << '\'' << endl;
418
419                 // --- lookup and exec the command ------------------
420
421                 if (server_only) {
422                         string buf;
423                         // return the greeting to inform the client that
424                         // we are listening.
425                         if (cmd == "hello") {
426                                 // One more client
427                                 if (serv->numclients == MAX_CLIENTS) { //paranoid check
428                                         lyxerr[Debug::LYXSERVER]
429                                                 << "LyXServer: too many clients..."
430                                                 << endl;
431                                         return;
432                                 }
433                                 int i= 0; //find place in clients[]
434                                 while (!serv->clients[i].empty()
435                                        && i<serv->numclients)
436                                         ++i;
437                                 serv->clients[i] = client;
438                                 serv->numclients++;
439                                 buf = "LYXSRV:" + client + ":hello\n";
440                                 lyxerr[Debug::LYXSERVER]
441                                         << "LyXServer: Greeting "
442                                         << client << endl;
443                                 serv->pipes.send(buf);
444                         } else if (cmd == "bye") {
445                                 // If clients == 0 maybe we should reset the pipes
446                                 // to prevent fake callbacks
447                                 int i = 0; //look if client is registered
448                                 for (; i < serv->numclients; ++i) {
449                                         if (serv->clients[i] == client) break;
450                                 }
451                                 if (i < serv->numclients) {
452                                         serv->numclients--;
453                                         serv->clients[i].erase();
454                                         lyxerr[Debug::LYXSERVER]
455                                                 << "LyXServer: Client "
456                                                 << client << " said goodbye"
457                                                 << endl;
458                                 } else {
459                                         lyxerr[Debug::LYXSERVER]
460                                                 << "LyXServer: ignoring bye messge from unregistered client"
461                                                 << client << endl;
462                                 }
463                         } else {
464                                 lyxerr <<"LyXServer: Undefined server command "
465                                        << cmd << "." << endl;
466                         }
467                         return;
468                 }
469
470                 if (!cmd.empty()) {
471                         // which lyxfunc should we let it connect to?
472                         // The correct solution would be to have a
473                         // specialized (non-gui) BufferView. But how do
474                         // we do it now? Probably we should just let it
475                         // connect to the lyxfunc in the single LyXView we
476                         // support currently. (Lgb)
477
478
479                         serv->func->dispatch(cmd + ' ' + arg);
480                         string const rval = serv->func->getMessage();
481
482                         //modified june 1999 stefano@zool.su.se:
483                         //all commands produce an INFO or ERROR message
484                         //in the output pipe, even if they do not return
485                         //anything. See chapter 4 of Customization doc.
486                         string buf;
487                         if (serv->func->errorStat())
488                                 buf = "ERROR:";
489                         else
490                                 buf = "INFO:";
491                         buf += client + ":" + cmd + ":" +  rval + "\n";
492                         serv->pipes.send(buf);
493
494                         // !!! we don't do any error checking -
495                         //  if the client won't listen, the
496                         //  message is lost and others too
497                         //  maybe; so the client should empty
498                         //  the outpipe before issuing a request.
499
500                         // not found
501                 }
502         }  /* while *p */
503 }
504
505
506 /* ---F+------------------------------------------------------------------ *\
507    Function  : LyXNotifyClient
508    Called by : WorkAreaKeyPress
509    Purpose   : send a notify messge to a client
510    Parameters: s - string to send
511    Returns   : nothing
512    \* ---F------------------------------------------------------------------- */
513
514 void LyXServer::notifyClient(string const & s)
515 {
516         string buf = string("NOTIFY:") + s + "\n";
517         pipes.send(buf);
518 }