Saltar para o conteúdo principal
Versão: Próximo

Compile project

Compile project {( {projectFile}{;}{options} )} : Object

ParâmetroTipoDescrição
projectFile4D. FileArquivo .4DProject para compilar
optionsObjectObjeto que especifica as opções de compilação
ResultadoObjectObjeto contendo informações sobre o estado de compilação

Esse comando não é thread-safe, não pode ser usado em código preventivo.

História
ReleaseMudanças
20 R8Suporte do type "formObjectExpression"

Descrição

Compile project permite que você compile o projeto host atual ou o projeto especificado no parâmetro projectFile. Para obter mais informações sobre a compilação, verifique a página de compilação.

Por padrão, o comando usa as opções do compilador definidas nas Configurações da estrutura. Você pode substituí-los passando um parâmetro options. As seguintes sintaxes são suportadas:

  • Compile project(): compila o projeto aberto usando as opções definidas nas Configurações da Estrutura
  • Compile project(options): compiles the opened project. The options defined override the Structure Settings
  • Compile project(projectFile): compiles the projectFile 4DProject using the options defined in the Structure Settings
  • Compile project(projectFile; options): compiles the projectFile 4DProject and the options defined override the Structure Settings

Note: Binary databases cannot be compiled using this command.

Unlike the Compiler window, this command requires that you explicitly designate the component(s) to compile. When compiling a project with Compile project, you need to declare its components using the components property of the options parameter. Keep in mind that the components must already be compiled (binary components are supported).

The resulting compiled code will be stored in the DerivedData or Libraries folder of the project, depending on the targets property of the options parameter. If you want to create .4dz files, you still need to manually zip the compiled project or use the build application feature.

If you pass an empty collection in targets, Compile project will execute a syntax check without compiling.

Compilation errors, if any, are returned as objects in the errors collection.

Note: You cannot call this command when another compilation is running (for example, a compilation launched from the Compilation window).

Parâmetro opções

The options parameter is an object. Here are the available compilation options:

PropriedadeTipoDescription
componentsCollectionColeção de objetos 4D.File para componentes dependentes (deve já estar compilado)
defaultTypeForButtonsIntegerPossible value: Is real or Is longint
defaultTypeForNumericsIntegerPossible value: Is real or Is longint
generateSymbolsParâmetrosTrue to generate symbol information in the .symbols returned object
generateSyntaxFileParâmetrosTrue to generate a syntax file for code completion.md#generate-syntax-file-for-code-completion-when-compiled) in the \Resources\en.lproj folder of the project
generateTypingMethodsText"reset" or "append" to generate typing methods. If value is "append", existing variable declarations won't be modified (compiler window behavior). If value is "reset" existing variable declarations are removed beforehand.
pluginsObjeto 4D.FolderPlug-ins folder to be used instead of the Plugins folder of the current project. This property is only available with the projectFile syntax.
targetsColeção de stringsPossible values: "x86_64_generic", "arm64_macOS_lib". Pass an empty collection to execute syntax check only
typeInferenceText"all": The compiler deduces the types of all variables not explicitly declared, "locals": The compiler deduces the types of local variables not explicitly declared, "none": All variables must be explicitly declared in the code (legacy mode), "direct": All variables must be explicitly declared in the code (direct typing).
warningsUma coleção de objetosDefine o estado dos avisos
[].majorNumberWarning main number, before the dot
[].minorNumberWarning second number, after the dot
[].enabledParâmetrosWarning activation state

Note: When the warnings attribute is not defined in the options object, the Compile project command uses the default warning generation statuses defined in the settings.

Resultado

The object returned by Compile project has up to three properties:

PropriedadeTipoDescription
successParâmetrosTrue se a ação salvar tiver sucesso, senão False
errorsUma coleção de objetosAvailable only in case of error or warning. Collection of objects describing compilation errors or warnings
[].isErrorParâmetrosError if True, warning otherwise
[].messageTextMensagem de erro
[].codeObjectobjeto código
[].lineNumberLine number of error in the code. For class methods, line number in the function
[].lineInFileNumberLine number in the file (different from "line" for class methods, and takes into account the %attributes prefix line)
symbolsObjectAvailable only if generateSymbols option is set to True:
symbols.interprocessVariablesObjectList of all interprocess variables
symbols.interprocessVariables.variablesCollectionColeção de objetos variáveis
symbols.interprocessVariables.sizeNumber
symbols.processVariablesObjectList of all process variables
symbols.processVariables.variablesCollectionColeção de objetos variáveis
symbols.processVariables.sizeNumber
symbols.localVariablesUma coleção de objetosList of local variables per method
symbols.localVariables[].codeObjectobjeto código
symbols.localVariables[].variablesCollectionColeção de objetos variáveis
symbols.methodsUma coleção de objetosLista de métodos
symbols.methods[].codeObjectobjeto código
symbols.methods[].callCountNumberNumber of times this method has been called
symbols.methods[].paramsCollectionCollection of parameter types (Value type numerical codes)
symbols.methods[]. threadSafeParâmetrosIndicates if this method is thread safe

Para obter mais informações, consulte Ferramentas de compilação.

variable objects

interprocessVariables.variables and processVariables.variables contain objects with the following structure:

PropriedadeTipoDescription
nameTextName of the variable
typenumberType of the variable (like Value type command)
arrayDimensionnumberFor arrays only: 1 for mono dimension arrays, 2 for two-dimension arrays
codeObjectFor process and interprocess variables: descriptor of where the variable has been defined
code object

The code property in methods.code and errors.code is an object with the following properties:

PropriedadeTipoDescription
typeText"projectMethod", "formObjectMethod", "formMethod", "databaseMethod", "triggerMethod", "executeOnServer" (when calling a project method with the Execute on Server attribute), "executeFormula" (when executing a formula via PROCESS 4D TAGS or evaluation of a formula in a 4D Write Pro document), "class", "classFunction", "formObjectExpression" (for errors occuring in expressions associated to form objects)
pathTextMethod path (same format as METHOD OPEN PATH)
file4D. FileMethod file
Returned depending on the value of the type property:
methodNameTextMétodos proyecto
tableNumberNumber of the table (returned for a trigger, a table form method or a table form object method)
formNameTextForm name (returned for a form method)
objectNameTextForm object name (returned for an object method)
Esta propriedade só está disponível quando não estiver selecionado tema de fonte.TextForm object property name (returned for a form object expression)
classNameTextClass name
functionNameTextNome da função de classe
databaseMethodNumberDatabase method index

Exemplos

To perform a syntax check only, pass an empty collection to the targets parameter:

 var $status : Object
var $options:={}
$options.targets:=New collection //Empty collection for syntax checking
$status:=Compile project($options)

Compile the current project using the compiler options of the Structure Settings only:

 var $status : Object
$status:=Compile project

On a Silicon Mac, compile the current project to ARM only:

 var $status : Object
var $options:={}
$options.targets:=New collection("arm64_macOS_lib")
$status:=Compile project($options)

Compile a project other than the current project:

 var $status : Object
var $projectFile: 4D.File
$projectFile:=Folder(fk documents folder).file("Databases/myApp/Project/myApp.4DProject")
$status:=Compile project($projectFile)

Compile a project and declare its component:

 var $status : Object
var $component : 4D.File
var $options:={}
$component:=Folder(fk documents folder).file("Components/myComponent.4dz")
$options.components:=New collection($component)
$status:=Compile project($options)

Disable warnings 518.1 and 518.2 when compiling your project:

var $options:={}
$options.warnings:=[]$options.warnings.push({major: 518; minor: 1; enabled: False})
$options.warnings.push({major: 518; minor: 2; enabled: False})
var $result:=Compile project($options)

Veja também

BUILD APPLICATION