Expose completion future from WriteOperations
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / WriteOperations.java
index cf9e6e918e4e6bef26fdbf244828dde983fbe47c..b054d43f7bd0f14f9e8f19ef2122d9ca4510b4e1 100644 (file)
@@ -7,9 +7,10 @@
  */
 package org.opendaylight.mdsal.binding.api;
 
-import com.google.common.annotations.Beta;
+import com.google.common.util.concurrent.FluentFuture;
 import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
+import org.opendaylight.mdsal.common.api.TransactionDatastoreMismatchException;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
@@ -30,41 +31,12 @@ public interface WriteOperations {
      * @param path the data object path
      * @param data the data object to be written to the specified path
      * @throws IllegalStateException if the transaction has already been submitted
-     * @throws NullPointerException if any of the arguments is null
+     * @throws NullPointerException if any of the arguments is {@code null}
+     * @throws TransactionDatastoreMismatchException if this transaction is already bound to a different data store
      */
     <T extends DataObject> void put(@NonNull LogicalDatastoreType store, @NonNull InstanceIdentifier<T> path,
             @NonNull T data);
 
-    /**
-     * Stores a piece of data at the specified path. This acts as an add / replace operation, which is to say that whole
-     * subtree will be replaced by the specified data.
-     *
-     * <p>
-     * If you need to make sure that a parent object exists but you do not want modify its pre-existing state by using
-     * put, consider using {@link #merge} instead.
-     *
-     * <b>WARNING:</b> Using this method may introduce garbage in data store, or recreate nodes, which were deleted by
-     *                 a previous transaction. It is not necessary in most scenarios and has a significantly higher cost
-     *                 than {@link #put(LogicalDatastoreType, InstanceIdentifier, DataObject)} and should only be used
-     *                 when absolutely necessary.
-     *
-     * @param store the logical data store which should be modified
-     * @param path the data object path
-     * @param data the data object to be written to the specified path
-     * @param createMissingParents if {@link #CREATE_MISSING_PARENTS}, any missing parent nodes will be automatically
-     *                             created using a merge operation. <b>WARNING:</b> using this option is not needed
-     *                             in most scenarios and has a significant performance cost and should be avoided
-     *                             whenever possible.
-     * @throws IllegalStateException if the transaction has already been submitted
-     * @throws NullPointerException if any of the arguments is null
-     * @deprecated Use {@link #put(LogicalDatastoreType, InstanceIdentifier, DataObject)} or
-     *             {@link #mergeParentStructurePut(LogicalDatastoreType, InstanceIdentifier, DataObject)}
-     *             instead.
-     */
-    @Deprecated
-    <T extends DataObject> void put(@NonNull LogicalDatastoreType store, @NonNull InstanceIdentifier<T> path,
-            @NonNull T data, boolean createMissingParents);
-
     /**
      * Stores a piece of data at the specified path. This acts as an add / replace operation, which is to say that whole
      * subtree will be replaced by the specified data. Unlike
@@ -85,15 +57,28 @@ public interface WriteOperations {
      * @param path the data object path
      * @param data the data object to be written to the specified path
      * @throws IllegalStateException if the transaction has already been submitted
-     * @throws NullPointerException if any of the arguments is null
+     * @throws NullPointerException if any of the arguments is {@code null}
+     * @throws TransactionDatastoreMismatchException if this transaction is already bound to a different data store
+     * @deprecated Use of this method is a manifestation of bad lifecycle management: it attempts to create data tree
+     *             parent nodes which may have semantic meaning without assigning responsibility. The datastore handles
+     *             all the cases which do not attach semantics, such as {@code container}s without {@code presence},
+     *             {@code augmentation} and {@code list} encapsulation.
+     *             This method does not work in the general case, where there are:
+     *             <ul>
+     *               <li>{@code container} parents with {@code presence}, as these form a {@code mandatory} enforcement
+     *                   boundary. We cannot infer the mandatory nodes from {@code path} and hence we may end up wanting
+     *                   to create an invalid structure</li>
+     *               <li>{@code list} parents with {@code unique} encompassing other leaves than {@code key}. While we
+     *                   can re-create the key {@code leaf} items, we have no way of constructing of {@code unique}
+     *                   requirements.</li>
+     *             </ul>
+     *             Based on this analysis, all users of this method need to be migrated to have a proper lifecycle
+     *             relationship with entities responsible for managing such semantic items which are created by this
+     *             method.
      */
-    // FIXME: 4.0.0: make this method non-default
-    // TODO: can we come up with a better name?
-    @Beta
-    default <T extends DataObject> void mergeParentStructurePut(@NonNull final LogicalDatastoreType store,
-            @NonNull final InstanceIdentifier<T> path, @NonNull final T data) {
-        put(store, path, data, CREATE_MISSING_PARENTS);
-    }
+    @Deprecated(since = "11.0.3")
+    <T extends DataObject> void mergeParentStructurePut(@NonNull LogicalDatastoreType store,
+            @NonNull InstanceIdentifier<T> path, @NonNull T data);
 
     /**
      * Merges a piece of data with the existing data at a specified path. Any pre-existing data which is not explicitly
@@ -106,35 +91,12 @@ public interface WriteOperations {
      * @param path the data object path
      * @param data the data object to be merged to the specified path
      * @throws IllegalStateException if the transaction has already been submitted
-     * @throws NullPointerException if any of the arguments is null
+     * @throws NullPointerException if any of the arguments is {@code null}
+     * @throws TransactionDatastoreMismatchException if this transaction is already bound to a different data store
      */
     <T extends DataObject> void merge(@NonNull LogicalDatastoreType store, @NonNull InstanceIdentifier<T> path,
             @NonNull T data);
 
-    /**
-     * Merges a piece of data with the existing data at a specified path. Any pre-existing data which is not explicitly
-     * overwritten will be preserved. This means that if you store a container, its child lists will be merged.
-     *
-     * <p>
-     * If you require an explicit replace operation, use {@link #put} instead.
-     *
-     * @param store the logical data store which should be modified
-     * @param path the data object path
-     * @param data the data object to be merged to the specified path
-     * @param createMissingParents if {@link #CREATE_MISSING_PARENTS}, any missing parent nodes will be automatically
-     *                             created using a merge operation. <b>WARNING:</b> using this option is not needed
-     *                             in most scenarios and has a significant performance cost and should be avoided
-     *                             whenever possible.
-     * @throws IllegalStateException if the transaction has already been submitted
-     * @throws NullPointerException if any of the arguments is null
-     * @deprecated Use {@link #merge(LogicalDatastoreType, InstanceIdentifier, DataObject)} or
-     *             {@link #mergeParentStructureMerge(LogicalDatastoreType, InstanceIdentifier, DataObject)}
-     *             instead.
-     */
-    @Deprecated
-    <T extends DataObject> void merge(@NonNull LogicalDatastoreType store, @NonNull InstanceIdentifier<T> path,
-            @NonNull T data, boolean createMissingParents);
-
     /**
      * Merges a piece of data with the existing data at a specified path. Any pre-existing data which is not explicitly
      * overwritten will be preserved. This means that if you store a container, its child lists will be merged. Unlike
@@ -154,15 +116,28 @@ public interface WriteOperations {
      * @param path the data object path
      * @param data the data object to be merged to the specified path
      * @throws IllegalStateException if the transaction has already been submitted
-     * @throws NullPointerException if any of the arguments is null
+     * @throws NullPointerException if any of the arguments is {@code null}
+     * @throws TransactionDatastoreMismatchException if this transaction is already bound to a different data store
+     * @deprecated Use of this method is a manifestation of bad lifecycle management: it attempts to create data tree
+     *             parent nodes which may have semantic meaning without assigning responsibility. The datastore handles
+     *             all the cases which do not attach semantics, such as {@code container}s without {@code presence},
+     *             {@code augmentation} and {@code list} encapsulation.
+     *             This method does not work in the general case, where there are:
+     *             <ul>
+     *               <li>{@code container} parents with {@code presence}, as these form a {@code mandatory} enforcement
+     *                   boundary. We cannot infer the mandatory nodes from {@code path} and hence we may end up wanting
+     *                   to create an invalid structure</li>
+     *               <li>{@code list} parents with {@code unique} encompassing other leaves than {@code key}. While we
+     *                   can re-create the key {@code leaf} items, we have no way of constructing of {@code unique}
+     *                   requirements.</li>
+     *             </ul>
+     *             Based on this analysis, all users of this method need to be migrated to have a proper lifecycle
+     *             relationship with entities responsible for managing such semantic items which are created by this
+     *             method.
      */
-    // FIXME: 4.0.0: make this method non-default
-    // TODO: can we come up with a better name?
-    @Beta
-    default <T extends DataObject> void mergeParentStructureMerge(@NonNull final LogicalDatastoreType store,
-            @NonNull final InstanceIdentifier<T> path, @NonNull final T data) {
-        merge(store, path, data, CREATE_MISSING_PARENTS);
-    }
+    @Deprecated(since = "11.0.3")
+    <T extends DataObject> void mergeParentStructureMerge(@NonNull LogicalDatastoreType store,
+            @NonNull InstanceIdentifier<T> path, @NonNull T data);
 
     /**
      * Removes a piece of data from specified path. This operation does not fail if the specified path does not exist.
@@ -170,29 +145,15 @@ public interface WriteOperations {
      * @param store Logical data store which should be modified
      * @param path Data object path
      * @throws IllegalStateException if the transaction was committed or canceled.
+     * @throws NullPointerException if any of the arguments is {@code null}
+     * @throws TransactionDatastoreMismatchException if this transaction is already bound to a different data store
      */
     void delete(@NonNull LogicalDatastoreType store, @NonNull InstanceIdentifier<?> path);
 
     /**
-     * Flag value indicating that missing parents should be created.
-     *
-     * <p>
-     * <b>WARNING:</b> Using this flag may introduce garbage in data store, or recreate nodes, which were deleted by
-     *                 a previous transaction. It is not necessary in most scenarios and also has a significantly higher
-     *                 cost than {@link #FAIL_ON_MISSING_PARENTS} and should only be used when absolutely necessary.
-     *
-     * @deprecated To be removed with {@link #merge(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}
-     *             and {@link #put(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}.
-     */
-    @Deprecated
-    boolean CREATE_MISSING_PARENTS = true;
-
-    /**
-     * Flag value indicating that missing parents should cause an error.
+     * Return a {@link FluentFuture} which completes.
      *
-     * @deprecated To be removed with {@link #merge(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}
-     *             and {@link #put(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}.
+     * @return A future which completes when the requested operations complete.
      */
-    @Deprecated
-    boolean FAIL_ON_MISSING_PARENTS = false;
+    @NonNull FluentFuture<?> completionFuture();
 }