summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_model_base.eo
blob: 2dfa99aed5d3b20397c6cb966b23693749ce9306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
enum Efl.Model.Load_Status {
     error = 0,
     loading_properties = (1 << 0),
     loading_children =   (1 << 1),
     loading = (1 << 0) | (1 << 1),

     loaded_properties = (1 << 2),
     loaded_children =   (1 << 3),
     loaded = (1 << 2) | (1 << 3),

     unloading = (1 << 4),
     unloaded = (1 << 5)
}

struct Efl.Model.Property_Event {
     changed_properties: array<const(char) *> *; [[List of changed properties]]
     invalidated_properties: array<const(char) *> *; [[Removed properties identified by name]]
}

struct Efl.Model.Load {
     [[Structure to hold Efl_Model_Load_Status enum (and possible other data) to avoid ABI break.]]

     status: Efl.Model.Load_Status;
}

interface Efl.Model.Base ()
{
   legacy_prefix: null;
   eo_prefix: efl_model;
      methods {
         @property load_status {
            get {
               [[Get a load emodel current status.

                 By convention this means get the current model status.
                 Possible values are defined Efl_Model_Load_Status enumerator.

                 See also \@ref Efl_Model_Load_Status, @.load

                 @since 1.14
               ]]
               return: Efl.Model.Load_Status;
            }
         }
         @property properties {
            get {
               [[Get properties from model.

                 properties_get is due to provide callers a way the fetch the
                 current properties implemented/used by the model. The event
                 EFL_MODEL_EVENT_PROPERTIES_CHANGE will be raised to notify
                 listeners of any modifications in the properties.

                 See also \@ref EFL_MODEL_EVENT_PROPERTIES_CHANGE.

                 @since 1.14
               ]]
               return: Efl.Model.Load_Status;
         }
         values {
               properties: const(array<const(char*)>*); [[array of current properties]]
            }
        }
         @property property {
            set {
               [[Set a property value of a given property name.

                 The caller must ensure to call at least efl_model_prop_list
                 before being able to see/set properties. This function sets
                 a new property value into given property name. Once the
                 operation is completed the concrete implementation should
                 raise EFL_MODEL_EVENT_PROPERTIES_CHANGE event in order to
                 notify listeners of the new value of the property.

                 If the model doesn't have the property then there are two
                 possibilities, either raise an error or create the new
                 property in model

                 See @.property.get, \@ref EFL_MODEL_EVENT_PROPERTIES_CHANGE

                 @since 1.14
               ]]
               return: Efl.Model.Load_Status;
            }
            get {
               [[Retrieve the value of a given property name.

                 property_get will only be available when load status is equal
                 to EFL_MODEL_LOAD_STATUS_LOADED.

                 At this point the caller is free to get values from properties.
                 The event EFL_MODEL_EVENT_PROPERTIES_CHANGE may be raised to
                 notify listeners of the property/value.

                 See @.properties.get, \@ref EFL_MODEL_EVENT_PROPERTIES_CHANGE

                 @since 1.14
               ]]
               return: Efl.Model.Load_Status;
            }
            keys {
               property: const(char)*; [[Property name]]
            }
            values {
               value: const(generic_value)*; [[New value]]
            }
         }
         @property children_slice {
            get {
               /* doc FIXME: example
                 Below are examples of both usage types: slices and full ranges.
               @code

               // Returns full list
               eo_do(obj, efl_model_children_slice_get(0, 0, &children_accessor));

               // Returns 5 items, counting from item #5
               eo_do(obj, efl_model_children_slice_get(5, 5, &children_accessor));

               @endcode
               */
               [[Get children slice OR full range.

                 Before being able to get the children list the model status
                 must be on loaded status (EFL_MODEL_LOAD_STATUS_LOADED).
                 However there may be circunstancies where the model could be
                 in a different state, in such cases it is advisable to simply
                 return: its current state, which will be of course, different
                 than EFL_MODEL_LOAD_STATUS_LOADED_CHILDREN.

                 When children accessor is returned as NULL one should then
                 test the current load status return:ed by @.children_slice.get
                 in order to check against an empty list or real error.

                 children_slice_get behaves in two different ways, it may
                 provide the slice if both $start AND $count are non-zero
                 OR full range otherwise.

                 The return:ed Eina_Accessor must be freed when it is no longer
                 needed and eo_unref() must be invoked for children if caller
                 wants a copy.

                 Since 'slice' is a range, for example if we have 20 childs a
                 slice could be the range from 3(start) to 4(count), see:

                 child 0  [no]
                 child 1  [no]
                 child 2  [yes]
                 child 3  [yes]
                 child 4  [yes]
                 child 5  [yes]
                 child 6  [no]
                 child 7  [no]

                 Optionally the user can call children_count_get to know the
                 number of children so a valid range can be known in advance.

                 See @.children_count.get, @.load, @.load_status.get.

                 @since 1.14
               ]]
               return: Efl.Model.Load_Status;
            }
            keys {
                start: uint; [[Range begin - start from here. If start and
                               count are 0 slice is ignored.]]
                count: uint; [[Range size. If count and start are 0 slice is
                               ignored.]]
            }
            values {
                children_accessor: accessor<list<Eo.Base*>*>*;
            }
         }
         @property children_count {
             get {
                [[Get children count.

                  When efl_model_load is completed efl_model_coildren_count_get
                  can be use to get the number of children. children_count_get
                  can also be used before calling children_slice_get so a valid
                  range is known. Event EFL_MODEL_CHILDREN_COUNT_CHANGED is
                  emitted when count is finished.

                  See also @.children_slice.get, @.load, @.load_status.get.

                  @since 1.14
                ]]
                return: Efl.Model.Load_Status;
             }
            values {
                children_count: uint;
            }
         }
         load {
            [[Load emodel.

              By convention this means loading data from an external source and
              populating the models properties and children with it. For example
              in the case of file system backed model, this means opening the
              relevant files and reading the data from them(creating the
              properties and children from it). the model emit
              EFL_MODEL_EVENT_LOAD_STATUS after end with Efl_Model_Load_Status

              This convention should be followed, but no guarantees of behaviour
              by user defined types can be given.

              Alternatively is possible to use properties_load to load only
              properties and children_load to load only children. If
              efl_model_load is called then calling properties_load
              and/or children_load is not necessary.

              See also \@ref Efl_Model_Load_Status, @.properties_load,
              @.children_load, @.unload, @.load_status.get

              @since 1.14
            ]]
         }
         unload {
            [[Unload emodel.

              By convention this means releasing data received/read from an
              external source. For example of a database backed model this
              might mean releasing the iterator for the currently loaded data
              or deleting a temporary table. the model emit
              EFL_MODEL_EVENT_LOAD_STATUS after end with model load status

              This convention should be followed, but no guarantees of behaviour
              by user defined types can be given.

              See also \@ref Efl_Model_Load_Status, @.load,  @.load_status.get

              @since 1.14
            ]]
         }
         properties_load {
            [[Properties emodel load.

              By convention this means loading data from an external source and
              populating the models properties only. This method is a subset
              of @.load, meaning that it won't load children, it is a hint.
              For loadind both properties and children use
              efl_model_load instead.

              @since 1.14
            ]]
         }
         children_load {
            [[Children emodel load.

              By convention this means loading data from an external source and
              populating the models children only. This method is a subset of
              @.load, meaning that it won't load properties. For loadind both
              properties and children use efl_model_load instead.

              @since 1.14
            ]]
         }
         child_add {
            [[Add a new child.

              Add a new child, possibly dummy, depending on the implementation,
              of a internal keeping. When the child is effectively
              added the event \@ref EFL_MODEL_EVENT_CHILD_ADD is then raised
              and the new child is kept along with other children.

              See also @.load_status.get.

              @since 1.14
            ]]
            return: Eo.Base *;
         }
         child_del {
            [[Remove a child.

              Remove a child of a internal keeping. When the child is effectively
              removed the event \@ref EFL_MODEL_EVENT_CHILD_REMOVED is then
              raised to give a chance for listeners to perform any cleanup
              and/or update references.

              @since 1.14
            ]]
            return: Efl.Model.Load_Status;
            params {
               @in child: Eo.Base*; [[Child to be removed]]
            }
         }
      }

   events {
      load,status: Efl.Model.Load_Status; [[Event dispatch when load status
                                            changes]]
      properties,changed: Efl.Model.Property_Event; [[Event dispatched when
                                                      properties list is
                                                      available.]]
      child,added; [[Event dispatched when new child is added.]]
      child,removed; [[Event dispatched when child is removed.]]
      children,count,changed; [[Event dispatched when children count is finished.]]
   }
}