Edit

kc3-lang/libxkbcommon/src/text.c

Branch :

  • Show log

    Commit

  • Author : Dan Nicholson
    Date : 2009-04-08 07:46:25
    Hash : 6a84a34d
    Message : Remove all non-public API from XKBcommon.h header The noble intention was to expose all the new API and new generic types in the split out kbproto headers through XKBcommon.h. It turns out that would be a massive amount of work in the server. Someday, but first just wedging in XkbCompileKeymap* would be good. Most of the API is in new internal xkb*.h headers. In order to allow the XKBcommon.h header to be used from the server, we can't pull in other headers from kbproto since the server has its own copies. However, types that are different (XkbDescRec, XkbAction) still have Xkbc equivalents here, and I think they should be used in the server.

  • src/text.c
  • /************************************************************
     Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
    
     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 name of Silicon Graphics not be
     used in advertising or publicity pertaining to distribution
     of the software without specific prior written permission.
     Silicon Graphics makes no representation about the suitability
     of this software for any purpose. It is provided "as is"
     without any express or implied warranty.
    
     SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
     SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
     AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
     GRAPHICS 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.
    
     ********************************************************/
    
    #ifdef HAVE_CONFIG_H
    #include <config.h>
    #endif
    #include "xkbmisc.h"
    #include "X11/extensions/XKBcommon.h"
    #include "XKBcommonint.h"
    #include <X11/extensions/XKM.h>
    #include <stdio.h>
    #include <string.h>
    #include <ctype.h>
    
    #define BUFFER_SIZE 512
    static char textBuffer[BUFFER_SIZE];
    static int tbNext = 0;
    
    static char *
    tbGetBuffer(unsigned size)
    {
        char *rtrn;
    
        if (size >= BUFFER_SIZE)
            return NULL;
    
        if ((BUFFER_SIZE - tbNext) <= size)
            tbNext = 0;
    
        rtrn = &textBuffer[tbNext];
        tbNext += size;
    
        return rtrn;
    }
    
    static char *
    XkbStringText(char *str)
    {
        char *buf, *in, *out;
        int len;
        Bool ok;
    
        if (!str) {
            buf = tbGetBuffer(2);
            buf[0] = '\0';
            return buf;
        }
    
        /* Find if there are any non-printable characters */
        for (ok = True, len = 0, in = str; *in != '\0'; in++, len++) {
            if (isprint(*in))
                continue;
    
            ok = False;
            switch (*in) {
            case '\n': case '\t': case '\v':
            case '\b': case '\r': case '\f':
                len++;
                break;
            default:
                /* octal: \0ooo */
                len += 4;
                break;
            }
        }
    
        if (ok)
            return str;
    
        /* Cleanup non-printable characters */
        buf = tbGetBuffer(len + 1);
        for (in = str, out = buf; *in != '\0'; in++) {
            if (isprint(*in)) {
                *out++ = *in;
                continue;
            }
    
            *out++ = '\\';
            switch (*in) {
            case '\n':
                *out++ = 'n';
                break;
            case '\t':
                *out++ = 't';
                break;
            case '\v':
                *out++ = 'v';
                break;
            case '\b':
                *out++ = 'b';
                break;
            case '\r':
                *out++ = 'r';
                break;
            case '\f':
                *out++ = 'f';
                break;
            default:
                *out++ = '0';
                snprintf(out, 3, "%o", *in);
                while (*out != '\0')
                    out++;
            }
        }
    
        *out++ = '\0';
        return buf;
    }
    
    char *
    XkbcAtomText(Atom atm)
    {
        char *tmp, *rtrn;
        int len;
    
        tmp = XkbcAtomGetString(atm);
    
        if (!tmp)
            return "";
    
        len = strlen(tmp) + 1;
        if (len >= BUFFER_SIZE)
            len = BUFFER_SIZE - 2;
    
        rtrn = tbGetBuffer(len);
        strncpy(rtrn, tmp, len);
        rtrn[len] = '\0';
    
        _XkbFree(tmp);
    
        return XkbStringText(rtrn);
    }
    
    char *
    XkbcVModIndexText(XkbcDescPtr xkb, unsigned ndx)
    {
        int len;
        Atom *vmodNames;
        char *rtrn, *tmp = NULL;
    
        if (xkb && xkb->names)
            vmodNames = xkb->names->vmods;
        else
            vmodNames = NULL;
    
        if (ndx >= XkbNumVirtualMods)
             tmp = strdup("illegal");
        else if (vmodNames && (vmodNames[ndx] != None))
             tmp = XkbcAtomGetString(vmodNames[ndx]);
    
        if (!tmp) {
            tmp = _XkbAlloc(20 * sizeof(char));
            snprintf(tmp, 20, "%d", ndx);
        }
    
        len = strlen(tmp) + 1;
        if (len >= BUFFER_SIZE)
            len = BUFFER_SIZE - 1;
    
        rtrn = tbGetBuffer(len);
        strncpy(rtrn, tmp, len);
    
        _XkbFree(tmp);
    
        return rtrn;
    }
    
    char *
    XkbcVModMaskText(XkbcDescPtr xkb, unsigned modMask, unsigned mask)
    {
        int i, bit, len, rem;
        char *mm = NULL, *rtrn, *str;
        char buf[BUFFER_SIZE];
    
        if ((modMask == 0) && (mask == 0))
            return "none";
    
        if (modMask != 0)
            mm = XkbcModMaskText(modMask, False);
    
        str = buf;
        buf[0]= '\0';
        rem = BUFFER_SIZE;
    
        if (mask) {
            for (i = 0, bit = 1; i < XkbNumVirtualMods && rem > 1; i++, bit <<= 1)
            {
                if (!(mask & bit))
                    continue;
    
                len = snprintf(str, rem, "%s%s",
                               (str != buf) ? "+" : "",
                               XkbcVModIndexText(xkb, i));
                rem -= len;
                str += len;
            }
    
            str = buf;
        }
        else
            str = NULL;
    
        len = ((str) ? strlen(str) : 0) + ((mm) ? strlen(mm) : 0) +
              ((str && mm) ? 1 : 0);
        if (len >= BUFFER_SIZE)
            len = BUFFER_SIZE - 1;
    
        rtrn = tbGetBuffer(len + 1);
        rtrn[0] = '\0';
    
        snprintf(rtrn, len + 1, "%s%s%s", (mm) ? mm : "",
                 (mm && str) ? "+" : "", (str) ? str : "");
    
        return rtrn;
    }
    
    static char *modNames[XkbNumModifiers] = {
        "Shift",
        "Lock",
        "Control",
        "Mod1",
        "Mod2",
        "Mod3",
        "Mod4",
        "Mod5"
    };
    
    char *
    XkbcModIndexText(unsigned ndx)
    {
        char *buf;
    
        if (ndx < XkbNumModifiers)
            return modNames[ndx];
        else if (ndx == XkbNoModifier)
            return "none";
    
        buf = tbGetBuffer(32);
        snprintf(buf, 32, "ILLEGAL_%02x", ndx);
    
        return buf;
    }
    
    char *
    XkbcModMaskText(unsigned mask, Bool cFormat)
    {
        int i, rem, bit;
        char *str, *buf;
    
        if ((mask & 0xff) == 0xff)
            return (cFormat ? "0xff" : "all");
    
        if ((mask & 0xff) == 0)
            return (cFormat ? "0" : "none");
    
        rem = 64;
        buf = tbGetBuffer(rem);
        str = buf;
        buf[0] = '\0';
        for (i = 0, bit = 1; i < XkbNumModifiers && rem > 1; i++, bit <<= 1) {
            int len;
    
            if (!(mask & bit))
                continue;
    
            len = snprintf(str, rem, "%s%s%s",
                           (str != buf) ? (cFormat ? "|" : "+") : "",
                           modNames[i],
                           cFormat ? "Mask" : "");
            rem -= len;
            str += len;
        }
    
        return buf;
    }
    
    char *
    XkbcConfigText(unsigned config)
    {
        switch (config) {
        case XkmSemanticsFile:
            return "Semantics";
        case XkmLayoutFile:
            return "Layout";
        case XkmKeymapFile:
            return "Keymap";
        case XkmGeometryFile:
        case XkmGeometryIndex:
            return "Geometry";
        case XkmTypesIndex:
            return "Types";
        case XkmCompatMapIndex:
            return "CompatMap";
        case XkmSymbolsIndex:
            return "Symbols";
        case XkmIndicatorsIndex:
            return "Indicators";
        case XkmKeyNamesIndex:
            return "KeyNames";
        case XkmVirtualModsIndex:
            return "VirtualMods";
        default:
            return "unknown";
        }
    }
    
    char *
    XkbcGeomFPText(int val)
    {
        char *buf;
        int whole, frac;
    
        buf = tbGetBuffer(12);
        whole = val / XkbGeomPtsPerMM;
        frac = val % XkbGeomPtsPerMM;
    
        if (frac != 0)
            snprintf(buf, 12, "%d.%d", whole, frac);
        else
            snprintf(buf, 12, "%d", whole);
    
        return buf;
    }
    
    static char *actionTypeNames[XkbSA_NumActions]= {
        "NoAction",         /* XkbSA_NoAction */
        "SetMods",          /* XkbSA_SetMods */
        "LatchMods",        /* XkbSA_LatchMods */
        "LockMods",         /* XkbSA_LockMods */
        "SetGroup",         /* XkbSA_SetGroup */
        "LatchGroup",       /* XkbSA_LatchGroup */
        "LockGroup",        /* XkbSA_LockGroup */
        "MovePtr",          /* XkbSA_MovePtr */
        "PtrBtn",           /* XkbSA_PtrBtn */
        "LockPtrBtn",       /* XkbSA_LockPtrBtn */
        "SetPtrDflt",       /* XkbSA_SetPtrDflt */
        "ISOLock",          /* XkbSA_ISOLock */
        "Terminate",        /* XkbSA_Terminate */
        "SwitchScreen",     /* XkbSA_SwitchScreen */
        "SetControls",      /* XkbSA_SetControls */
        "LockControls",     /* XkbSA_LockControls */
        "ActionMessage",    /* XkbSA_ActionMessage */
        "RedirectKey",      /* XkbSA_RedirectKey */
        "DeviceBtn",        /* XkbSA_DeviceBtn */
        "LockDeviceBtn",    /* XkbSA_LockDeviceBtn */
        "DeviceValuator"    /* XkbSA_DeviceValuator */
    };
    
    char *
    XkbcActionTypeText(unsigned type)
    {
        if (type <= XkbSA_LastAction)
            return actionTypeNames[type];
        return "Private";
    }
    
    char *
    XkbcKeysymText(KeySym sym)
    {
        char *buf;
    
        if (sym == NoSymbol)
            return "NoSymbol";
    
        if ((buf = XkbcKeysymToString(sym)))
            return buf;
    
        buf = tbGetBuffer(32);
        snprintf(buf, 32, "0x%lx", (long)sym);
        return buf;
    }
    
    char *
    XkbcKeyNameText(char *name)
    {
        char *buf;
        int len;
    
        buf = tbGetBuffer(7);
        buf[0] = '<';
        strncpy(&buf[1], name, 4);
        buf[5] = '\0';
        len = strlen(buf);
        buf[len++] = '>';
        buf[len] = '\0';
    
        return buf;
    }
    
    static char *siMatchText[5] = {
        "NoneOf",       /* XkbSI_NoneOf */
        "AnyOfOrNone",  /* XkbSI_AnyOfOrNone */
        "AnyOf",        /* XkbSI_AnyOf */
        "AllOf",        /* XkbSI_AllOf */
        "Exactly"       /* XkbSI_Exactly */
    };
    
    char *
    XkbcSIMatchText(unsigned type)
    {
        char *buf;
    
        switch (type & XkbSI_OpMask) {
        case XkbSI_NoneOf:
            return siMatchText[0];
        case XkbSI_AnyOfOrNone:
            return siMatchText[1];
        case XkbSI_AnyOf:
            return siMatchText[2];
        case XkbSI_AllOf:
            return siMatchText[3];
        case XkbSI_Exactly:
            return siMatchText[4];
        default:
            buf = tbGetBuffer(40);
            snprintf(buf, 40, "0x%x", type & XkbSI_OpMask);
            return buf;
        }
    }