X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fcls%2Freplica_log%2Fcls_replica_log_ops.h;fp=src%2Fceph%2Fsrc%2Fcls%2Freplica_log%2Fcls_replica_log_ops.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=85ba5e08de4178ba622aae63b280a8f627ed7cdd;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/cls/replica_log/cls_replica_log_ops.h b/src/ceph/src/cls/replica_log/cls_replica_log_ops.h deleted file mode 100644 index 85ba5e0..0000000 --- a/src/ceph/src/cls/replica_log/cls_replica_log_ops.h +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Ceph - scalable distributed file system - * - * This is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software - * Foundation. See file COPYING. - */ - -#ifndef CLS_REPLICA_LOG_OPS_H_ -#define CLS_REPLICA_LOG_OPS_H_ - -#include "cls_replica_log_types.h" - -struct cls_replica_log_delete_marker_op { - string entity_id; - cls_replica_log_delete_marker_op() {} - explicit cls_replica_log_delete_marker_op(const string& id) : entity_id(id) {} - - void encode(bufferlist& bl) const { - ENCODE_START(1, 1, bl); - ::encode(entity_id, bl); - ENCODE_FINISH(bl); - } - - void decode(bufferlist::iterator& bl) { - DECODE_START(1, bl); - ::decode(entity_id, bl); - DECODE_FINISH(bl); - } - - void dump(Formatter *f) const; - static void generate_test_instances(std::list& ls); - -}; -WRITE_CLASS_ENCODER(cls_replica_log_delete_marker_op) - -struct cls_replica_log_set_marker_op { - cls_replica_log_progress_marker marker; - cls_replica_log_set_marker_op() {} - explicit cls_replica_log_set_marker_op(const cls_replica_log_progress_marker& m) : - marker(m) {} - - void encode(bufferlist& bl) const { - ENCODE_START(1, 1, bl); - ::encode(marker, bl); - ENCODE_FINISH(bl); - } - - void decode(bufferlist::iterator& bl) { - DECODE_START(1, bl); - ::decode(marker, bl); - DECODE_FINISH(bl); - } - - void dump(Formatter *f) const; - static void generate_test_instances(std::list& ls); -}; -WRITE_CLASS_ENCODER(cls_replica_log_set_marker_op) - -struct cls_replica_log_get_bounds_op { - cls_replica_log_get_bounds_op() {} - - void encode(bufferlist& bl) const { - ENCODE_START(1, 1, bl); - ENCODE_FINISH(bl); - } - - void decode(bufferlist::iterator& bl) { - DECODE_START(1, bl); - DECODE_FINISH(bl); - } - - void dump(Formatter *f) const; - static void generate_test_instances(std::list& ls); -}; -WRITE_CLASS_ENCODER(cls_replica_log_get_bounds_op) - -struct cls_replica_log_get_bounds_ret { - string position_marker; // oldest log listing position on the master - utime_t oldest_time; // oldest timestamp associated with position or an item - std::list markers; - - cls_replica_log_get_bounds_ret() {} - cls_replica_log_get_bounds_ret(const string& pos_marker, - const utime_t& time, - const std::list& m) : - position_marker(pos_marker), oldest_time(time), markers(m) - {} - void encode(bufferlist& bl) const { - ENCODE_START(1, 1, bl); - ::encode(position_marker, bl); - ::encode(oldest_time, bl); - ::encode(markers, bl); - ENCODE_FINISH(bl); - } - - void decode(bufferlist::iterator& bl) { - DECODE_START(1, bl); - ::decode(position_marker, bl); - ::decode(oldest_time, bl); - ::decode(markers, bl); - DECODE_FINISH(bl); - } - - void dump(Formatter *f) const; - static void generate_test_instances(std::list& ls); -}; -WRITE_CLASS_ENCODER(cls_replica_log_get_bounds_ret) - -#endif /* CLS_REPLICA_LOG_OPS_H_ */