FontNames.c revision c555af55
11ab64890Smrg/* 21ab64890Smrg 31ab64890SmrgCopyright 1986, 1998 The Open Group 41ab64890Smrg 51ab64890SmrgPermission to use, copy, modify, distribute, and sell this software and its 61ab64890Smrgdocumentation for any purpose is hereby granted without fee, provided that 71ab64890Smrgthe above copyright notice appear in all copies and that both that 81ab64890Smrgcopyright notice and this permission notice appear in supporting 91ab64890Smrgdocumentation. 101ab64890Smrg 111ab64890SmrgThe above copyright notice and this permission notice shall be included in 121ab64890Smrgall copies or substantial portions of the Software. 131ab64890Smrg 141ab64890SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 151ab64890SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 161ab64890SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 171ab64890SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 181ab64890SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 191ab64890SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 201ab64890Smrg 211ab64890SmrgExcept as contained in this notice, the name of The Open Group shall not be 221ab64890Smrgused in advertising or otherwise to promote the sale, use or other dealings 231ab64890Smrgin this Software without prior written authorization from The Open Group. 241ab64890Smrg 251ab64890Smrg*/ 261ab64890Smrg 271ab64890Smrg 281ab64890Smrg#ifdef HAVE_CONFIG_H 291ab64890Smrg#include <config.h> 301ab64890Smrg#endif 311ab64890Smrg#include "Xlibint.h" 32eb411b4bSmrg#include <limits.h> 331ab64890Smrg 341ab64890Smrgchar ** 351ab64890SmrgXListFonts( 361ab64890Smrgregister Display *dpy, 371ab64890Smrg_Xconst char *pattern, /* null-terminated */ 381ab64890Smrgint maxNames, 391ab64890Smrgint *actualCount) /* RETURN */ 4061b2299dSmrg{ 411ab64890Smrg register long nbytes; 421ab64890Smrg register unsigned i; 431ab64890Smrg register int length; 44eb411b4bSmrg char **flist = NULL; 45eb411b4bSmrg char *ch = NULL; 46eb411b4bSmrg char *chend; 47eb411b4bSmrg int count = 0; 481ab64890Smrg xListFontsReply rep; 491ab64890Smrg register xListFontsReq *req; 50eb411b4bSmrg unsigned long rlen; 511ab64890Smrg 521ab64890Smrg LockDisplay(dpy); 531ab64890Smrg GetReq(ListFonts, req); 541ab64890Smrg req->maxNames = maxNames; 551ab64890Smrg nbytes = req->nbytes = pattern ? strlen (pattern) : 0; 561ab64890Smrg req->length += (nbytes + 3) >> 2; 571ab64890Smrg _XSend (dpy, pattern, nbytes); 581ab64890Smrg /* use _XSend instead of Data, since following _XReply will flush buffer */ 591ab64890Smrg 601ab64890Smrg if (!_XReply (dpy, (xReply *)&rep, 0, xFalse)) { 611ab64890Smrg *actualCount = 0; 621ab64890Smrg UnlockDisplay(dpy); 631ab64890Smrg SyncHandle(); 641ab64890Smrg return (char **) NULL; 651ab64890Smrg } 661ab64890Smrg 671ab64890Smrg if (rep.nFonts) { 68eb411b4bSmrg flist = Xmalloc (rep.nFonts * sizeof(char *)); 69eaa19f58Swiz if (rep.length < (INT_MAX >> 2)) { 70eb411b4bSmrg rlen = rep.length << 2; 71eb411b4bSmrg ch = Xmalloc(rlen + 1); 721ab64890Smrg /* +1 to leave room for last null-terminator */ 73eb411b4bSmrg } 741ab64890Smrg 751ab64890Smrg if ((! flist) || (! ch)) { 76c555af55Smrg if (flist) Xfree(flist); 771ab64890Smrg if (ch) Xfree(ch); 78eb411b4bSmrg _XEatDataWords(dpy, rep.length); 791ab64890Smrg *actualCount = 0; 801ab64890Smrg UnlockDisplay(dpy); 811ab64890Smrg SyncHandle(); 821ab64890Smrg return (char **) NULL; 831ab64890Smrg } 841ab64890Smrg 851ab64890Smrg _XReadPad (dpy, ch, rlen); 861ab64890Smrg /* 871ab64890Smrg * unpack into null terminated strings. 881ab64890Smrg */ 89eb411b4bSmrg chend = ch + (rlen + 1); 901ab64890Smrg length = *(unsigned char *)ch; 911ab64890Smrg *ch = 1; /* make sure it is non-zero for XFreeFontNames */ 921ab64890Smrg for (i = 0; i < rep.nFonts; i++) { 93eb411b4bSmrg if (ch + length < chend) { 94eb411b4bSmrg flist[i] = ch + 1; /* skip over length */ 95eb411b4bSmrg ch += length + 1; /* find next length ... */ 96eb411b4bSmrg length = *(unsigned char *)ch; 97eb411b4bSmrg *ch = '\0'; /* and replace with null-termination */ 98eb411b4bSmrg count++; 99eb411b4bSmrg } else 100eb411b4bSmrg flist[i] = NULL; 1011ab64890Smrg } 1021ab64890Smrg } 103eb411b4bSmrg *actualCount = count; 1041ab64890Smrg UnlockDisplay(dpy); 1051ab64890Smrg SyncHandle(); 1061ab64890Smrg return (flist); 1071ab64890Smrg} 1081ab64890Smrg 1091ab64890Smrgint 1101ab64890SmrgXFreeFontNames(char **list) 11161b2299dSmrg{ 1121ab64890Smrg if (list) { 1131ab64890Smrg if (!*(list[0]-1)) { /* from ListFontsWithInfo */ 1141ab64890Smrg register char **names; 1151ab64890Smrg for (names = list+1; *names; names++) 1161ab64890Smrg Xfree (*names); 1171ab64890Smrg } 1181ab64890Smrg Xfree (list[0]-1); 119c555af55Smrg Xfree (list); 1201ab64890Smrg } 1211ab64890Smrg return 1; 1221ab64890Smrg} 123