mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
01.51.2014 02bbeacbfb05101989dac510cbef7815fdf28a2e
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
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
 * or http://forgerock.org/license/CDDLv1.0.html.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at legal-notices/CDDLv1_0.txt.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information:
 *      Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 */
package org.opends.server.core;
import org.opends.messages.Message;
import org.opends.messages.MessageBuilder;
 
 
import org.opends.server.types.ResultCode;
 
 
/**
 * This class implements the workflow result code. The workflow result code
 * contains an LDAP result code along with an LDAP error message.
 */
public class WorkflowResultCode
{
  // The global result code.
  private ResultCode resultCode = ResultCode.UNDEFINED;
 
  // The global error message.
  private MessageBuilder errorMessage = new MessageBuilder(Message.EMPTY);
 
 
  /**
   * Creates a new instance of a workflow result. By default the result code
   * is set to UNDEFINED and there is no error message.
   */
  public WorkflowResultCode()
  {
    // Nothing to implement.
  }
 
 
  /**
   * Creates a new instance of a workflow result code and initializes it
   * with a result code and an error message.
   *
   * @param resultCode    the initial value for the result code
   * @param errorMessage  the initial value for the error message
   */
  public WorkflowResultCode(
      ResultCode     resultCode,
      MessageBuilder errorMessage
      )
  {
    this.resultCode   = resultCode;
    this.errorMessage = errorMessage;
  }
 
 
  /**
   * Elaborates a global result code. A workflow may execute an operation
   * on several subordinate workflows. In such case, the parent workflow
   * has to take into account all the subordinate result codes to elaborate
   * a global result code.
   *
   * Sometimes, a referral result code has to be turned into a reference
   * entry. When such case is occurring the elaborateGlobalResultCode method
   * will return true.
   *
   * The global result code is elaborated as follows:
   *
   * <PRE>
   *  -----------+------------+------------+-------------------------------
   *  new        | current    | resulting  |
   *  resultCode | resultCode | resultCode | action
   *  -----------+------------+------------+-------------------------------
   *  SUCCESS      NO_SUCH_OBJ  SUCCESS      -
   *               REFERRAL     SUCCESS      send reference entry to client
   *               other        [unchanged]  -
   *  ---------------------------------------------------------------------
   *  NO_SUCH_OBJ  SUCCESS      [unchanged]  -
   *               REFERRAL     [unchanged]  -
   *               other        [unchanged]  -
   *  ---------------------------------------------------------------------
   *  REFERRAL     SUCCESS      [unchanged]  send reference entry to client
   *               REFERRAL     SUCCESS      send reference entry to client
   *               NO_SUCH_OBJ  REFERRAL     -
   *               other        [unchanged]  send reference entry to client
   *  ---------------------------------------------------------------------
   *  others       SUCCESS      other        -
   *               REFERRAL     other        send reference entry to client
   *               NO_SUCH_OBJ  other        -
   *               other2       [unchanged]  -
   *  ---------------------------------------------------------------------
   * </PRE>
   *
   * @param newResultCode    the new result code to take into account
   * @param newErrorMessage  the new error message associated to the new
   *                         error code
   * @return <code>true</code> if a referral result code must be turned
   *         into a reference entry
   */
  public boolean elaborateGlobalResultCode(
      ResultCode     newResultCode,
      MessageBuilder newErrorMessage
      )
  {
    // Returned value
    boolean sendReferenceEntry = false;
 
    // if global result code has not been set yet then just take the new
    // result code as is
    if (resultCode == ResultCode.UNDEFINED)
    {
      resultCode   = newResultCode;
      errorMessage = new MessageBuilder (newErrorMessage);
    }
    else
    {
      // Elaborate the new result code (see table in the description header).
 
      switch (newResultCode)
      {
      case SUCCESS:
        //
        // Received SUCCESS
        // ----------------
        //
        switch (resultCode)
        {
          case NO_SUCH_OBJECT:
            resultCode = ResultCode.SUCCESS;
            errorMessage = new MessageBuilder(Message.EMPTY);
            break;
          case REFERRAL:
            resultCode = ResultCode.SUCCESS;
            errorMessage = new MessageBuilder(Message.EMPTY);
            sendReferenceEntry = true;
            break;
          default:
            // global resultCode remains the same
            break;
        }
        break;
      case NO_SUCH_OBJECT:
        //
        // Received NO SUCH OBJECT
        // -----------------------
        //
        // global resultCode remains the same
        break;
      case REFERRAL:
        //
        // Received REFERRAL
        // -----------------
        //
        switch (resultCode)
        {
          case REFERRAL:
            resultCode = ResultCode.SUCCESS;
            errorMessage = new MessageBuilder(Message.EMPTY);
            sendReferenceEntry = true;
            break;
          case NO_SUCH_OBJECT:
            resultCode = ResultCode.REFERRAL;
            errorMessage = new MessageBuilder (Message.EMPTY);
            break;
          default:
            // global resultCode remains the same
            sendReferenceEntry = true;
            break;
        }
        break;
      default:
        //
        // Received other result codes
        // ---------------------------
        //
        switch (resultCode)
        {
          case REFERRAL:
            resultCode = newResultCode;
            errorMessage = new MessageBuilder (newErrorMessage);
            sendReferenceEntry = true;
            break;
          case SUCCESS:
            resultCode = newResultCode;
            errorMessage = new MessageBuilder (newErrorMessage);
            break;
          case NO_SUCH_OBJECT:
            resultCode = newResultCode;
            errorMessage = new MessageBuilder (newErrorMessage);
            break;
          default:
            // Do nothing (we don't want to override the first error)
            break;
        }
        break;
      }
    }
 
    return sendReferenceEntry;
  }
 
 
  /**
   * Returns the global result code.
   *
   * @return the global result code.
   */
  public ResultCode resultCode()
  {
    return resultCode;
  }
 
 
  /**
   * Returns the global error message.
   *
   * @return the global error message.
   */
  public MessageBuilder errorMessage()
  {
    return errorMessage;
  }
 
}