server.c

来自「nedit 是一款linux下的开发源码的功能强大的编辑器」· C语言 代码 · 共 417 行

C
417
字号
static const char CVSID[] = "$Id: server.c,v 1.21.2.3 2003/11/20 18:37:13 edg 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.							               ** 									       ** 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 <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>#ifdef HAVE_DEBUG_H#include "../debug.h"#endifstatic void processServerCommand(void);static void cleanUpServerCommunication(void);static void processServerCommandString(char *string);static void getFileClosedProperty(WindowInfo *window);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);    /* 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);        /* Pay attention to PropertyChangeNotify events on the root window */    XSelectInput(TheDisplay, rootWindow, PropertyChangeMask);}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 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;    int fileLen, doLen, lmLen, geomLen, charsRead, itemsRead;    WindowInfo *window;        /*    ** 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%n", &lineNum,		&readFlag, &createFlag, &iconicFlag, &fileLen, &doLen,		&lmLen, &geomLen, &charsRead);	if (itemsRead != 8)    	    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)    	    	    break;    	    if (*doCommand == '\0') {                if (window == NULL) {    		    EditNewFile(NULL, iconicFlag, lmLen==0?NULL:langMode, NULL);    	        } else {	            if (!iconicFlag) {    		        XMapRaised(TheDisplay, XtWindow(window->shell));		    }	        }            } 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) {			XMapRaised(TheDisplay, XtWindow(win->shell));		    }		    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);	   return;	}    	window = FindWindowWithFile(filename, pathname);    	if (window == NULL)	    window = EditExistingFile(WindowList, filename, pathname,		    editFlags, geometry, iconicFlag, lmLen==0?NULL:langMode);		/* 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 (!iconicFlag)	    	XMapRaised(TheDisplay, XtWindow(window->shell));	    if (lineNum > 0)		SelectNumberedLine(window, lineNum);	    if (*doCommand != '\0') {		/* 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");		}	    }	} else {            deleteFileOpenProperty2(filename, pathname);            deleteFileClosedProperty2(filename, pathname);        }                }    CheckCloseDim();    return;readError:    fprintf(stderr, "NEdit: error processing server request\n");    return;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?