/*********************************************************** Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, Massachusetts. All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the names of Digital or MIT not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ /* $Header: main.c,v 1.105 87/06/22 20:48:15 toddb Exp $ */ #include "X.h" #include "Xproto.h" #include "input.h" #include "scrnintstr.h" #include "misc.h" #include "os.h" #include "osstruct.h" #include "windowstr.h" #include "resource.h" #include "dixstruct.h" #include "gcstruct.h" #include "extension.h" #include "colormap.h" #include "cursorstr.h" #include "opaque.h" #include "vendor.h" extern char *display; char *ConnectionInfo; char *SwappedConnInfo; xConnSetupPrefix connSetupPrefix; extern WindowRec WindowTable[]; extern xColorItem screenWhite, screenBlack; extern FontPtr defaultFont; extern void SetInputCheck(); extern void InitExtensions(); PaddingInfo PixmapWidthPaddingInfo[32]; unsigned char *minfree; static int restart = 0; NotImplemented() { FatalError("Not implemented"); } /* * This array encodes the answer to the question "what is the log base 2 * of the number of pixels that fit in a scanline pad unit?" * Note that ~0 is an invalid entry (mostly for the benefit of the reader). */ static int answer[6][3] = { /* pad pad pad */ /* 8 16 32 */ { 3, 4, 5 }, /* 1 bit per pixel */ { 1, 2, 4 }, /* 4 bits per pixel */ { 0, 1, 2 }, /* 8 bits per pixel */ { ~0, 0, 1 }, /* 16 bits per pixel */ { ~0, ~0, 0 }, /* 24 bits per pixel */ { ~0, ~0, 0 } /* 32 bits per pixel */ }; /* * This array gives the answer to the question "what is the first index for * the answer array above given the number of bits per pixel?" * Note that ~0 is an invalid entry (mostly for the benefit of the reader). */ static int indexForBitsPerPixel[ 33 ] = { ~0, 0, ~0, ~0, /* 1 bit per pixel */ 1, ~0, ~0, ~0, /* 4 bits per pixel */ 2, ~0, ~0, ~0, /* 8 bits per pixel */ ~0,~0, ~0, ~0, 3, ~0, ~0, ~0, /* 16 bits per pixel */ ~0,~0, ~0, ~0, 4, ~0, ~0, ~0, /* 24 bits per pixel */ ~0,~0, ~0, ~0, 5 /* 32 bits per pixel */ }; /* * This array gives the answer to the question "what is the second index for * the answer array above given the number of bits per scanline pad unit?" * Note that ~0 is an invalid entry (mostly for the benefit of the reader). */ static int indexForScanlinePad[ 33 ] = { ~0, ~0, ~0, ~0, ~0, ~0, ~0, ~0, 0, ~0, ~0, ~0, /* 8 bits per scanline pad unit */ ~0, ~0, ~0, ~0, 1, ~0, ~0, ~0, /* 16 bits per scanline pad unit */ ~0, ~0, ~0, ~0, ~0, ~0, ~0, ~0, ~0, ~0, ~0, ~0, 2 /* 32 bits per scanline pad unit */ }; main(argc, argv) int argc; char *argv[]; { int i, j, k, looping; long alwaysCheckForInput[2]; /* Notice if we're restart. Probably this is because we jumped through * uninitialized pointer */ #ifdef notdef minfree = (unsigned char *)sbrk(0); /* FOR DEBUG XXX */ #endif if (restart) FatalError("server restarted. Jumped through uninitialized pointer?\n"); else restart = 1; ErrorF( "Hello, this is the X server\n"); display = "0"; ProcessCommandLine(argc, argv); alwaysCheckForInput[0] = 0; alwaysCheckForInput[1] = 1; looping = 0; while(1) { /* Perform any operating system dependent initializations you'd like */ OsInit(); if(!looping) { CreateWellKnownSockets(); InitProcVectors(); serverClient = (ClientPtr)Xalloc(sizeof(ClientRec)); serverClient->index = 0; /* reserved for server */ serverClient->sequence = 0; serverClient->closeDownMode = RetainPermanent; serverClient->clientGone = FALSE; serverClient->lastDrawable = (pointer)NULL; serverClient->lastDrawableID = None; serverClient->lastGC = (pointer)NULL; serverClient->lastGCID = None; serverClient->numSaved = None; serverClient->saveSet = (pointer *)NULL; } InitClientResources(serverClient); /* for root resources */ SetInputCheck(&alwaysCheckForInput[0], &alwaysCheckForInput[1]); screenInfo.arraySize = 0; screenInfo.numScreens = 0; screenInfo.screen = (ScreenPtr)NULL; /* * Just in case the ddx doesnt supply a format for depth 1 (like qvss). */ j = indexForBitsPerPixel[ 1 ]; k = indexForScanlinePad[ BITMAP_SCANLINE_PAD ]; PixmapWidthPaddingInfo[1].scanlinePad = BITMAP_SCANLINE_PAD-1; PixmapWidthPaddingInfo[1].bitmapPadLog2 = answer[j][k]; InitOutput(&screenInfo, argc, argv); if (screenInfo.numScreens < 1) FatalError("no screens found\n"); InitEvents(); InitInput(argc, argv); InitAndStartDevices(argc, argv); InitAtoms(); InitExtensions(); SetDefaultFontPath(defaultFontPath); /* default path has no nulls */ if ( ! SetDefaultFont(defaultTextFont)) ErrorF( "main: Could not open default font '%s'\n", defaultTextFont); if ( ! (rootCursor = CreateRootCursor(defaultCursorFont, 0))) ErrorF( "main: Could not open default cursor font '%s'\n", defaultCursorFont); for (i=0; idefColormap; root.whitePixel = pScreen->whitePixel; root.blackPixel = pScreen->blackPixel; root.currentInputMask = 0; root.pixWidth = pScreen->width; root.pixHeight = pScreen->height; root.mmWidth = pScreen->mmWidth; root.mmHeight = pScreen->mmHeight; root.minInstalledMaps = pScreen->minInstalledCmaps; root.maxInstalledMaps = pScreen->maxInstalledCmaps; root.rootVisualID = pScreen->rootVisual; root.backingStore = pScreen->backingStoreSupport; root.saveUnders = pScreen->saveUnderSupport; root.rootDepth = pScreen->rootDepth; root.nDepths = pScreen->numDepths; bcopy((char *)&root, pBuf, sizeof(xWindowRoot)); sizesofar += sizeof(xWindowRoot); pBuf += sizeof(xWindowRoot); pDepth = pScreen->allowedDepths; for(j = 0; j < pScreen->numDepths; j++, pDepth++) { lenofblock += sizeof(xDepth) + (pDepth->numVids * sizeof(xVisualType)); ConnectionInfo = (char *)Xrealloc(ConnectionInfo, lenofblock); pBuf = ConnectionInfo + sizesofar; depth.depth = pDepth->depth; depth.nVisuals = pDepth->numVids; bcopy((char *)&depth, pBuf, sizeof(xDepth)); pBuf += sizeof(xDepth); sizesofar += sizeof(xDepth); for(k = 0; k < pDepth->numVids; k++) { vid = pDepth->vids[k]; pVisual = (VisualPtr) LookupID(vid, RT_VISUALID, RC_CORE); visual.visualID = pVisual->vid; visual.class = pVisual->class; visual.bitsPerRGB = pVisual->bitsPerRGBValue; visual.colormapEntries = pVisual->ColormapEntries; visual.redMask = pVisual->redMask; visual.greenMask = pVisual->greenMask; visual.blueMask = pVisual->blueMask; bcopy((char *)&visual, pBuf, sizeof(xVisualType)); pBuf += sizeof(xVisualType); sizesofar += sizeof(xVisualType); } } } connSetupPrefix.success = xTrue; connSetupPrefix.length = lenofblock/4; connSetupPrefix.majorVersion = X_PROTOCOL; connSetupPrefix.minorVersion = X_PROTOCOL_REVISION; ErrorF( "Connection Prefix: len == %d\n", connSetupPrefix.length); } /* VARARGS */ FatalError (msg, v0, v1, v2, v3, v4, v5, v6, v7, v8) char *msg; int v0, v1, v2, v3, v4, v5, v6, v7, v8; { char *foo; ErrorF("\nFatal server bug!\n"); ErrorF(msg, v0, v1, v2, v3, v4, v5, v6, v7, v8); ErrorF("\n"); foo = (char *)NULL; *foo = 'A'; } /* grow the array of screenRecs if necessary. call the device-supplied initialization procedure with its screen number, a pointer to its ScreenRec, argc, and argv. return the number of successfully installed screens. */ AddScreen(pfnInit, argc, argv) Bool (* pfnInit)(); int argc; char **argv; { int i = screenInfo.numScreens; int scanlinepad, format, depth, j, k; #ifdef DEBUG void (**jNI) (); #endif /* DEBUG */ if (screenInfo.numScreens == screenInfo.arraySize) { screenInfo.arraySize += 5; screenInfo.screen = (ScreenPtr)Xrealloc( screenInfo.screen, screenInfo.arraySize * sizeof(ScreenRec)); } #ifdef DEBUG for (jNI = &screenInfo.screen[i].QueryBestSize; jNI < (void (**) ()) &screenInfo.screen[i].RegionExtents; jNI++) *jNI = (void (*) ())NotImplemented; #endif /* DEBUG */ /* * This loop gets run once for every Screen that gets added, * but thats ok. If the ddx layer initializes the formats * one at a time calling AddScreen() after each, then each * iteration will make it a little more acurate. Worst case * we do this loop N * numPixmapFormats where N is # of screens. * Anyway, this must be called after InitOutput and before the * screen init routine is called. */ for (format=0; format