aboutsummaryrefslogtreecommitdiffstats
path: root/ECOMP-ControlloopPolicy/src/main/java/org/openecomp/policy/controlloop/policy/builder/impl/ControlLoopPolicyBuilderImpl.java
blob: 036fd75d25848a17cf64061126d97f67b5421570 (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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
/*-
 * ============LICENSE_START=======================================================
 * ECOMP Policy Engine
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.policy.controlloop.policy.builder.impl;

import java.util.LinkedList;
import java.util.Map;
import java.util.UUID;

import org.openecomp.policy.asdc.Resource;
import org.openecomp.policy.asdc.Service;
import org.openecomp.policy.common.logging.flexlogger.FlexLogger;
import org.openecomp.policy.common.logging.flexlogger.Logger;
import org.openecomp.policy.controlloop.compiler.CompilerException;
import org.openecomp.policy.controlloop.compiler.ControlLoopCompiler;
import org.openecomp.policy.controlloop.compiler.ControlLoopCompilerCallback;
import org.openecomp.policy.controlloop.policy.ControlLoop;
import org.openecomp.policy.controlloop.policy.ControlLoopPolicy;
import org.openecomp.policy.controlloop.policy.FinalResult;
import org.openecomp.policy.controlloop.policy.OperationsAccumulateParams;
import org.openecomp.policy.controlloop.policy.Policy;
import org.openecomp.policy.controlloop.policy.PolicyResult;
import org.openecomp.policy.controlloop.policy.Target;
import org.openecomp.policy.controlloop.policy.builder.BuilderException;
import org.openecomp.policy.controlloop.policy.builder.ControlLoopPolicyBuilder;
import org.openecomp.policy.controlloop.policy.builder.MessageLevel;
import org.openecomp.policy.controlloop.policy.builder.Results;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.DumperOptions.FlowStyle;
import org.yaml.snakeyaml.Yaml;

public class ControlLoopPolicyBuilderImpl implements ControlLoopPolicyBuilder {
	private static Logger logger = FlexLogger.getLogger(ControlLoopPolicyBuilderImpl.class.getName());
	private ControlLoopPolicy policy;
	
	public ControlLoopPolicyBuilderImpl(String controlLoopName, Integer timeout) throws BuilderException {
		policy = new ControlLoopPolicy();
		ControlLoop controlLoop = new ControlLoop();
		controlLoop.setControlLoopName(controlLoopName);
		controlLoop.setTimeout(timeout);
		policy.setControlLoop(controlLoop);
	}
	
	public ControlLoopPolicyBuilderImpl(String controlLoopName, Integer timeout, Resource resource, Service... services) throws BuilderException {
		this(controlLoopName, timeout);
		this.addResource(resource);
		this.addService(services);
	}
	
	public ControlLoopPolicyBuilderImpl(String controlLoopName, Integer timeout, Service service, Resource[] resources) throws BuilderException {
		this(controlLoopName, timeout);
		this.addService(service);
		this.addResource(resources);
	}

	@Override
	public ControlLoopPolicyBuilder	addService(Service... services) throws BuilderException {
		if (services == null) {
			throw new BuilderException("Service must not be null");
		}
		for (Service service : services) {
			if (service.getServiceUUID() == null) {
				if (service.getServiceName() == null || service.getServiceName().length() < 1) {
					throw new BuilderException("Invalid service - need either a serviceUUID or serviceName");
				}
				if(policy.getControlLoop().getServices()==null){
					policy.getControlLoop().setServices(new LinkedList<>());
				}
				policy.getControlLoop().getServices().add(service);
			}
		}
		return this;
	}
	
	@Override
	public ControlLoopPolicyBuilder removeService(Service... services) throws BuilderException {
		if (services == null) {
            throw new BuilderException("Service must not be null");
        }
        if (policy.getControlLoop().getServices() == null) {
            throw new BuilderException("No existing services to remove");
        }
        for (Service service : services) {
            if (service.getServiceUUID() == null) {
                if (service.getServiceName() == null || service.getServiceName().length() < 1) {
                    throw new BuilderException("Invalid service - need either a serviceUUID or serviceName");
                }
            }
            boolean removed = policy.getControlLoop().getServices().remove(service);
            if (!removed) {
                throw new BuilderException("Unknown service " + service.getServiceName());
            }
        }
        return this;
	}

	@Override
	public ControlLoopPolicyBuilder removeAllServices() throws BuilderException {
		policy.getControlLoop().getServices().clear();
        return this;
	}

	
	@Override
	public ControlLoopPolicyBuilder	addResource(Resource... resources) throws BuilderException {
		if (resources == null) {
			throw new BuilderException("resources must not be null");
		}
		for (Resource resource : resources) {
			if (resource.getResourceUUID() == null) {
				if (resource.getResourceName() == null || resource.getResourceName().length() <= 0) {
					throw new BuilderException("Invalid resource - need either resourceUUID or resourceName");
				}
			}
			if(policy.getControlLoop().getResources()==null){
				policy.getControlLoop().setResources(new LinkedList<>());
			}
			policy.getControlLoop().getResources().add(resource);
		}
		return this;
	}
	
	@Override
	public ControlLoopPolicyBuilder setAbatement(Boolean abatement) throws BuilderException{
		if (abatement == null) {
			throw new BuilderException("abatement must not be null");
		}
		policy.getControlLoop().setAbatement(abatement);
		return this;
	}
	
	@Override
	public ControlLoopPolicyBuilder	setTimeout(Integer timeout) {
		policy.getControlLoop().setTimeout(timeout);
		return this;
	}
	
	@Override
	public Policy setTriggerPolicy(String name, String description, String actor, Target target, String recipe,
			Map<String, String> payload, Integer retries, Integer timeout) throws BuilderException {
		
		Policy trigger = new Policy(UUID.randomUUID().toString(), name, description, actor, payload, target, recipe, retries, timeout);
		
		policy.getControlLoop().setTrigger_policy(trigger.getId());
		
		this.addNewPolicy(trigger);
		//
		// Return a copy of the policy
		//
		return new Policy(trigger);
	}

	@Override
	public Policy setPolicyForPolicyResult(String name, String description, String actor,
			Target target, String recipe, Map<String, String> payload, Integer retries, Integer timeout, String policyID, PolicyResult... results) throws BuilderException {
		//
		// Find the existing policy
		//
		Policy existingPolicy = this.findPolicy(policyID);
		if (existingPolicy == null) {
			throw new BuilderException("Unknown policy " + policyID);
		}
		//
		// Create the new Policy
		//
		Policy newPolicy = new Policy(UUID.randomUUID().toString(), name, description, actor, payload, target, recipe, retries, timeout);
		//
		// Connect the results
		//
		for (PolicyResult result : results) {
			switch (result) {
			case FAILURE:
				existingPolicy.setFailure(newPolicy.getId());
				break;
			case FAILURE_EXCEPTION:
				existingPolicy.setFailure_exception(newPolicy.getId());
				break;
			case FAILURE_RETRIES:
				existingPolicy.setFailure_retries(newPolicy.getId());
				break;
			case FAILURE_TIMEOUT:
				existingPolicy.setFailure_timeout(newPolicy.getId());
				break;
			case FAILURE_GUARD:
				existingPolicy.setFailure_guard(newPolicy.getId());
				break;
			case SUCCESS:
				existingPolicy.setSuccess(newPolicy.getId());
				break;
			default:
				throw new BuilderException("Invalid PolicyResult " + result);
			}
		}
		//
		// Add it to our list
		//
		this.policy.getPolicies().add(newPolicy);
		//
		// Return a policy to them
		//
		return new Policy(newPolicy);
	}
	
	private class BuilderCompilerCallback implements ControlLoopCompilerCallback {

		private ResultsImpl results = new ResultsImpl();
		
		@Override
		public boolean onWarning(String message) {
			results.addMessage(new MessageImpl(message, MessageLevel.WARNING));
			return false;
		}

		@Override
		public boolean onError(String message) {
			results.addMessage(new MessageImpl(message, MessageLevel.ERROR));
			return false;
		}
	}

	@Override
	public Results	buildSpecification() {
		//
		// Dump the specification
		//
		DumperOptions options = new DumperOptions();
		options.setDefaultFlowStyle(FlowStyle.BLOCK);
		options.setPrettyFlow(true);
		Yaml yaml = new Yaml(options);
		String dumpedYaml = yaml.dump(policy);
		//
		// This is our callback class for our compiler
		//
		BuilderCompilerCallback callback = new BuilderCompilerCallback();
		//
		// Compile it
		//
		try {
			ControlLoopCompiler.compile(policy, callback);
		} catch (CompilerException e) {
			logger.error(e.getMessage() + e);
			callback.results.addMessage(new MessageImpl(e.getMessage(), MessageLevel.EXCEPTION));
		}
		//
		// Save the spec
		//
		callback.results.setSpecification(dumpedYaml);
		return callback.results;
	}

	private void addNewPolicy(Policy policy) {
		if (this.policy.getPolicies() == null) {
			this.policy.setPolicies(new LinkedList<>());
		}
		this.policy.getPolicies().add(policy);
	}
	
	private Policy findPolicy(String id) {
		for (Policy policy : this.policy.getPolicies()) {
			if (policy.getId().equals(id)) {
				return policy;
			}
		}
		return null;
	}

	@Override
	public ControlLoopPolicyBuilder removeResource(Resource... resources) throws BuilderException {
	    if (resources == null) {
            throw new BuilderException("Resource must not be null");
        }
        if (policy.getControlLoop().getResources() == null) {
            throw new BuilderException("No existing resources to remove");
        }
        for (Resource resource : resources) {
            if (resource.getResourceUUID() == null) {
                if (resource.getResourceName() == null || resource.getResourceName().length() < 1) {
                    throw new BuilderException("Invalid resource - need either a resourceUUID or resourceName");
                }
            }
            boolean removed = policy.getControlLoop().getResources().remove(resource); 
            if (!removed) {
                throw new BuilderException("Unknown resource " + resource.getResourceName());
            }
        }
        return this; 
    }

	@Override
	public ControlLoopPolicyBuilder removeAllResources() throws BuilderException {
	    policy.getControlLoop().getResources().clear();
        return this;
    }

	@Override
	public Integer calculateTimeout() {
		int sum = 0;
        for (Policy policy : this.policy.getPolicies()) {
            sum += policy.getTimeout().intValue();
        }
        return new Integer(sum);
	}

	@Override
	public ControlLoop setTriggerPolicy(String id) throws BuilderException {
		if (id == null) {
            throw new BuilderException("Id must not be null");
        }
	    Policy trigger = this.findPolicy(id);
        if (trigger == null) {
            throw new BuilderException("Unknown policy " + id);
        }
        else {
            this.policy.getControlLoop().setTrigger_policy(id);
        }
        return new ControlLoop(this.policy.getControlLoop());
    }

	@Override
	public boolean isOpenLoop() {
        if (this.policy.getControlLoop().getTrigger_policy().equals(FinalResult.FINAL_OPENLOOP.toString())) {
            return true;
        }	
        else {
            return false;
        }
	}

	@Override
	public Policy getTriggerPolicy() throws BuilderException {
	    if (this.policy.getControlLoop().getTrigger_policy().equals(FinalResult.FINAL_OPENLOOP.toString())) {
            return null;
        }
        else {
            Policy trigger = new Policy(this.findPolicy(this.policy.getControlLoop().getTrigger_policy()));
            return trigger;
        }
    }

	@Override
	public ControlLoop getControlLoop() {
		ControlLoop loop = new ControlLoop(this.policy.getControlLoop());
		return loop;
	}

	@Override
	public Policy setPolicyForPolicyResult(String policyResultID, String policyID, PolicyResult... results)
			throws BuilderException {
		//
        // Find the existing policy
        //
        Policy existingPolicy = this.findPolicy(policyID);
        if (existingPolicy == null) {
            throw new BuilderException(policyID + " does not exist");
        }
        if (this.findPolicy(policyResultID) == null) {
            throw new BuilderException("Operational policy " + policyResultID + " does not exist");
        }
        //
        // Connect the results
        //
        for (PolicyResult result : results) {
            switch (result) {
            case FAILURE:
                existingPolicy.setFailure(policyResultID);
                break;
            case FAILURE_EXCEPTION:
                existingPolicy.setFailure_exception(policyResultID);
                break;
            case FAILURE_RETRIES:
            	existingPolicy.setFailure_retries(policyResultID);
            	break;
            case FAILURE_TIMEOUT:
            	existingPolicy.setFailure_timeout(policyResultID);
            	break;
            case FAILURE_GUARD:
            	existingPolicy.setFailure_guard(policyResultID);
            	break;
            case SUCCESS:
            	existingPolicy.setSuccess(policyResultID);
            	break;
            default:
            	throw new BuilderException("Invalid PolicyResult " + result);
            }
        }
        return new Policy(this.findPolicy(policyResultID));
	}

	@Override
	public boolean removePolicy(String policyID) throws BuilderException {
		Policy existingPolicy = this.findPolicy(policyID);
        if (existingPolicy == null) {
            throw new BuilderException("Unknown policy " + policyID);
        }
        //
        // Check if the policy to remove is trigger_policy
        //
        if (this.policy.getControlLoop().getTrigger_policy().equals(policyID)) {
            this.policy.getControlLoop().setTrigger_policy(FinalResult.FINAL_OPENLOOP.toString());
        }
        else {
            //
            // Update policies
            //
            for (Policy policy : this.policy.getPolicies()) {
                int index = this.policy.getPolicies().indexOf(policy);
                if (policy.getSuccess().equals(policyID)) {
                    policy.setSuccess(FinalResult.FINAL_SUCCESS.toString());
                }
                if (policy.getFailure().equals(policyID)) {
                    policy.setFailure(FinalResult.FINAL_FAILURE.toString());
                }
                if (policy.getFailure_retries().equals(policyID)) {
                    policy.setFailure_retries(FinalResult.FINAL_FAILURE_RETRIES.toString());
                }
                if (policy.getFailure_timeout().equals(policyID)) {
                    policy.setFailure_timeout(FinalResult.FINAL_FAILURE_TIMEOUT.toString());
                }
                if (policy.getFailure_exception().equals(policyID)) {
                    policy.setFailure_exception(FinalResult.FINAL_FAILURE_EXCEPTION.toString());
                }
                if (policy.getFailure_guard().equals(policyID)) {
                    policy.setFailure_guard(FinalResult.FINAL_FAILURE_GUARD.toString());
                }
                this.policy.getPolicies().set(index, policy);
            }
        }
        //
        // remove the policy
        //
        boolean removed = this.policy.getPolicies().remove(existingPolicy);
        return removed;
	}

	@Override
	public Policy resetPolicyResults(String policyID) throws BuilderException {
        Policy existingPolicy = this.findPolicy(policyID);
        if (existingPolicy == null) {
            throw new BuilderException("Unknown policy " + policyID);
        }
        //
        // reset policy results
        //
        existingPolicy.setSuccess(FinalResult.FINAL_SUCCESS.toString());
        existingPolicy.setFailure(FinalResult.FINAL_FAILURE.toString());
        existingPolicy.setFailure_retries(FinalResult.FINAL_FAILURE_RETRIES.toString());
        existingPolicy.setFailure_timeout(FinalResult.FINAL_FAILURE_TIMEOUT.toString());
        existingPolicy.setFailure_exception(FinalResult.FINAL_FAILURE_EXCEPTION.toString());
        existingPolicy.setFailure_guard(FinalResult.FINAL_FAILURE_GUARD.toString());
        return new Policy(existingPolicy);
	}

	@Override
	public ControlLoopPolicyBuilder removeAllPolicies() {
		//
        // Remove all existing operational policies
        //
        this.policy.getPolicies().clear();
        //
        // Revert controlLoop back to an open loop
        //
        this.policy.getControlLoop().setTrigger_policy(FinalResult.FINAL_OPENLOOP.toString());
        return this;
	}
	
	@Override
	public Policy addOperationsAccumulateParams(String policyID, OperationsAccumulateParams operationsAccumulateParams) throws BuilderException {
		Policy existingPolicy = this.findPolicy(policyID);
        if (existingPolicy == null) {
            throw new BuilderException("Unknown policy " + policyID);
        }
        //
        // Add operationsAccumulateParams to existingPolicy
        //
        existingPolicy.setOperationsAccumulateParams(operationsAccumulateParams);
        return new Policy(existingPolicy);
	}

}