1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
|
static const char CVSID[] = "$Id: server.c,v 1.31 2004/07/21 11:32:05 yooden Exp $";
/*******************************************************************************
* *
* server.c -- Nirvana Editor edit-server component *
* *
* Copyright (C) 1999 Mark Edel *
* *
* This is free software; you can redistribute it and/or modify it under the *
* terms of the GNU General Public License as published by the Free Software *
* Foundation; either version 2 of the License, or (at your option) any later *
* version. In addition, you may distribute version of this program linked to *
* Motif or Open Motif. See README for details. *
* *
* This software is distributed in the hope that it will be useful, but WITHOUT *
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
* for more details. *
* *
* You should have received a copy of the GNU General Public License along with *
* software; if not, write to the Free Software Foundation, Inc., 59 Temple *
* Place, Suite 330, Boston, MA 02111-1307 USA *
* *
* Nirvana Text Editor *
* November, 1995 *
* *
* Written by Mark Edel *
* *
*******************************************************************************/
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif
#include "server.h"
#include "textBuf.h"
#include "nedit.h"
#include "window.h"
#include "file.h"
#include "selection.h"
#include "macro.h"
#include "menu.h"
#include "preferences.h"
#include "server_common.h"
#include "../util/fileUtils.h"
#include "../util/utils.h"
#include "../util/misc.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#ifdef VMS
#include <lib$routines.h>
#include ssdef
#include syidef
#include "../util/VMSparam.h"
#include "../util/VMSutils.h"
#else
#include <sys/types.h>
#include <sys/utsname.h>
#ifndef __MVS__
#include <sys/param.h>
#endif
#include <unistd.h>
#include <pwd.h>
#endif
#include <Xm/Xm.h>
#include <Xm/XmP.h>
#ifdef HAVE_DEBUG_H
#include "../debug.h"
#endif
static void processServerCommand(void);
static void cleanUpServerCommunication(void);
static void processServerCommandString(char *string);
static void getFileClosedProperty(WindowInfo *window);
static int isLocatedOnDesktop(WindowInfo *window, long currentDesktop);
static WindowInfo *findWindowOnDesktop(int tabbed, long currentDesktop);
static Atom ServerRequestAtom = 0;
static Atom ServerExistsAtom = 0;
/*
** Set up inter-client communication for NEdit server end, expected to be
** called only once at startup time
*/
void InitServerCommunication(void)
{
Window rootWindow = RootWindow(TheDisplay, DefaultScreen(TheDisplay));
/* Create the server property atoms on the current DISPLAY. */
CreateServerPropertyAtoms(GetPrefServerName(),
&ServerExistsAtom,
&ServerRequestAtom);
/* Pay attention to PropertyChangeNotify events on the root window.
Do this before putting up the server atoms, to avoid a race
condition (when nc sees that the server exists, it sends a command,
so we must make sure that we already monitor properties). */
XSelectInput(TheDisplay, rootWindow, PropertyChangeMask);
/* Create the server-exists property on the root window to tell clients
whether to try a request (otherwise clients would always have to
try and wait for their timeouts to expire) */
XChangeProperty(TheDisplay, rootWindow, ServerExistsAtom, XA_STRING, 8,
PropModeReplace, (unsigned char *)"True", 4);
/* Set up exit handler for cleaning up server-exists property */
atexit(cleanUpServerCommunication);
}
static void deleteProperty(Atom* atom)
{
if (!IsServer) {
*atom = None;
return;
}
if (*atom != None) {
XDeleteProperty(TheDisplay,
RootWindow(TheDisplay, DefaultScreen(TheDisplay)),
*atom);
*atom = None;
}
}
/*
** Exit handler. Removes server-exists property on root window
*/
static void cleanUpServerCommunication(void)
{
WindowInfo *w;
/* Delete any per-file properties that still exist
* (and that server knows about)
*/
for (w = WindowList; w; w = w->next) {
DeleteFileClosedProperty(w);
}
/* Delete any per-file properties that still exist
* (but that that server doesn't know about)
*/
DeleteServerFileAtoms(GetPrefServerName(),
RootWindow(TheDisplay, DefaultScreen(TheDisplay)));
/* Delete the server-exists property from the root window (if it was
assigned) and don't let the process exit until the X server has
processed the delete request (otherwise it won't be done) */
deleteProperty(&ServerExistsAtom);
XSync(TheDisplay, False);
}
/*
** Special event loop for NEdit servers. Processes PropertyNotify events on
** the root window (this would not be necessary if it were possible to
** register an Xt event-handler for a window, rather than only a widget).
** Invokes server routines when a server-request property appears,
** re-establishes server-exists property when another server exits and
** this server is still alive to take over.
*/
void ServerMainLoop(XtAppContext context)
{
while (TRUE) {
XEvent event;
XtAppNextEvent(context, &event);
ServerDispatchEvent(&event);
}
}
static void processServerCommand(void)
{
Atom dummyAtom;
unsigned long nItems, dummyULong;
unsigned char *propValue;
int getFmt;
/* Get the value of the property, and delete it from the root window */
if (XGetWindowProperty(TheDisplay, RootWindow(TheDisplay,
DefaultScreen(TheDisplay)), ServerRequestAtom, 0, INT_MAX, True,
XA_STRING, &dummyAtom, &getFmt, &nItems, &dummyULong, &propValue)
!= Success || getFmt != 8)
return;
/* Invoke the command line processor on the string to process the request */
processServerCommandString((char *)propValue);
XFree(propValue);
}
Boolean ServerDispatchEvent(XEvent *event)
{
if (IsServer) {
Window rootWindow = RootWindow(TheDisplay, DefaultScreen(TheDisplay));
if (event->xany.window == rootWindow && event->xany.type == PropertyNotify) {
const XPropertyEvent* e = &event->xproperty;
if (e->type == PropertyNotify && e->window == rootWindow) {
if (e->atom == ServerRequestAtom && e->state == PropertyNewValue)
processServerCommand();
else if (e->atom == ServerExistsAtom && e->state == PropertyDelete)
XChangeProperty(TheDisplay,
rootWindow,
ServerExistsAtom, XA_STRING,
8, PropModeReplace,
(unsigned char *)"True", 4);
}
}
}
return XtDispatchEvent(event);
}
/* Try to find existing 'FileOpen' property atom for path. */
static Atom findFileOpenProperty(const char* filename,
const char* pathname) {
char path[MAXPATHLEN];
Atom atom;
if (!IsServer) return(None);
strcpy(path, pathname);
strcat(path, filename);
atom = CreateServerFileOpenAtom(GetPrefServerName(), path);
return(atom);
}
/* Destroy the 'FileOpen' atom to inform nc that this file has
** been opened.
*/
static void deleteFileOpenProperty(WindowInfo *window)
{
if (window->filenameSet) {
Atom atom = findFileOpenProperty(window->filename, window->path);
deleteProperty(&atom);
}
}
static void deleteFileOpenProperty2(const char* filename,
const char* pathname)
{
Atom atom = findFileOpenProperty(filename, pathname);
deleteProperty(&atom);
}
/* Try to find existing 'FileClosed' property atom for path. */
static Atom findFileClosedProperty(const char* filename,
const char* pathname)
{
char path[MAXPATHLEN];
Atom atom;
if (!IsServer) return(None);
strcpy(path, pathname);
strcat(path, filename);
atom = CreateServerFileClosedAtom(GetPrefServerName(),
path,
True); /* don't create */
return(atom);
}
/* Get hold of the property to use when closing the file. */
static void getFileClosedProperty(WindowInfo *window)
{
if (window->filenameSet) {
window->fileClosedAtom = findFileClosedProperty(window->filename,
window->path);
}
}
/* Delete the 'FileClosed' atom to inform nc that this file has
** been closed.
*/
void DeleteFileClosedProperty(WindowInfo *window)
{
if (window->filenameSet) {
deleteProperty(&window->fileClosedAtom);
}
}
static void deleteFileClosedProperty2(const char* filename,
const char* pathname)
{
Atom atom = findFileClosedProperty(filename, pathname);
deleteProperty(&atom);
}
static int isLocatedOnDesktop(WindowInfo *window, long currentDesktop)
{
long windowDesktop;
if (currentDesktop == -1)
return True; /* No desktop information available */
windowDesktop = QueryDesktop(TheDisplay, window->shell);
/* Sticky windows have desktop 0xFFFFFFFF by convention */
if (windowDesktop == currentDesktop || windowDesktop == 0xFFFFFFFFL)
return True; /* Desktop matches, or window is sticky */
return False;
}
static WindowInfo *findWindowOnDesktop(int tabbed, long currentDesktop)
{
WindowInfo *window;
if (currentDesktop == -1) /* No desktop information available */
return WindowList;
if (tabbed == 0 || (tabbed == -1 && GetPrefOpenInTab() == 0)) {
/* A new window is requested, unless we find an untitled unmodified
document on the current desktop */
for (window=WindowList; window!=NULL; window=window->next) {
if (window->filenameSet || window->fileChanged ||
window->macroCmdData != NULL)
continue;
/* No check for top document here! */
if (isLocatedOnDesktop(window, currentDesktop))
return window;
}
}
else {
/* Find a window on the current desktop to hold the new document */
for (window=WindowList; window!=NULL; window=window->next) {
/* Avoid unnecessary property access (server round-trip) */
if (!IsTopDocument(window))
continue;
if (isLocatedOnDesktop(window, currentDesktop))
return window;
}
}
return NULL; /* No window found on current desktop -> create new window */
}
static void processServerCommandString(char *string)
{
char *fullname, filename[MAXPATHLEN], pathname[MAXPATHLEN];
char *doCommand, *geometry, *langMode, *inPtr;
int editFlags, stringLen = strlen(string);
int lineNum, createFlag, readFlag, iconicFlag, lastIconic = 0, tabbed;
int fileLen, doLen, lmLen, geomLen, charsRead, itemsRead;
WindowInfo *window, *lastFile = NULL;
long currentDesktop = QueryCurrentDesktop(TheDisplay,
RootWindow(TheDisplay, DefaultScreen(TheDisplay)));
/* If the command string is empty, put up an empty, Untitled window
(or just pop one up if it already exists) */
if (string[0] == '\0') {
for (window=WindowList; window!=NULL; window=window->next)
if (!window->filenameSet && !window->fileChanged &&
isLocatedOnDesktop(window, currentDesktop))
break;
if (window == NULL) {
EditNewFile(findWindowOnDesktop(tabbed, currentDesktop), NULL,
False, NULL, NULL);
CheckCloseDim();
}
else {
RaiseDocument(window);
XMapRaised(TheDisplay, XtWindow(window->shell));
}
return;
}
/*
** Loop over all of the files in the command list
*/
inPtr = string;
while (TRUE) {
if (*inPtr == '\0')
break;
/* Read a server command from the input string. Header contains:
linenum createFlag fileLen doLen\n, followed by a filename and -do
command both followed by newlines. This bit of code reads the
header, and converts the newlines following the filename and do
command to nulls to terminate the filename and doCommand strings */
itemsRead = sscanf(inPtr, "%d %d %d %d %d %d %d %d %d%n", &lineNum,
&readFlag, &createFlag, &iconicFlag, &tabbed, &fileLen,
&doLen, &lmLen, &geomLen, &charsRead);
if (itemsRead != 9)
goto readError;
inPtr += charsRead + 1;
if (inPtr - string + fileLen > stringLen)
goto readError;
fullname = inPtr;
inPtr += fileLen;
*inPtr++ = '\0';
if (inPtr - string + doLen > stringLen)
goto readError;
doCommand = inPtr;
inPtr += doLen;
*inPtr++ = '\0';
if (inPtr - string + lmLen > stringLen)
goto readError;
langMode = inPtr;
inPtr += lmLen;
*inPtr++ = '\0';
if (inPtr - string + geomLen > stringLen)
goto readError;
geometry = inPtr;
inPtr += geomLen;
*inPtr++ = '\0';
/* An empty file name means:
* put up an empty, Untitled window, or use an existing one
* choose a random window for executing the -do macro upon
*/
if (fileLen <= 0) {
for (window=WindowList; window!=NULL; window=window->next)
if (!window->filenameSet && !window->fileChanged &&
isLocatedOnDesktop(window, currentDesktop))
break;
if (*doCommand == '\0') {
if (window == NULL) {
EditNewFile(findWindowOnDesktop(tabbed, currentDesktop),
NULL, iconicFlag, lmLen==0?NULL:langMode, NULL);
} else {
if (iconicFlag)
RaiseDocument(window);
else
RaiseDocumentWindow(window);
}
} else {
WindowInfo *win = WindowList;
/* Starting a new command while another one is still running
in the same window is not possible (crashes). */
while (win != NULL && win->macroCmdData != NULL) {
win = win->next;
}
if (!win) {
XBell(TheDisplay, 0);
} else {
/* Raise before -do (macro could close window). */
if (iconicFlag)
RaiseDocument(win);
else
RaiseDocumentWindow(win);
DoMacro(win, doCommand, "-do macro");
}
}
CheckCloseDim();
return;
}
/* Process the filename by looking for the files in an
existing window, or opening if they don't exist */
editFlags = (readFlag ? PREF_READ_ONLY : 0) | CREATE |
(createFlag ? SUPPRESS_CREATE_WARN : 0);
if (ParseFilename(fullname, filename, pathname) != 0) {
fprintf(stderr, "NEdit: invalid file name\n");
deleteFileClosedProperty2(filename, pathname);
break;
}
window = FindWindowWithFile(filename, pathname);
if (window == NULL) {
/* Files are opened in background to improve opening speed
by defering certain time consuiming task such as syntax
highlighting. At the end of the file-opening loop, the
last file opened will be raised to restore those deferred
items. The current file may also be raised if there're
macros to execute on. */
window = EditExistingFile(findWindowOnDesktop(tabbed, currentDesktop),
filename, pathname, editFlags, geometry, iconicFlag,
lmLen == 0 ? NULL : langMode,
tabbed == -1? GetPrefOpenInTab() : tabbed, True);
if (window) {
CleanUpTabBarExposeQueue(window);
if (lastFile && window->shell != lastFile->shell) {
CleanUpTabBarExposeQueue(lastFile);
RaiseDocument(lastFile);
}
}
}
/* Do the actions requested (note DoMacro is last, since the do
command can do anything, including closing the window!) */
if (window != NULL) {
deleteFileOpenProperty(window);
getFileClosedProperty(window);
if (lineNum > 0)
SelectNumberedLine(window, lineNum);
if (*doCommand != '\0') {
RaiseDocument(window);
if (!iconicFlag)
XMapRaised(TheDisplay, XtWindow(window->shell));
/* Starting a new command while another one is still running
in the same window is not possible (crashes). */
if (window->macroCmdData != NULL) {
XBell(TheDisplay, 0);
} else {
DoMacro(window, doCommand, "-do macro");
/* in case window is closed by macro functions
such as close() or detach_document() */
if (!IsValidWindow(window))
window = NULL;
if (lastFile && !IsValidWindow(lastFile))
lastFile = NULL;
}
}
/* register the last file opened for later use */
if (window) {
lastFile = window;
lastIconic = iconicFlag;
}
} else {
deleteFileOpenProperty2(filename, pathname);
deleteFileClosedProperty2(filename, pathname);
}
}
/* Raise the last file opened */
if (lastFile) {
CleanUpTabBarExposeQueue(lastFile);
if (lastIconic)
RaiseDocument(lastFile);
else
RaiseDocumentWindow(lastFile);
CheckCloseDim();
}
return;
readError:
fprintf(stderr, "NEdit: error processing server request\n");
return;
}
|