X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftools%2Frbd_mirror%2Fimage_sync%2FSnapshotCopyRequest.h;fp=src%2Fceph%2Fsrc%2Ftools%2Frbd_mirror%2Fimage_sync%2FSnapshotCopyRequest.h;h=85ae4d41305a025c35e8904d7a9d2f1c36b905d1;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/tools/rbd_mirror/image_sync/SnapshotCopyRequest.h b/src/ceph/src/tools/rbd_mirror/image_sync/SnapshotCopyRequest.h new file mode 100644 index 0000000..85ae4d4 --- /dev/null +++ b/src/ceph/src/tools/rbd_mirror/image_sync/SnapshotCopyRequest.h @@ -0,0 +1,147 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef RBD_MIRROR_IMAGE_SYNC_SNAPSHOT_COPY_REQUEST_H +#define RBD_MIRROR_IMAGE_SYNC_SNAPSHOT_COPY_REQUEST_H + +#include "include/int_types.h" +#include "include/rados/librados.hpp" +#include "common/snap_types.h" +#include "librbd/ImageCtx.h" +#include "librbd/Types.h" +#include "librbd/journal/TypeTraits.h" +#include "tools/rbd_mirror/BaseRequest.h" +#include +#include +#include +#include + +class Context; +class ContextWQ; +namespace journal { class Journaler; } +namespace librbd { namespace journal { struct MirrorPeerClientMeta; } } + +namespace rbd { +namespace mirror { +namespace image_sync { + +template +class SnapshotCopyRequest : public BaseRequest { +public: + typedef librbd::journal::TypeTraits TypeTraits; + typedef typename TypeTraits::Journaler Journaler; + + typedef std::vector SnapIds; + typedef std::map SnapMap; + + static SnapshotCopyRequest* create(ImageCtxT *local_image_ctx, + ImageCtxT *remote_image_ctx, + SnapMap *snap_map, Journaler *journaler, + librbd::journal::MirrorPeerClientMeta *client_meta, + ContextWQ *work_queue, + Context *on_finish) { + return new SnapshotCopyRequest(local_image_ctx, remote_image_ctx, + snap_map, journaler, client_meta, work_queue, + on_finish); + } + + SnapshotCopyRequest(ImageCtxT *local_image_ctx, ImageCtxT *remote_image_ctx, + SnapMap *snap_map, Journaler *journaler, + librbd::journal::MirrorPeerClientMeta *client_meta, + ContextWQ *work_queue, Context *on_finish); + + void send() override; + void cancel() override; + +private: + /** + * @verbatim + * + * + * | + * | /-----------\ + * | | | + * v v | (repeat as needed) + * UNPROTECT_SNAP ----/ + * | + * | /-----------\ + * | | | + * v v | (repeat as needed) + * REMOVE_SNAP -------/ + * | + * | /-----------\ + * | | | + * v v | (repeat as needed) + * CREATE_SNAP -------/ + * | + * | /-----------\ + * | | | + * v v | (repeat as needed) + * PROTECT_SNAP ------/ + * | + * v + * UPDATE_CLIENT + * | + * v + * + * + * @endverbatim + */ + + typedef std::set SnapIdSet; + typedef std::map SnapSeqs; + + ImageCtxT *m_local_image_ctx; + ImageCtxT *m_remote_image_ctx; + SnapMap *m_snap_map; + Journaler *m_journaler; + librbd::journal::MirrorPeerClientMeta *m_client_meta; + ContextWQ *m_work_queue; + + SnapIdSet m_local_snap_ids; + SnapIdSet m_remote_snap_ids; + SnapSeqs m_snap_seqs; + librados::snap_t m_prev_snap_id = CEPH_NOSNAP; + + std::string m_snap_name; + cls::rbd::SnapshotNamespace m_snap_namespace; + + librbd::ParentSpec m_local_parent_spec; + + Mutex m_lock; + bool m_canceled = false; + + void send_snap_unprotect(); + void handle_snap_unprotect(int r); + + void send_snap_remove(); + void handle_snap_remove(int r); + + void send_snap_create(); + void handle_snap_create(int r); + + void send_snap_protect(); + void handle_snap_protect(int r); + + void send_update_client(); + void handle_update_client(int r); + + bool handle_cancellation(); + + void error(int r); + + void compute_snap_map(); + + int validate_parent(ImageCtxT *image_ctx, librbd::ParentSpec *spec); + + Context *start_local_op(); + +}; + +} // namespace image_sync +} // namespace mirror +} // namespace rbd + +extern template class rbd::mirror::image_sync::SnapshotCopyRequest; + +#endif // RBD_MIRROR_IMAGE_SYNC_SNAPSHOT_COPY_REQUEST_H