00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef NTG_MODEL_H
00026 #define NTG_MODEL_H
00027
00028 #ifdef __cplusplus
00029 extern "C" {
00030 #endif
00031
00032 #include <time.h>
00033 #include "Integra/integra_core_schema.h"
00034 typedef struct _ntg_model ntg_model;
00035
00036 struct _ntg_model {
00037 ntg_license **licenses;
00038 ntg_default_value **default_values;
00039 ntg_attribute **attributes;
00040 ntg_module_attribute **module_attributes;
00041 ntg_permission **permissions;
00042 ntg_user **users;
00043 ntg_software **softwares;
00044 ntg_definition **definitions;
00045 ntg_group_permission **group_permissions;
00046 ntg_group **groups;
00047 ntg_legal_value **legal_values;
00048 ntg_attribute_unit **attribute_units;
00049 ntg_control_attribute **control_attributes;
00050 ntg_attribute_scale **attribute_scales;
00051 ntg_user_group **user_groups;
00052 ntg_implementation_dependency **implementation_dependencys;
00053 ntg_attribute_type **attribute_types;
00054 ntg_tag **tags;
00055 ntg_value_label **value_labels;
00056 ntg_attribute_scope **attribute_scopes;
00057 ntg_database **databases;
00058 ntg_target **targets;
00059 ntg_control_class **control_classs;
00060 ntg_definition_tag **definition_tags;
00061 ntg_uri **uris;
00062 ntg_implementation **implementations;
00063
00064 int n_licenses;
00065 int n_default_values;
00066 int n_attributes;
00067 int n_module_attributes;
00068 int n_permissions;
00069 int n_users;
00070 int n_softwares;
00071 int n_definitions;
00072 int n_group_permissions;
00073 int n_groups;
00074 int n_legal_values;
00075 int n_attribute_units;
00076 int n_control_attributes;
00077 int n_attribute_scales;
00078 int n_user_groups;
00079 int n_implementation_dependencys;
00080 int n_attribute_types;
00081 int n_tags;
00082 int n_value_labels;
00083 int n_attribute_scopes;
00084 int n_databases;
00085 int n_targets;
00086 int n_control_classs;
00087 int n_definition_tags;
00088 int n_uris;
00089 int n_implementations;
00090
00091 int allocated_licenses;
00092 int allocated_default_values;
00093 int allocated_attributes;
00094 int allocated_module_attributes;
00095 int allocated_permissions;
00096 int allocated_users;
00097 int allocated_softwares;
00098 int allocated_definitions;
00099 int allocated_group_permissions;
00100 int allocated_groups;
00101 int allocated_legal_values;
00102 int allocated_attribute_units;
00103 int allocated_control_attributes;
00104 int allocated_attribute_scales;
00105 int allocated_user_groups;
00106 int allocated_implementation_dependencys;
00107 int allocated_attribute_types;
00108 int allocated_tags;
00109 int allocated_value_labels;
00110 int allocated_attribute_scopes;
00111 int allocated_databases;
00112 int allocated_targets;
00113 int allocated_control_classs;
00114 int allocated_definition_tags;
00115 int allocated_uris;
00116 int allocated_implementations;
00117 };
00118
00119 enum ntg_attribute_types_ {
00120 NTG_INTEGER,
00121 NTG_FLOAT,
00122 NTG_STRING,
00123 NTG_BLOB,
00124 NTG_NIL,
00125 };
00126
00127 enum ntg_attribute_units_ {
00128 NTG_NONE,
00129 NTG_HERTZ,
00130 NTG_MIDICENT,
00131 NTG_DBFS,
00132 NTG_DEGREE,
00133 NTG_RADIAN,
00134 NTG_SECOND,
00135 NTG_METRE,
00136 };
00137
00138 enum ntg_attribute_scopes_ {
00139 NTG_VISIBLE,
00140 NTG_HIDDEN,
00141 NTG_INPUT,
00142 NTG_OUTPUT,
00143 };
00144
00145 int ntg_populate(char *base_url, ntg_model *model);
00146
00147 #ifdef __cplusplus
00148 }
00149 #endif
00150
00151 #endif
00152