fglcomp
The fglcomp tool compiles .4gl source files into .42m p-code modules, and does various other tasks.
Syntax 1: Compiling .4gl sources
fglcomp [
comp-options]
[
prepro-options]
file-list
- In this form, fglcomp compiles the source files(s) to .42m p-code modules.
- comp-options are described in compilation options.
- prepro-options are described in preprocessor options.
- In this form, fglcomp can handle several .4gl sources files as arguments, see file-list.
{
module[.4gl]
|
pattern
|
@argfile
}
[...]
- module.4gl is a source file to compile. The .4gl extension is optional.
- pattern is a
MATCHES
-style pattern to find files, like'[a-z]*.4gl'
. - argfile defines a file that contains a list of .4gl sources to be compiled. Each line must specify a filename or a pattern.
Syntax 2: Produce module dependency rules
fglcomp --dependencies [
prepro-options]
file-list
- In this form,
fglcomp
produces imported module dependency rules. - prepro-options are described in preprocessor options.
- In this form, fglcomp can handle several .4gl sources files as arguments, see file-list.
Syntax 3: Building documentation
fglcomp --build-doc [
doc-options]
[
prepro-options]
module[
.4gl]
- In this form, fglcomp produces source documentation.
- doc-options are described in documentation options.
- prepro-options are described in preprocessor options.
- module.4gl is a source file to process. The .4gl extension is optional.
Syntax 4: Extracting localized strings
fglcomp -m [
prepro-options]
module[
.4gl]
- In this form, fglcomp extracts localized strings from the source.
- prepro-options are described in preprocessor options.
- module.4gl is a source file to process. The .4gl extension is optional.
Syntax 5: Source code formatting
fglcomp --format [
format-options]
module[
.4gl]
- In this form, fglcomp reformats the source file.
- format-options can be any of the formatting options.
- module.4gl is a source file to process. The .4gl extension is optional.
Syntax 6: Add imported module prefixes
fglcomp --qualify-imports [
refact-options]
[
prepro-options]
module[
.4gl]
- In this form, fglcomp adds imported module prefixes to symbols.
- refact-options are described in refactoring options.
- prepro-options are described in preprocessor options.
- module.4gl is a source file to process. The .4gl extension is optional.
Syntax 7: Mark SQL host variables with $
fglcomp --mark-host-variables [
refact-options]
[
prepro-options]
module[
.4gl]
- In this form, fglcomp adds a
$
dollar sign before SQL host variables. - refact-options are described in refactoring options.
- prepro-options are described in preprocessor options.
Syntax 8: Fix symbols character case
fglcomp --fix-case [
refact-options]
[
prepro-options]
module[
.4gl]
- In this form, fglcomp makes symbol match their definition exactly.
- refact-options are described in refactoring options.
- prepro-options are described in preprocessor options.
Syntax 9: Information options
fglcomp info-option
- info-option can be any of the informational options.
Options
Option | Description |
---|---|
-M |
Write error messages to standard output instead of creating a .err error file. |
-k or --keep-going |
When compiling a set of .4gl files passed as arguments, if a source file produces an error, the remaining files are processed. See Compiling several .4gl sources in a single command. |
--make |
Do not recompile .42m modules up-to-date with provided .4gl source. See Compiling in make mode. |
--simulate |
Print the list of .4gl sources that would
be compiled (can be used with or without --make ). See Compiling in make mode. |
-W warning-argument |
Produce warning messages. The possible warning arguments are listed in the table Table 2. The
-W option also supports the negative form of arguments by using the
no- prefix as in: no-return , no-unused ,
no-stdsql . You might need to use these negative forms in order to disable some
warning when using the -W all option:
Switches will be enabled/disabled in the order of appearance in the command line. |
--timestamp |
Add compilation timestamp to build information in 42m header. See 42m module information. |
--omit-source-name |
Omit the source filename in the build information of the 42m header. See 42m module information. |
-o or --output-dir |
Specify the output directory where .42m files must be created. When using packages, the directory structure of sources will be mirrored to the output directory. fglcomp automatically creates the target and intermediate directories if they do not exist. See also Output directory for .42m pcode files. |
--tag=string |
Write a custom string in the build information of the 42m header. See 42m module information. |
--build-rdd |
While compiling, generate the
module.rdd Report Data Definition file (of
REPORT routines). |
--verbose |
Print detailed compilation information. |
--implicit=type |
Specify whether or not to compile imported modules, if the
.42m does not exist, or if the .4gl source is more recent
as the .42m. Here type can be one of:
|
-r or --resolve-calls |
Throw an error on references to undeclared functions.
Each external function must be made known to the compiler by |
--java-option=option |
Passes Java runtime options when initializing the JNI interface. See Java Interface for more details. |
-S |
With this option, fglcomp extracts all Static SQL commands from the source while compiling the source code. |
-W arguement | Included in -W all |
Description |
---|---|---|
all |
N/A | -W all enables all warning flags. |
error |
N/A | -W error makes the compiler stop, if any
warning is raised, as if an error occurred. |
form-field-name |
Yes | -W form-field-name instructs the compiler to
produce warnings for invalid field names used in INPUT BY NAME and
CONSTRUCT BY NAME dialogs, for example with NEXT FIELD . A runtime
error will be raised whenever fglrun executes this code. |
to-err-file |
N/A | -W to-err-file writes warnings to the
.err file when this file is produced. By default warnings go to the
stderr stream. |
unused |
Yes | -W unused displays a message for all declared
symbols not used. Includes function parameters, defined variables, as well as
unused DECLARE and PREPARE statements and unused imported modules. |
unused-parameter |
Yes | -W unused-parameter displays a message for all
unused function parameters. |
return |
Yes | -W return displays a warning if the same function returns different number
of values with several RETURN
statements. |
stdsql |
Yes | -W stdsql displays a message for all
non-portable SQL statements or language instructions. |
colname |
Yes | -W colname displays a message for invalid
column names in static SQL statements, using the current database schema and table names of the
statement. See -W colname usage. |
case |
Yes | -W case displays a message when a symbol does
not match the character case of its definition. See Make symbols case match definition. |
print |
Yes | -W print displays a message when the PRINT instruction is used outside a
REPORT . |
implicit |
Yes | -W implicit warns on references to undeclared
functions. A function is undeclared if not defined in the current module or in any imported module. |
api-doc |
Yes | -W apidoc prints a warning for invalid source
documentation tags when using the --build-doc option. |
unqualified-imports |
No | -W unqualified-imports prints warnings for any
imported symbol that is not prefixed with its module. This warning is not included in -W
all . See Qualifying imported symbols. |
Option | Description |
---|---|
--doc-private |
When using the --build-doc option, include
PRIVATE symbols to the documentation. |
Option | Description |
---|---|
--fo-align-consecutive-assignments= |
Aligns equal signs of consecutive variable assignments. Default is 0 (no alignment) |
--fo-align-consecutive-types= |
Aligns type specification of consecutive variable definitions. Default is 0 (no alignment) |
--fo-align-trailing-comments= |
Aligns consecutive comments. Default is 0 (no alignment) |
--fo-inplace
|
Write formatted output back to the provided file, instead of stdout. Creates a copy of the original file in filename.4gl~ |
--fo-fallback-style=filename
|
Specify the configuration filename to be used if no .fgl-format file is found. |
--fo-column-limit=integer |
Define the source line width limit. Default is 80. |
--fo-indent-width=integer |
Number of columns to use for indentation. Default is 4. |
--fo-continuation-indent-width=integer |
Indent width for line continuations. Default is 4. |
--fo-label-indent=
|
When 1, indent instruction clauses such as WHEN
in a CASE instruction. Default is 1 (enabled). |
--fo-pack=
|
When 1, try to put as many items on the same line as possible. When 0, use one line for each item. Default is 0 (do not pack). |
--fo-lowercase-keywords=
|
When 1, produce lowercase keywords. When 0, produce uppercase keywords. Default is 0 (uppercase). |
--fo-use-tab=
|
When 1, instead of using space characters all over for column
indentation (the default), use tabs to fill whitespace that spans at least from one tab stop to the
next one, based on --fo-tab-width and --fo_indent-width . |
--fo-tab-width=integer
|
Defines the number of columns used for tab stop, when
--fo-use-tab is specified. The default is 8 columns. |
--fo-lines=start-line:end-line
|
Formats only the range of lines specified. This option can be used multiple times to specify several pieces of code to be reformatted. |
Option | Description |
---|---|
-E |
Preprocess only. See Source preprocessor for more details. |
-p option |
Preprocessing control, where option can be one of:
|
-I path |
Provides a single path to search for include files. See Source preprocessor for more details. |
-D
ident |
Defines the macro 'ident' with an optional value (default is 1). See Source preprocessor for more details. |
-U ident |
Undefines the macro 'ident'. See Source preprocessor for more details. |
Option | Description |
---|---|
--inplace |
Instead of writing the refactoring result into stdout, replace the original source file with the refactored code. When using this option, fglcomp makes a copy of the original source, using the .4gl~ file extension. |
Option | Description |
---|---|
-V or --version |
Displays version information. |
-h or --help |
Displays options for the tool. |
-i |
Displays information about the current locale / character set settings. See Application locale. |
Usage
fglcomp customers.4gl
If a compilation error occurs, the compiler generates an error file with an
.err extension. The error file contains the original source code with
error messages. Use the option -M
to display the error messages to standard
error instead of producing the .err file.