A magic file contains an ordered set of file-typing rules, which ClearCase uses to determine a list of file types for an existing file system object or for one that is about to be created. (For information about predefined element types, see the mkeltype reference page.) A rule can use the object's name, its file(1) or stat(2) data, or its contents. File-typing involves searching one or more magic files for the first rule that matches a file system object. Finding a match yields a single file type or an ordered list of file types; failing to find a match produces an error.
On UNIX and Linux systems, file-typing is performed in the following situations:
On Windows, ClearCase performs file-typing when you create a new element with mkelem, but do not specify an element type (with –eltype). (If you are converting a view-private file to an element with mkelem –ci or mkelem –nco, the file's contents are also used in the file-typing.) The resulting file type list is compared to the VOB's set of element types (which includes both element types in the VOB and element types in the administrative VOB hierarchy associated with the VOB). The first file type that matches an element type is chosen as the element type; if no file type matches any existing element type, an error occurs:
Following are examples of file-typing rules:
directory : -stat d ; c_source source text_file : -printable & -name "*.c" ; sh_script script text_file : -printable & (-name ".profile" | -name "*.sh") ; archive library file: !-printable & -name "*.a" ;
ClearCase supports a search path for magic files. If MAGIC_PATH is set in your environment (to a colon-separated list of directories (UNIX and Linux) or to a -separated list of directories (Windows)), xclearcase or ClearCase searches files with a .magic extension in these directories. In each directory, files are processed in alphabetical order. As soon as a matching rule is found, the search ends. If multiple rules match a file type, the first rule encountered is used.
A file-type list is an ordered list of one or more names, separated by white space. Only letters, digits, and underscores (_) are permitted in these names. Depending on the file-typing situation, each name must match either an element type defined in some VOB or an icon name specified in an icon file. To avoid errors, always make the final name one of the predefined element types (see the mkeltype reference page). These names are also included in the system-default icon file.
Following are some file-type list examples:
text_file backup_dir directory manual_page text_file cplusplus_src src_file text_file
Here is an example for UNIX or Linux that calls for a lengthy file-type list:
Your host mounts several VOBs, in which different sets of element types are defined. Perhaps one VOB defines element type bshell for Bourne shell scripts, a second VOB defines element type shell_script for all shell scripts, and a third VOB does not define any special element type for scripts. Your file-typing rules must be appropriate for all the VOBs. For example:
bshell shell_script text_file : -name "*.sh" ; shell_script text_file : -name "*.csh" ;
Following these file-typing rules, xclearcase uses the file type text_file to select the same icon for all shell script files. A user who wants to distinguish Bourne shell scripts from C shell scripts can add a cshell file type and create different bitmaps to correspond to the unique file types bshell and cshell.
bshell shell_script text_file : -name "*.sh" ; cshell shell_script text_file : -name "*.csh" ;
bshell : -icon bourne_shell_icon ; cshell : -icon C_shell_icon ;
A selection expression consists of one or more selection operators and their arguments, connected by logical operators. Examples:
-name "*.c" -name "*.[ch]" -name "*.c" | -name "*.h" -printable !-printable -stat d
Any abbreviation of a selection operator name is accepted. For example, you can abbreviate –name to –n, –na, or –nam.
All string arguments must be enclosed in double quotes. Use \” to include a double-quote character in a string argument.
If the file system object exists, any of the selection operators listed below can produce a match. If you are determining the file type for a nonexistent object (for example, an element that is about to be created with mkelem), only the –name operator can produce a match.
When an xclearcase browser performs file-typing in an MVFS directory to determine which icons to display, only the –name and –stat operators can produce a match. All other operators are invalid; expressions derived from the invalid operations with logical NOT and logical AND are also invalid and can never produce a match. Examples:
text_file : -printable ; file : ! -printable ;
xyz_file : -magic 0, "<xyz>" & -name "*.xyz" ;
bourne_shell : (-magic 0, "#!/bin/sh" & -stat f) | -name "*.sh"
On UNIX and Linux systems, the selection expression –stat l & –stat r is TRUE for a symbolic link that points to a regular file. But testing for symbolic links is not particularly useful. xclearcase displays an icon for the object it finds at the end of a chain of symbolic links.
Remember that mkelem can create an element object that corresponds to an empty (and therefore unprintable) file.
File-typing rules can use the following logical operators, listed in decreasing order of precedence:
! -stat f |
Produces a match when file-typing the name of an existing directory |
! -stat f |
Fails to produce a match when file-typing a name for which no object currently exists |
source_file text_file : -name "*.c" | -name "*.h" ;
cplspls_source text_file : -printable & (-name "*.cxx" | -name "*.c++") ;
csh_script text_file : -printable & -magic 0,"#!" & -token "csh" ;
directory : -stat d ;
cpio file : -file "cpio archive" ;
doc_file text_file : -printable & (-name "*.doc" | -name "*.txt");