ACF core principles: Difference between revisions
m (Reverted edits by 165.228.128.11 (Talk); changed back to last version by Nangel) |
No edit summary |
||
Line 14: | Line 14: | ||
! Field !! Default !! Description | ! Field !! Default !! Description | ||
|- | |- | ||
|value || | |value || "" || The value of the cfe (e.g. the ip address, hostname, password, etc.) | ||
|- | |- | ||
|type || text || The type of entity (see below) | |type || "text" || The type of entity (see below) | ||
|- | |- | ||
| | |label || "" || User-readable label for the value | ||
|} | |} | ||
The reason for having these fields pre-defined is to allow models,controllers and views to use the indexes without having to first check if they exist. For example the entity will always have a value and type. | The reason for having these fields pre-defined is to allow models,controllers and views to use the indexes without having to first check if they exist. For example the entity will always have a value and type. | ||
cfe's can have other fields, or | cfe's can have other fields. Some common fields that may, or may not, be present: | ||
:mycfe = cfe({label=" | {| border=1 | ||
! Field !! Description | |||
|- | |||
|errtxt || Text explaining why validation failed | |||
|- | |||
|option || A list of options for this value | |||
|- | |||
|descr || User-readable description for the value | |||
|} | |||
To set fields or overwrite field defaults, specify a table in the argument list to the cfe constructor: | |||
:mycfe = cfe({label="User", value="asdf", errtxt="Invalid User"}) | |||
is equivalent to | is equivalent to | ||
:mycfe = { | :mycfe = {label="User", value="asdf", type="text", errtxt="Invalid User"} | ||
== cfe types == | == cfe types == | ||
Line 45: | Line 55: | ||
| select || a select list || ''value'' is the currently selected item <br>''option'' is a table of select options | | select || a select list || ''value'' is the currently selected item <br>''option'' is a table of select options | ||
|- | |- | ||
| | | multi || a multi-select list || ''value'' is a table of selected items <br>''option'' is a table of select options | ||
|- | |- | ||
| | | list || a list || ''value'' is a table of items | ||
|- | |- | ||
| | | boolean || true or false || | ||
|- | |- | ||
| raw || raw binary data || | | raw || raw binary data || | ||
|- | |- | ||
| | | function || a function || ''value'' is a function (generally used for iterators returning very large data) | ||
|- | |- | ||
| form || a set of cfe's that make up a form || ''value'' is a table of cfes | | form || a set of cfe's that make up a form || ''value'' is a table of cfes that make up a form (the table should be name-indexed) | ||
|- | |- | ||
| group || a set of cfe's that make up an anonymous group || ''value'' is a table of grouped cfes (can be used | | group || a set of cfe's that make up an anonymous group || ''value'' is a table of grouped cfes (can be used to pass several items to a view) | ||
|} | |} | ||
Revision as of 15:56, 15 May 2008
While the mvc.lua code provides a generic framework for any lua "mvc"-based appliction, "acf" is the component that makes the mvc.lua framework into a configuration Application. Some ideas and rationales for application-wide settings are discussed here.
Use of cfe
A cfe (Configuration Framework Entity) is a way to pass data between a model,controller and view in a common way. There are many ways to do this (e.g. closures, AKClass); use of cfe is an arbitrary decision just to keep development moving forward.
A cfe is a table with some fields guaranteed to exist. It is also a way to abstract user-modifiable data from view-centric html input types. ACF isn't necessarily web-only. With a different controller and views, it could be cli (or gui?!)
Fields in all cfes
cfe's are constructed from a function in acf-controller.lua that returns an anonymous table with the following fields
Field | Default | Description |
---|---|---|
value | "" | The value of the cfe (e.g. the ip address, hostname, password, etc.) |
type | "text" | The type of entity (see below) |
label | "" | User-readable label for the value |
The reason for having these fields pre-defined is to allow models,controllers and views to use the indexes without having to first check if they exist. For example the entity will always have a value and type.
cfe's can have other fields. Some common fields that may, or may not, be present:
Field | Description |
---|---|
errtxt | Text explaining why validation failed |
option | A list of options for this value |
descr | User-readable description for the value |
To set fields or overwrite field defaults, specify a table in the argument list to the cfe constructor:
- mycfe = cfe({label="User", value="asdf", errtxt="Invalid User"})
is equivalent to
- mycfe = {label="User", value="asdf", type="text", errtxt="Invalid User"}
cfe types
The type field of a cfe can be one of the following:
type | Description | Modifiers |
---|---|---|
text | a text field, typically one line of text | |
longtext | a multi-line text field, like a textarea | |
select | a select list | value is the currently selected item option is a table of select options |
multi | a multi-select list | value is a table of selected items option is a table of select options |
list | a list | value is a table of items |
boolean | true or false | |
raw | raw binary data | |
function | a function | value is a function (generally used for iterators returning very large data) |
form | a set of cfe's that make up a form | value is a table of cfes that make up a form (the table should be name-indexed) |
group | a set of cfe's that make up an anonymous group | value is a table of grouped cfes (can be used to pass several items to a view) |
Use of CRUD
CRUD stands for Create Read Update Delete. Where possible, ACF models/controllers should follow this pattern. To help reuse of code, the functions in models and controllers should have one of Cread Read Update or Delete in their names (create_interface_by_name, update_hostname, delete_package, read_timezone, etc.)
Use of cmd
The use of a standard "do this" cfe in all acf controllers may also allow more reuse. It is suggested to use "cmd" as the name of this cfe, with the value being the command to perform.
The Model defines the object set
The model is responsible for writing and reading from the running system. The model also does not need to know which part of a specific acf module it is running under. It is not mandatory that the model be lua "oop" as the rest of the system is. (the model may not have any need to know "self")
Since the model can choose how much or how little of the system to expose, the basic data set should be defined in the model (perhaps as a constructor function)