Fandango Include Reference

Fandango Include Reference#

Where Does Fandango Look for Included Specs?#

In a Fandango spec, the include() function searches for Fandango files in a number of locations. The actual rules for where Fandango searches are complex, versatile, and adhere to common standards. Specifically, when including a .fan file using include(), Fandango searches for .fan files in the following locations, in this order:

  1. In any directory DIR explicitly specified by -I DIR or --include-dir DIR.

  2. In any directory specified by the $FANDANGO_PATH environment variable, if set. This variable is a colon-separated list of directories, e.g. $HOME/my_cool_fan_specs:/Volumes/Fandango:/opt/local/fandango-1.27 which are searched from left to right.

  3. In the directory of the including file. This is the most common usage. If the including file has no file name (say, because it is a stream), the current directory is used.

  4. In the directory $HOME/.local/share/fandango. You can control this location by setting the $XDG_DATA_HOME environment variable; see the XDG Base Directory Specification. On a Mac, the location $HOME/Library/Fandango is searched first.

  5. In one of the system directories /usr/local/share/fandango or /usr/share/fandango. You can control these locations by setting the $XDG_DATA_DIRS environment variable; see the XDG Base Directory Specification. On a Mac, the location /Library/Fandango is searched first.

  6. If the file to be included cannot be found in any of these locations, a FileNotFoundError is raised.

And then, there are two extra rules:

  • If the included file has an absolute path (say, /usr/local/specs/spec.fan), only this absolute path will be used.

  • If the included file has a relative path (say, ../spec.fan), then this relative path will be applied to the locations above. This is mostly useful when you have a path relative to the including file.

Tip

We recommend to store included Fandango specs either

  • in the directory where the including specs are, or

  • in $HOME/.local/share/fandango (or $HOME/Library/Fandango on a Mac).

Finally, keep in mind that include() is a Python function, so in principle, your spec can compute the file name and location in any way you like. The simplest solution, however, is to use one of the “standard” locations as listed above.