-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create of thing's policy is atomic with creation the of thing itself
Signed-off-by: Stanchev Aleksandar <aleksandar.stanchev@bosch.io> Signed-off-by: Stanchev Aleksandar <aleksandar.stanchev@bosch.io>
- Loading branch information
Stanchev Aleksandar
committed
Feb 22, 2023
1 parent
7f2e58b
commit 77b1c03
Showing
5 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...ice/src/main/java/org/eclipse/ditto/things/service/enforcement/RollbackCreatedPolicy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
|
||
package org.eclipse.ditto.things.service.enforcement; | ||
|
||
import java.util.concurrent.CompletableFuture; | ||
|
||
import org.eclipse.ditto.base.model.common.ResponseType; | ||
import org.eclipse.ditto.base.model.signals.Signal; | ||
import org.eclipse.ditto.things.model.signals.commands.modify.CreateThing; | ||
import org.eclipse.ditto.things.model.signals.commands.modify.CreateThingResponse; | ||
|
||
|
||
public record RollbackCreatedPolicy(Signal<?> initialCommand, Object response, CompletableFuture<Object> responseFuture) { | ||
|
||
public static RollbackCreatedPolicy of(final Signal<?> command, final Object response, | ||
final CompletableFuture<Object> responseFuture) { | ||
return new RollbackCreatedPolicy(command, response, responseFuture); | ||
} | ||
|
||
public static boolean shouldRollback(final Signal<?> command, final Object response) { | ||
return command instanceof CreateThing && response instanceof CreateThingResponse thingResponse && | ||
thingResponse.getResponseType() == ResponseType.ERROR; | ||
} | ||
|
||
public void completeInitialResponse() { | ||
if (response instanceof Throwable t) { | ||
responseFuture.completeExceptionally(t); | ||
} else { | ||
responseFuture.complete(response); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...ervice/src/main/java/org/eclipse/ditto/things/service/enforcement/ThingPolicyCreated.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
|
||
package org.eclipse.ditto.things.service.enforcement; | ||
|
||
|
||
import org.eclipse.ditto.base.model.headers.DittoHeaders; | ||
import org.eclipse.ditto.policies.model.PolicyId; | ||
import org.eclipse.ditto.things.model.ThingId; | ||
|
||
|
||
public record ThingPolicyCreated(ThingId thingId, PolicyId policyId, DittoHeaders dittoHeaders) { | ||
|
||
public static ThingPolicyCreated of(final ThingId thingId, final PolicyId policyId, final DittoHeaders dittoHeaders) { | ||
return new ThingPolicyCreated(thingId, policyId, dittoHeaders); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters