summaryrefslogtreecommitdiff
path: root/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js
blob: 9362ef7687abecb8587930745b405faa97f5eb71 (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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/*
 * Copyright:
 *   (C) 2006 by Derrell Lipman
 *       All rights reserved
 *
 * License:
 *   LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/
 */

/**
 * Swat LDB Browser class finite state machine
 */
qx.OO.defineClass("swat.module.ldbbrowse.Fsm", swat.module.AbstractModuleFsm,
function()
{
  swat.module.AbstractModuleFsm.call(this);
});


qx.Proto.buildFsm = function(module)
{
  var fsm = module.fsm;

  /*
   * State: Idle
   *
   * Actions upon entry
   *   - if returning from RPC, display the result
   *
   * Transition on:
   *   "execute" on find button
   *   "treeopenwhileempty" on tree
   *   "changeselection" on tree
   */
  var state = new qx.util.fsm.State(
    "State_Idle",
    {
      "onentry" :
        function(fsm, state)
        {
          // Did we just return from an RPC request?
          if (fsm.getPreviousState() == "State_AwaitRpcResult")
          {
            // Yup.  Display the result.  We need to get the request object
            var request = fsm.getObject("swat.module.fsmUtils.request");

            // We don't need the request object to be saved any more
            fsm.removeObject("swat.module.fsmUtils.request");

            // Display the result
            var gui = swat.module.ldbbrowse.Gui.getInstance();
            gui.displayData(module, request);

            // Dispose of the request
            request.dispose();
            request = null;
          }
        },

      "events" :
        {
          // If the find button is activated, issue a find request
          "execute" :
          {
            "find" :
              "Transition_Idle_to_AwaitRpcResult_via_find"
          },

          // If a previously unexpanded tree node is expanded, issue a request
          // to retrieve its contents.
          "treeOpenWhileEmpty":
          {
            "tree" :
              "Transition_Idle_to_AwaitRpcResult_via_tree_open"
          },

          // If the selection changes, issue a request to retrieve contents to
          // populate the attribute/value table.
          "changeSelection":
          {
            "tree:manager" :
              "Transition_Idle_to_AwaitRpcResult_via_tree_selection_changed",

            "dbName":
              "Transition_Idle_to_AwaitRpcResult_via_db_changed"
          }
        }
    });

  // Replace the initial Idle state with this one
  fsm.replaceState(state, true);
  
  /*
   * Transition: Idle to AwaitRpcResult
   *
   * Cause: "execute" on find button
   *
   * Action:
   *  Issue a search request
   */
  var trans = new qx.util.fsm.Transition(
    "Transition_Idle_to_AwaitRpcResult_via_find",
    {
      "nextState" :
        "State_AwaitRpcResult",

      "ontransition" :
        function(fsm, event)
        {
          // Obtain the RPC object
          var rpc = fsm.getObject("swat.module.rpc");

          // Get our module descriptor
          var module = fsm.getObject("swat.module.module");

          // Retrieve the database handle
          var dbHandle = module.dbHandle;

          // Retrieve the search expression
          var searchExpr = fsm.getObject("searchExpr").getValue();

          // Retrieve the base DN
          var baseDN = fsm.getObject("baseDN").getValue();

          // Retrieve the selected scope
          var scope = fsm.getObject("scope").getSelected().getValue();

          // We want all attributes
          var attributes = [ "*" ];

          rpc.setServiceName("samba.ldb");
          var request = rpc.callAsyncListeners(true, // coalesce failure events
                                               "search",
                                               dbHandle,
                                               searchExpr,
                                               baseDN,
                                               scope,
                                               attributes);

          // When we get the result, we'll need to know what type of request
          // we made.
          request.setUserData("requestType", "find");

          // Save the request object
          fsm.addObject("swat.module.fsmUtils.request", request);
        }
    });
  state.addTransition(trans);

  /*
   * Transition: Idle to AwaitRpcResult
   *
   * Cause: "treeOpenWhileEmpty" on tree
   *
   * Action:
   *  Issue a search request
   */
  var trans = new qx.util.fsm.Transition(
    "Transition_Idle_to_AwaitRpcResult_via_tree_open",
    {
      "nextState" :
        "State_AwaitRpcResult",

      "ontransition" :
        function(fsm, event)
        {
          var parent = event.getData();
          var hierarchy = parent.getHierarchy(new Array());

          parent.debug("Requesting children...");

          // Strip off the root node
          hierarchy.shift();

          // Get the tree object
          var tree = fsm.getObject("tree");

          // Determine the children.  Differs depending on root or otherwise
          var attributes;
          var scope;
          var baseDN;
            
          // If parent is the root...
          if (parent == tree)
          {
            // ... then we want the defaultNamingContext, ...
            attributes = [ "defaultNamingContext" ];

            // ... and we want only base scope
            scope = "base";

            // ... and an empty base DN
            baseDN = "";
          }
          else
          {
            // otherwise, retrieve the DN,
            attributes = [ "dn" ];

            // ... and we want one level of scope
            scope = "one";

            // ... and base DN is the parent
            baseDN = hierarchy.reverse().join(",");
          }

          // Build the search expression
          var searchExpr = "(objectclass=*)";

          // Obtain the RPC object
          var rpc = fsm.getObject("swat.module.rpc");

          // Get our module descriptor
          var module = fsm.getObject("swat.module.module");

          // Retrieve the database handle
          var dbHandle = module.dbHandle;

          rpc.setServiceName("samba.ldb");
          var request = rpc.callAsyncListeners(true, // coalesce failure events
                                               "search",
                                               dbHandle,
                                               searchExpr,
                                               baseDN,
                                               scope,
                                               attributes);

          // When we get the result, we'll need to know what type of request
          // we made.
          request.setUserData("requestType", "tree_open");

          // We'll also need some of our parameters
          request.setUserData("parent", parent);
          request.setUserData("attributes", attributes);

          // Save the request object
          fsm.addObject("swat.module.fsmUtils.request", request);
        }
    });
  state.addTransition(trans);

  /*
   * Transition: Idle to AwaitRpcResult
   *
   * Cause: "changeSelection" on tree
   *
   * Action:
   *  Issue a search request
   */
  var trans = new qx.util.fsm.Transition(
    "Transition_Idle_to_AwaitRpcResult_via_tree_selection_changed",
    {
      "nextState" :
        "State_AwaitRpcResult",

      "predicate" :
        function(fsm, event)
        {
          var element = event.getData()[0];
          var hierarchy = element.getHierarchy(new Array());

          // Strip off the root node
          hierarchy.shift();

          // Get the tree object
          var tree = fsm.getObject("tree");

          // If element is the root...
          if (element == tree)
          {
            // ... then just clear out the attribute/value table.
            var tableModel = fsm.getObject("tableModel:browse");
            tableModel.setData([]);
            return null;        // don't search additional transitionis
          }

          return true;
        },

      "ontransition" :
        function(fsm, event)
        {
          var element = event.getData()[0];
          var hierarchy = element.getHierarchy(new Array());

          // Strip off the root node
          hierarchy.shift();

          // Get the tree object
          var tree = fsm.getObject("tree");

          // Determine the children.  Differs depending on root or otherwise
          var attributes;
          var scope;
          var baseDN;
            
          // We want all attributes
          attributes = [ "*" ];

          // We want the attributes only for the current element
          scope = "base";

          // Base DN is the current element
          baseDN = hierarchy.reverse().join(",");

          // Build the search expression
          var searchExpr = "(objectclass=*)";

          // Obtain the RPC object
          var rpc = fsm.getObject("swat.module.rpc");

          // Get our module descriptor
          var module = fsm.getObject("swat.module.module");

          // Retrieve the database handle
          var dbHandle = module.dbHandle;

          rpc.setServiceName("samba.ldb");
          var request = rpc.callAsyncListeners(true, // coalesce failure events
                                               "search",
                                               dbHandle,
                                               searchExpr,
                                               baseDN,
                                               scope,
                                               attributes);

          // When we get the result, we'll need to know what type of request
          // we made.
          request.setUserData("requestType", "tree_selection_changed");

          // Save the request object
          fsm.addObject("swat.module.fsmUtils.request", request);
        }
    });
  state.addTransition(trans);

  /*
   * Transition: Idle to AwaitRpcResult
   *
   * Cause: "changeSelection" on dbName
   *
   * Action:
   *  Issue a connect request
   */
  var trans = new qx.util.fsm.Transition(
    "Transition_Idle_to_AwaitRpcResult_via_db_changed",
    {
      "nextState" :
        "State_AwaitRpcResult",

      "ontransition" :
        function(fsm, event)
        {
          // Obtain the RPC object
          var rpc = fsm.getObject("swat.module.rpc");

          // Obtain the name of the database to be connected to
          var dbName = fsm.getObject("dbName").getValue();

          rpc.setServiceName("samba.ldb");
          var request = rpc.callAsyncListeners(true, // coalesce failure events
                                               "connect",
                                               dbName);

          // When we get the result, we'll need to know what type of request
          // we made.
          request.setUserData("requestType", "database_name_changed");

          // Save the request object
          fsm.addObject("swat.module.fsmUtils.request", request);
        }
    });
  state.addTransition(trans);

  // Add the AwaitRpcResult state and all of its transitions
  this.addAwaitRpcResultState(module);
};


/**
 * Singleton Instance Getter
 */
qx.Class.getInstance = qx.util.Return.returnInstance;