-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into gh-3305-apply-opoptions-at-opchain-level
- Loading branch information
Showing
6 changed files
with
365 additions
and
8 deletions.
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
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
119 changes: 119 additions & 0 deletions
119
...ated-store/src/main/java/uk/gov/gchq/gaffer/federated/simple/operation/ChangeGraphId.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,119 @@ | ||
/* | ||
* Copyright 2024 Crown Copyright | ||
* | ||
* 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. | ||
*/ | ||
|
||
package uk.gov.gchq.gaffer.federated.simple.operation; | ||
|
||
import org.apache.commons.lang3.exception.CloneFailedException; | ||
|
||
import uk.gov.gchq.gaffer.operation.Operation; | ||
import uk.gov.gchq.koryphe.Since; | ||
import uk.gov.gchq.koryphe.Summary; | ||
|
||
import java.util.Map; | ||
|
||
@Since("2.4.0") | ||
@Summary("Changes Graph ID") | ||
public class ChangeGraphId implements Operation { | ||
|
||
private String graphId; | ||
private String newGraphId; | ||
private Map<String, String> options; | ||
|
||
// Getters | ||
/** | ||
* Get the graph ID that will be changed. | ||
* | ||
* @return the graph ID | ||
*/ | ||
public String getGraphId() { | ||
return graphId; | ||
} | ||
|
||
/** | ||
* Get the new ID for the graph. | ||
* | ||
* @return the new graph ID | ||
*/ | ||
public String getNewGraphId() { | ||
return newGraphId; | ||
} | ||
|
||
// Setters | ||
/** | ||
* Set the graph ID of the current graph. | ||
* | ||
* @param graphId the graph ID | ||
*/ | ||
public void setGraphId(final String graphId) { | ||
this.graphId = graphId; | ||
} | ||
|
||
/** | ||
* Set the new graph ID of the current graph. | ||
* | ||
* @param newGraphId the new Graph ID | ||
*/ | ||
public void setNewGraphId(final String newGraphId) { | ||
this.newGraphId = newGraphId; | ||
} | ||
|
||
@Override | ||
public Map<String, String> getOptions() { | ||
return options; | ||
} | ||
|
||
@Override | ||
public void setOptions(final Map<String, String> options) { | ||
this.options = options; | ||
} | ||
|
||
@Override | ||
public Operation shallowClone() throws CloneFailedException { | ||
return new ChangeGraphId.Builder() | ||
.graphId(graphId) | ||
.newGraphId(newGraphId) | ||
.options(options) | ||
.build(); | ||
} | ||
|
||
public static class Builder extends Operation.BaseBuilder<ChangeGraphId, Builder> { | ||
public Builder() { | ||
super(new ChangeGraphId()); | ||
} | ||
|
||
/** | ||
* Set the current graph ID | ||
* | ||
* @param graphId the graph ID to be changed | ||
* @return the builder | ||
*/ | ||
public Builder graphId(final String graphId) { | ||
_getOp().setGraphId(graphId); | ||
return _self(); | ||
} | ||
|
||
/** | ||
* Set the new graph ID | ||
* | ||
* @param newGraphId the new graph ID | ||
* @return the builder | ||
*/ | ||
public Builder newGraphId(final String newGraphId) { | ||
_getOp().setNewGraphId(newGraphId); | ||
return _self(); | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...java/uk/gov/gchq/gaffer/federated/simple/operation/handler/misc/ChangeGraphIdHandler.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,40 @@ | ||
/* | ||
* Copyright 2024 Crown Copyright | ||
* | ||
* 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. | ||
*/ | ||
|
||
package uk.gov.gchq.gaffer.federated.simple.operation.handler.misc; | ||
|
||
import uk.gov.gchq.gaffer.federated.simple.FederatedStore; | ||
import uk.gov.gchq.gaffer.federated.simple.operation.ChangeGraphId; | ||
import uk.gov.gchq.gaffer.operation.OperationException; | ||
import uk.gov.gchq.gaffer.store.Context; | ||
import uk.gov.gchq.gaffer.store.Store; | ||
import uk.gov.gchq.gaffer.store.StoreException; | ||
import uk.gov.gchq.gaffer.store.operation.handler.OperationHandler; | ||
|
||
public class ChangeGraphIdHandler implements OperationHandler<ChangeGraphId> { | ||
|
||
@Override | ||
public Object doOperation(final ChangeGraphId operation, final Context context, final Store store) throws OperationException { | ||
try { | ||
((FederatedStore) store).changeGraphId(operation.getGraphId(), operation.getNewGraphId()); | ||
} catch (final StoreException e) { | ||
throw new OperationException("Error changing graph ID", e); | ||
} | ||
|
||
// Nothing to return | ||
return null; | ||
} | ||
} |
Oops, something went wrong.