1 /* Deal with the X Resource Manager.
2 Copyright (C) 1990, 1993, 1994, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 Author: Joseph Arceneaux
8 This file is part of GNU Emacs.
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
15 GNU Emacs is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
36 #include <X11/Xatom.h>
38 #include <X11/Xutil.h>
39 #include <X11/Xresource.h>
45 #if !defined(S_ISDIR) && defined(S_IFDIR)
46 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
51 extern char *getenv (const char *);
53 extern struct passwd
*getpwuid (uid_t
);
54 extern struct passwd
*getpwnam (const char *);
56 extern const char *get_system_name (void);
58 char *x_get_string_resource (XrmDatabase rdb
, const char *name
,
60 static int file_p (const char *filename
);
63 /* X file search path processing. */
66 /* The string which gets substituted for the %C escape in XFILESEARCHPATH
67 and friends, or zero if none was specified. */
68 char *x_customization_string
;
71 /* Return the value of the emacs.customization (Emacs.Customization)
72 resource, for later use in search path decoding. If we find no
73 such resource, return zero. */
75 x_get_customization_string (XrmDatabase db
, const char *name
, const char *class)
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 and SUFFIX are postpended to STRING if they are
124 non-zero. %-escapes in ESCAPED_SUFFIX are expanded; STRING is left
127 Return NULL otherwise. */
130 magic_file_p (const char *string
, EMACS_INT string_len
, const char *class, const char *escaped_suffix
, const char *suffix
)
132 char *lang
= getenv ("LANG");
135 char *path
= (char *) xmalloc (path_size
);
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_len
+ next_len
+ 1 > path_size
)
206 path_size
= (path_len
+ next_len
+ 1) * 2;
207 path
= (char *) xrealloc (path
, path_size
);
210 memcpy (path
+ path_len
, next
, next_len
);
211 path_len
+= next_len
;
215 /* If we've reached the end of the string, append ESCAPED_SUFFIX. */
216 if (p
>= string
+ string_len
&& escaped_suffix
)
218 string
= escaped_suffix
;
219 string_len
= strlen (string
);
221 escaped_suffix
= NULL
;
225 /* Perhaps we should add the SUFFIX now. */
228 int suffix_len
= strlen (suffix
);
230 if (path_len
+ suffix_len
+ 1 > path_size
)
232 path_size
= (path_len
+ suffix_len
+ 1);
233 path
= (char *) xrealloc (path
, path_size
);
236 memcpy (path
+ path_len
, suffix
, suffix_len
);
237 path_len
+= suffix_len
;
240 path
[path_len
] = '\0';
259 if ((ptr
= getenv ("HOME")) == NULL
)
261 if ((ptr
= getenv ("LOGNAME")) != NULL
262 || (ptr
= getenv ("USER")) != NULL
)
265 pw
= getpwuid (getuid ());
272 return xstrdup ("/");
274 copy
= (char *) xmalloc (strlen (ptr
) + 2);
283 file_p (const char *filename
)
287 return (access (filename
, 4) == 0 /* exists and is readable */
288 && stat (filename
, &status
) == 0 /* get the status */
289 && (S_ISDIR (status
.st_mode
)) == 0); /* not a directory */
293 /* Find the first element of SEARCH_PATH which exists and is readable,
294 after expanding the %-escapes. Return 0 if we didn't find any, and
295 the path name of the one we found otherwise. */
298 search_magic_path (const char *search_path
, const char *class, const char *escaped_suffix
, const char *suffix
)
302 for (s
= search_path
; *s
; s
= p
)
304 for (p
= s
; *p
&& *p
!= ':'; p
++)
309 char *path
= magic_file_p (s
, p
- s
, class, escaped_suffix
,
319 path
= magic_file_p (s
, strlen (s
), class, escaped_suffix
, suffix
);
331 /* Producing databases for individual sources. */
334 get_system_app (const char *class)
336 XrmDatabase db
= NULL
;
340 path
= getenv ("XFILESEARCHPATH");
341 if (! path
) path
= PATH_X_DEFAULTS
;
343 p
= search_magic_path (path
, class, 0, 0);
346 db
= XrmGetFileDatabase (p
);
355 get_fallback (Display
*display
)
362 get_user_app (const char *class)
368 /* Check for XUSERFILESEARCHPATH. It is a path of complete file
369 names, not directories. */
370 if (((path
= getenv ("XUSERFILESEARCHPATH"))
371 && (file
= search_magic_path (path
, class, 0, 0)))
373 /* Check for APPLRESDIR; it is a path of directories. In each,
374 we have to search for LANG/CLASS and then CLASS. */
375 || ((path
= getenv ("XAPPLRESDIR"))
376 && ((file
= search_magic_path (path
, class, "/%L/%N", 0))
377 || (file
= search_magic_path (path
, class, "/%N", 0))))
379 /* Check in the home directory. This is a bit of a hack; let's
380 hope one's home directory doesn't contain any %-escapes. */
381 || (free_it
= gethomedir (),
382 ((file
= search_magic_path (free_it
, class, "%L/%N", 0))
383 || (file
= search_magic_path (free_it
, class, "%N", 0)))))
385 XrmDatabase db
= XrmGetFileDatabase (file
);
397 get_user_db (Display
*display
)
402 #ifdef PBaseSize /* Cheap way to test for X11R4 or later. */
403 xdefs
= XResourceManagerString (display
);
405 xdefs
= display
->xdefaults
;
409 db
= XrmGetStringDatabase (xdefs
);
415 home
= gethomedir ();
416 xdefault
= (char *) xmalloc (strlen (home
) + sizeof (".Xdefaults"));
417 strcpy (xdefault
, home
);
418 strcat (xdefault
, ".Xdefaults");
419 db
= XrmGetFileDatabase (xdefault
);
424 #ifdef HAVE_XSCREENRESOURCESTRING
425 /* Get the screen-specific resources too. */
426 xdefs
= XScreenResourceString (DefaultScreenOfDisplay (display
));
429 XrmMergeDatabases (XrmGetStringDatabase (xdefs
), &db
);
438 get_environ_db (void)
442 char *path
= 0, *home
= 0;
445 if ((p
= getenv ("XENVIRONMENT")) == NULL
)
447 home
= gethomedir ();
448 host
= get_system_name ();
449 path
= (char *) xmalloc (strlen (home
)
450 + sizeof (".Xdefaults-")
452 sprintf (path
, "%s%s%s", home
, ".Xdefaults-", host
);
456 db
= XrmGetFileDatabase (p
);
464 /* External interface. */
466 /* Types of values that we can find in a database */
468 #define XrmStringType "String" /* String representation */
469 XrmRepresentation x_rm_string
; /* Quark representation */
471 /* Load X resources based on the display and a possible -xrm option. */
474 x_load_resources (Display
*display
, const char *xrm_string
,
475 const char *myname
, const char *myclass
)
477 XrmDatabase user_database
;
482 const char *helv
= "-*-helvetica-medium-r-*--*-120-*-*-*-*-iso8859-1";
485 const char *courier
= "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1";
488 x_rm_string
= XrmStringToQuark (XrmStringType
);
489 #ifndef USE_X_TOOLKIT
490 /* pmr@osf.org says this shouldn't be done if USE_X_TOOLKIT.
491 I suspect it's because the toolkit version does this elsewhere. */
494 rdb
= XrmGetStringDatabase ("");
496 /* Add some font defaults. If the font `helv' doesn't exist, widgets
497 will use some other default font. */
500 sprintf (line
, "%s.pane.background: grey75", myclass
);
501 XrmPutLineResource (&rdb
, line
);
502 sprintf (line
, "%s*fontList: %s", myclass
, helv
);
503 XrmPutLineResource (&rdb
, line
);
504 sprintf (line
, "%s*menu*background: grey75", myclass
);
505 XrmPutLineResource (&rdb
, line
);
506 sprintf (line
, "%s*menubar*background: grey75", myclass
);
507 XrmPutLineResource (&rdb
, line
);
508 sprintf (line
, "%s*verticalScrollBar.background: grey75", myclass
);
509 XrmPutLineResource (&rdb
, line
);
510 sprintf (line
, "%s*verticalScrollBar.troughColor: grey75", myclass
);
511 XrmPutLineResource (&rdb
, line
);
512 sprintf (line
, "%s.dialog*.background: grey75", myclass
);
513 XrmPutLineResource (&rdb
, line
);
514 sprintf (line
, "%s*fsb.Text.background: white", myclass
);
515 XrmPutLineResource (&rdb
, line
);
516 sprintf (line
, "%s*fsb.FilterText.background: white", myclass
);
517 XrmPutLineResource (&rdb
, line
);
518 sprintf (line
, "%s*fsb*DirList.background: white", myclass
);
519 XrmPutLineResource (&rdb
, line
);
520 sprintf (line
, "%s*fsb*ItemsList.background: white", myclass
);
521 XrmPutLineResource (&rdb
, line
);
522 sprintf (line
, "%s*fsb*background: grey75", myclass
);
523 XrmPutLineResource (&rdb
, line
);
524 sprintf (line
, "%s*fsb.Text.fontList: %s", myclass
, courier
);
525 XrmPutLineResource (&rdb
, line
);
526 sprintf (line
, "%s*fsb.FilterText.fontList: %s", myclass
, courier
);
527 XrmPutLineResource (&rdb
, line
);
528 sprintf (line
, "%s*fsb*ItemsList.fontList: %s", myclass
, courier
);
529 XrmPutLineResource (&rdb
, line
);
530 sprintf (line
, "%s*fsb*DirList.fontList: %s", myclass
, courier
);
531 XrmPutLineResource (&rdb
, line
);
533 /* Set double click time of list boxes in the file selection
534 dialog from `double-click-time'. */
535 if (INTEGERP (Vdouble_click_time
) && XINT (Vdouble_click_time
) > 0)
537 sprintf (line
, "%s*fsb*DirList.doubleClickInterval: %d",
538 myclass
, XFASTINT (Vdouble_click_time
));
539 XrmPutLineResource (&rdb
, line
);
540 sprintf (line
, "%s*fsb*ItemsList.doubleClickInterval: %d",
541 myclass
, XFASTINT (Vdouble_click_time
));
542 XrmPutLineResource (&rdb
, line
);
545 #else /* not USE_MOTIF */
547 sprintf (line
, "Emacs.dialog*.font: %s", helv
);
548 XrmPutLineResource (&rdb
, line
);
549 sprintf (line
, "Emacs.dialog*.background: grey75");
550 XrmPutLineResource (&rdb
, line
);
551 sprintf (line
, "*XlwMenu*font: %s", helv
);
552 XrmPutLineResource (&rdb
, line
);
553 sprintf (line
, "*XlwMenu*background: grey75");
554 XrmPutLineResource (&rdb
, line
);
555 sprintf (line
, "Emacs*verticalScrollBar.background: grey75");
556 XrmPutLineResource (&rdb
, line
);
558 #endif /* not USE_MOTIF */
560 user_database
= get_user_db (display
);
562 /* Figure out what the "customization string" is, so we can use it
564 xfree (x_customization_string
);
565 x_customization_string
566 = x_get_customization_string (user_database
, myname
, myclass
);
568 /* Get application system defaults */
569 db
= get_system_app (myclass
);
571 XrmMergeDatabases (db
, &rdb
);
573 /* Get Fallback resources */
574 db
= get_fallback (display
);
576 XrmMergeDatabases (db
, &rdb
);
578 /* Get application user defaults */
579 db
= get_user_app (myclass
);
581 XrmMergeDatabases (db
, &rdb
);
583 /* get User defaults */
584 if (user_database
!= NULL
)
585 XrmMergeDatabases (user_database
, &rdb
);
587 /* Get Environment defaults. */
588 db
= get_environ_db ();
590 XrmMergeDatabases (db
, &rdb
);
592 /* Last, merge in any specification from the command line. */
593 if (xrm_string
!= NULL
)
595 db
= XrmGetStringDatabase (xrm_string
);
597 XrmMergeDatabases (db
, &rdb
);
604 /* Retrieve the value of the resource specified by NAME with class CLASS
605 and of type TYPE from database RDB. The value is returned in RET_VALUE. */
608 x_get_resource (XrmDatabase rdb
, const char *name
, const char *class, XrmRepresentation expected_type
, XrmValue
*ret_value
)
611 XrmName namelist
[100];
612 XrmClass classlist
[100];
613 XrmRepresentation type
;
615 XrmStringToNameList(name
, namelist
);
616 XrmStringToClassList(class, classlist
);
618 if (XrmQGetResource (rdb
, namelist
, classlist
, &type
, &value
) == True
619 && (type
== expected_type
))
621 if (type
== x_rm_string
)
622 ret_value
->addr
= (char *) value
.addr
;
624 memcpy (ret_value
->addr
, value
.addr
, ret_value
->size
);
632 /* Retrieve the string resource specified by NAME with CLASS from
636 x_get_string_resource (XrmDatabase rdb
, const char *name
, const char *class)
640 if (inhibit_x_resources
)
641 /* --quick was passed, so this is a no-op. */
644 if (x_get_resource (rdb
, name
, class, x_rm_string
, &value
))
645 return (char *) value
.addr
;
650 /* Stand-alone test facilities. */
655 #define arg_listify(len, list) (list)
656 #define car(list) (*(list))
657 #define cdr(list) (list + 1)
658 #define NIL(list) (! *(list))
659 #define free_arglist(list)
668 for (p
= list
; ! NIL (p
); p
= cdr (p
))
669 if (! strcmp (elt
, car (p
)))
676 fatal (msg
, prog
, x1
, x2
, x3
, x4
, x5
)
678 int x1
, x2
, x3
, x4
, x5
;
683 (void) fprintf (stderr
, msg
, prog
, x1
, x2
, x3
, x4
, x5
);
692 char *displayname
, *resource_string
, *class, *name
;
696 arg_list
= arg_listify (argc
, argv
);
698 lp
= member ("-d", arg_list
);
700 displayname
= car (cdr (lp
));
702 displayname
= "localhost:0.0";
704 lp
= member ("-xrm", arg_list
);
706 resource_string
= car (cdr (lp
));
708 resource_string
= (char *) 0;
710 lp
= member ("-c", arg_list
);
712 class = car (cdr (lp
));
716 lp
= member ("-n", arg_list
);
718 name
= car (cdr (lp
));
722 free_arglist (arg_list
);
724 if (!(display
= XOpenDisplay (displayname
)))
725 fatal ("Can't open display '%s'\n", XDisplayName (displayname
));
727 xdb
= x_load_resources (display
, resource_string
, name
, class);
729 /* In a real program, you'd want to also do this: */
735 char query_class
[90];
740 if (strlen (query_name
))
747 value
= x_get_string_resource (xdb
, query_name
, query_class
);
750 printf ("\t%s(%s): %s\n\n", query_name
, query_class
, value
);
752 printf ("\tNo Value.\n\n");
757 printf ("\tExit.\n\n");
759 XCloseDisplay (display
);
763 /* arch-tag: 37e6fbab-ed05-4363-9e76-6c4109ed511f
764 (do not change this comment) */