1 /* Deal with the X Resource Manager.
2 Copyright (C) 1990, 1993-1994, 2000-2012 Free Software Foundation, Inc.
4 Author: Joseph Arceneaux
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
33 /* This may include sys/types.h, and that somehow loses
34 if this is not done before the other system files. */
38 #include <X11/Xatom.h>
40 #include <X11/Xutil.h>
41 #include <X11/Xresource.h>
48 /* For Vdouble_click_time. */
52 extern char *getenv (const char *);
54 extern struct passwd
*getpwuid (uid_t
);
55 extern struct passwd
*getpwnam (const char *);
57 char *x_get_string_resource (XrmDatabase rdb
, const char *name
,
59 static int file_p (const char *filename
);
62 /* X file search path processing. */
65 /* The string which gets substituted for the %C escape in XFILESEARCHPATH
66 and friends, or zero if none was specified. */
67 static char *x_customization_string
;
70 /* Return the value of the emacs.customization (Emacs.Customization)
71 resource, for later use in search path decoding. If we find no
72 such resource, return zero. */
74 x_get_customization_string (XrmDatabase db
, const char *name
,
78 = (char *) alloca (strlen (name
) + sizeof ("customization") + 3);
80 = (char *) alloca (strlen (class) + sizeof ("Customization") + 3);
83 sprintf (full_name
, "%s.%s", name
, "customization");
84 sprintf (full_class
, "%s.%s", class, "Customization");
86 result
= x_get_string_resource (db
, full_name
, full_class
);
90 char *copy
= (char *) xmalloc (strlen (result
) + 1);
91 strcpy (copy
, result
);
99 /* Expand all the Xt-style %-escapes in STRING, whose length is given
100 by STRING_LEN. Here are the escapes we're supposed to recognize:
102 %N The value of the application's class name
103 %T The value of the type parameter ("app-defaults" in this
105 %S The value of the suffix parameter ("" in this context)
106 %L The language string associated with the specified display
107 (We use the "LANG" environment variable here, if it's set.)
108 %l The language part of the display's language string
109 (We treat this just like %L. If someone can tell us what
110 we're really supposed to do, dandy.)
111 %t The territory part of the display's language string
112 (This never gets used.)
113 %c The codeset part of the display's language string
114 (This never gets used either.)
115 %C The customization string retrieved from the resource
116 database associated with display.
117 (This is x_customization_string.)
119 Return the expanded file name if it exists and is readable, and
120 refers to %L only when the LANG environment variable is set, or
121 otherwise provided by X.
123 ESCAPED_SUFFIX is postpended to STRING if it is non-zero.
124 %-escapes in ESCAPED_SUFFIX are expanded.
126 Return NULL otherwise. */
129 magic_file_p (const char *string
, EMACS_INT string_len
, const char *class,
130 const char *escaped_suffix
)
132 char *lang
= getenv ("LANG");
134 ptrdiff_t path_size
= 100;
135 char *path
= (char *) xmalloc (path_size
);
136 ptrdiff_t path_len
= 0;
138 const char *p
= string
;
140 while (p
< string
+ string_len
)
142 /* The chunk we're about to stick on the end of result. */
143 const char *next
= NULL
;
150 if (p
>= string
+ string_len
)
161 next
= (x_customization_string
162 ? x_customization_string
164 next_len
= strlen (next
);
169 next_len
= strlen (class);
173 next
= "app-defaults";
174 next_len
= strlen (next
);
191 next_len
= strlen (next
);
201 next
= p
, next_len
= 1;
203 /* Do we have room for this component followed by a '\0' ? */
204 if (path_size
- path_len
<= next_len
)
206 if (min (PTRDIFF_MAX
, SIZE_MAX
) / 2 - 1 - path_len
< next_len
)
207 memory_full (SIZE_MAX
);
208 path_size
= (path_len
+ next_len
+ 1) * 2;
209 path
= (char *) xrealloc (path
, path_size
);
212 memcpy (path
+ path_len
, next
, next_len
);
213 path_len
+= next_len
;
217 /* If we've reached the end of the string, append ESCAPED_SUFFIX. */
218 if (p
>= string
+ string_len
&& escaped_suffix
)
220 string
= escaped_suffix
;
221 string_len
= strlen (string
);
223 escaped_suffix
= NULL
;
227 path
[path_len
] = '\0';
246 if ((ptr
= getenv ("HOME")) == NULL
)
248 if ((ptr
= getenv ("LOGNAME")) != NULL
249 || (ptr
= getenv ("USER")) != NULL
)
252 pw
= getpwuid (getuid ());
259 return xstrdup ("/");
261 copy
= (char *) xmalloc (strlen (ptr
) + 2);
270 file_p (const char *filename
)
274 return (access (filename
, 4) == 0 /* exists and is readable */
275 && stat (filename
, &status
) == 0 /* get the status */
276 && (S_ISDIR (status
.st_mode
)) == 0); /* not a directory */
280 /* Find the first element of SEARCH_PATH which exists and is readable,
281 after expanding the %-escapes. Return 0 if we didn't find any, and
282 the path name of the one we found otherwise. */
285 search_magic_path (const char *search_path
, const char *class,
286 const char *escaped_suffix
)
290 for (s
= search_path
; *s
; s
= p
)
292 for (p
= s
; *p
&& *p
!= ':'; p
++)
297 char *path
= magic_file_p (s
, p
- s
, class, escaped_suffix
);
306 path
= magic_file_p (s
, strlen (s
), class, escaped_suffix
);
318 /* Producing databases for individual sources. */
321 get_system_app (const char *class)
323 XrmDatabase db
= NULL
;
327 path
= getenv ("XFILESEARCHPATH");
328 if (! path
) path
= PATH_X_DEFAULTS
;
330 p
= search_magic_path (path
, class, 0);
333 db
= XrmGetFileDatabase (p
);
342 get_fallback (Display
*display
)
349 get_user_app (const char *class)
355 /* Check for XUSERFILESEARCHPATH. It is a path of complete file
356 names, not directories. */
357 if (((path
= getenv ("XUSERFILESEARCHPATH"))
358 && (file
= search_magic_path (path
, class, 0)))
360 /* Check for APPLRESDIR; it is a path of directories. In each,
361 we have to search for LANG/CLASS and then CLASS. */
362 || ((path
= getenv ("XAPPLRESDIR"))
363 && ((file
= search_magic_path (path
, class, "/%L/%N"))
364 || (file
= search_magic_path (path
, class, "/%N"))))
366 /* Check in the home directory. This is a bit of a hack; let's
367 hope one's home directory doesn't contain any %-escapes. */
368 || (free_it
= gethomedir (),
369 ((file
= search_magic_path (free_it
, class, "%L/%N"))
370 || (file
= search_magic_path (free_it
, class, "%N")))))
372 XrmDatabase db
= XrmGetFileDatabase (file
);
384 get_user_db (Display
*display
)
389 #ifdef PBaseSize /* Cheap way to test for X11R4 or later. */
390 xdefs
= XResourceManagerString (display
);
392 xdefs
= display
->xdefaults
;
396 db
= XrmGetStringDatabase (xdefs
);
402 home
= gethomedir ();
403 xdefault
= (char *) xmalloc (strlen (home
) + sizeof (".Xdefaults"));
404 strcpy (xdefault
, home
);
405 strcat (xdefault
, ".Xdefaults");
406 db
= XrmGetFileDatabase (xdefault
);
411 #ifdef HAVE_XSCREENRESOURCESTRING
412 /* Get the screen-specific resources too. */
413 xdefs
= XScreenResourceString (DefaultScreenOfDisplay (display
));
416 XrmMergeDatabases (XrmGetStringDatabase (xdefs
), &db
);
425 get_environ_db (void)
431 if ((p
= getenv ("XENVIRONMENT")) == NULL
)
433 static char const xdefaults
[] = ".Xdefaults-";
434 char *home
= gethomedir ();
435 char const *host
= get_system_name ();
436 ptrdiff_t pathsize
= strlen (home
) + sizeof xdefaults
+ strlen (host
);
437 path
= (char *) xrealloc (home
, pathsize
);
438 strcat (strcat (path
, xdefaults
), host
);
442 db
= XrmGetFileDatabase (p
);
449 /* External interface. */
451 /* Types of values that we can find in a database */
453 #define XrmStringType "String" /* String representation */
454 static XrmRepresentation x_rm_string
; /* Quark representation */
456 /* Load X resources based on the display and a possible -xrm option. */
459 x_load_resources (Display
*display
, const char *xrm_string
,
460 const char *myname
, const char *myclass
)
462 XrmDatabase user_database
;
467 #if defined USE_MOTIF || !defined HAVE_XFT || !defined USE_LUCID
468 const char *helv
= "-*-helvetica-medium-r-*--*-120-*-*-*-*-iso8859-1";
472 const char *courier
= "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1";
475 x_rm_string
= XrmStringToQuark (XrmStringType
);
476 #ifndef USE_X_TOOLKIT
477 /* pmr@osf.org says this shouldn't be done if USE_X_TOOLKIT.
478 I suspect it's because the toolkit version does this elsewhere. */
481 rdb
= XrmGetStringDatabase ("");
483 /* Add some font defaults. If the font `helv' doesn't exist, widgets
484 will use some other default font. */
487 sprintf (line
, "%s.pane.background: grey75", myclass
);
488 XrmPutLineResource (&rdb
, line
);
489 sprintf (line
, "%s*fontList: %s", myclass
, helv
);
490 XrmPutLineResource (&rdb
, line
);
491 sprintf (line
, "%s*menu*background: grey75", myclass
);
492 XrmPutLineResource (&rdb
, line
);
493 sprintf (line
, "%s*menubar*background: grey75", myclass
);
494 XrmPutLineResource (&rdb
, line
);
495 sprintf (line
, "%s*verticalScrollBar.background: grey75", myclass
);
496 XrmPutLineResource (&rdb
, line
);
497 sprintf (line
, "%s*verticalScrollBar.troughColor: grey75", myclass
);
498 XrmPutLineResource (&rdb
, line
);
499 sprintf (line
, "%s.dialog*.background: grey75", myclass
);
500 XrmPutLineResource (&rdb
, line
);
501 sprintf (line
, "%s*fsb.Text.background: white", myclass
);
502 XrmPutLineResource (&rdb
, line
);
503 sprintf (line
, "%s*fsb.FilterText.background: white", myclass
);
504 XrmPutLineResource (&rdb
, line
);
505 sprintf (line
, "%s*fsb*DirList.background: white", myclass
);
506 XrmPutLineResource (&rdb
, line
);
507 sprintf (line
, "%s*fsb*ItemsList.background: white", myclass
);
508 XrmPutLineResource (&rdb
, line
);
509 sprintf (line
, "%s*fsb*background: grey75", myclass
);
510 XrmPutLineResource (&rdb
, line
);
511 sprintf (line
, "%s*fsb.Text.fontList: %s", myclass
, courier
);
512 XrmPutLineResource (&rdb
, line
);
513 sprintf (line
, "%s*fsb.FilterText.fontList: %s", myclass
, courier
);
514 XrmPutLineResource (&rdb
, line
);
515 sprintf (line
, "%s*fsb*ItemsList.fontList: %s", myclass
, courier
);
516 XrmPutLineResource (&rdb
, line
);
517 sprintf (line
, "%s*fsb*DirList.fontList: %s", myclass
, courier
);
518 XrmPutLineResource (&rdb
, line
);
520 /* Set double click time of list boxes in the file selection
521 dialog from `double-click-time'. */
522 if (INTEGERP (Vdouble_click_time
) && XINT (Vdouble_click_time
) > 0)
524 sprintf (line
, "%s*fsb*DirList.doubleClickInterval: %"pI
"d",
525 myclass
, XFASTINT (Vdouble_click_time
));
526 XrmPutLineResource (&rdb
, line
);
527 sprintf (line
, "%s*fsb*ItemsList.doubleClickInterval: %"pI
"d",
528 myclass
, XFASTINT (Vdouble_click_time
));
529 XrmPutLineResource (&rdb
, line
);
532 #else /* not USE_MOTIF */
534 sprintf (line
, "Emacs.dialog*.background: grey75");
535 XrmPutLineResource (&rdb
, line
);
536 #if !defined (HAVE_XFT) || !defined (USE_LUCID)
537 sprintf (line
, "Emacs.dialog*.font: %s", helv
);
538 XrmPutLineResource (&rdb
, line
);
539 sprintf (line
, "*XlwMenu*font: %s", helv
);
540 XrmPutLineResource (&rdb
, line
);
542 sprintf (line
, "*XlwMenu*background: grey75");
543 XrmPutLineResource (&rdb
, line
);
544 sprintf (line
, "Emacs*verticalScrollBar.background: grey75");
545 XrmPutLineResource (&rdb
, line
);
547 #endif /* not USE_MOTIF */
549 user_database
= get_user_db (display
);
551 /* Figure out what the "customization string" is, so we can use it
553 xfree (x_customization_string
);
554 x_customization_string
555 = x_get_customization_string (user_database
, myname
, myclass
);
557 /* Get application system defaults */
558 db
= get_system_app (myclass
);
560 XrmMergeDatabases (db
, &rdb
);
562 /* Get Fallback resources */
563 db
= get_fallback (display
);
565 XrmMergeDatabases (db
, &rdb
);
567 /* Get application user defaults */
568 db
= get_user_app (myclass
);
570 XrmMergeDatabases (db
, &rdb
);
572 /* get User defaults */
573 if (user_database
!= NULL
)
574 XrmMergeDatabases (user_database
, &rdb
);
576 /* Get Environment defaults. */
577 db
= get_environ_db ();
579 XrmMergeDatabases (db
, &rdb
);
581 /* Last, merge in any specification from the command line. */
582 if (xrm_string
!= NULL
)
584 db
= XrmGetStringDatabase (xrm_string
);
586 XrmMergeDatabases (db
, &rdb
);
593 /* Retrieve the value of the resource specified by NAME with class CLASS
594 and of type TYPE from database RDB. The value is returned in RET_VALUE. */
597 x_get_resource (XrmDatabase rdb
, const char *name
, const char *class,
598 XrmRepresentation expected_type
, XrmValue
*ret_value
)
601 XrmName namelist
[100];
602 XrmClass classlist
[100];
603 XrmRepresentation type
;
605 XrmStringToNameList (name
, namelist
);
606 XrmStringToClassList (class, classlist
);
608 if (XrmQGetResource (rdb
, namelist
, classlist
, &type
, &value
) == True
609 && (type
== expected_type
))
611 if (type
== x_rm_string
)
612 ret_value
->addr
= (char *) value
.addr
;
614 memcpy (ret_value
->addr
, value
.addr
, ret_value
->size
);
622 /* Retrieve the string resource specified by NAME with CLASS from
626 x_get_string_resource (XrmDatabase rdb
, const char *name
, const char *class)
630 if (inhibit_x_resources
)
631 /* --quick was passed, so this is a no-op. */
634 if (x_get_resource (rdb
, name
, class, x_rm_string
, &value
))
635 return (char *) value
.addr
;
640 /* Stand-alone test facilities. */
645 #define arg_listify(len, list) (list)
646 #define car(list) (*(list))
647 #define cdr(list) (list + 1)
648 #define NIL(list) (! *(list))
649 #define free_arglist(list)
652 member (char *elt
, List list
)
656 for (p
= list
; ! NIL (p
); p
= cdr (p
))
657 if (! strcmp (elt
, car (p
)))
664 fatal (char *msg
, char *prog
)
669 (void) fprintf (stderr
, msg
, prog
);
674 main (int argc
, char **argv
)
677 char *displayname
, *resource_string
, *class, *name
;
681 arg_list
= arg_listify (argc
, argv
);
683 lp
= member ("-d", arg_list
);
685 displayname
= car (cdr (lp
));
687 displayname
= "localhost:0.0";
689 lp
= member ("-xrm", arg_list
);
691 resource_string
= car (cdr (lp
));
693 resource_string
= (char *) 0;
695 lp
= member ("-c", arg_list
);
697 class = car (cdr (lp
));
701 lp
= member ("-n", arg_list
);
703 name
= car (cdr (lp
));
707 free_arglist (arg_list
);
709 if (!(display
= XOpenDisplay (displayname
)))
710 fatal ("Can't open display '%s'\n", XDisplayName (displayname
));
712 xdb
= x_load_resources (display
, resource_string
, name
, class);
714 /* In a real program, you'd want to also do this: */
720 char query_class
[90];
725 if (strlen (query_name
))
732 value
= x_get_string_resource (xdb
, query_name
, query_class
);
735 printf ("\t%s(%s): %s\n\n", query_name
, query_class
, value
);
737 printf ("\tNo Value.\n\n");
742 printf ("\tExit.\n\n");
744 XCloseDisplay (display
);