// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #ifndef CEPH_CLS_REFCOUNT_OPS_H #define CEPH_CLS_REFCOUNT_OPS_H #include "include/types.h" #include "common/hobject.h" struct cls_refcount_get_op { std::string tag; bool implicit_ref; cls_refcount_get_op() : implicit_ref(false) {} void encode(ceph::buffer::list& bl) const { ENCODE_START(1, 1, bl); encode(tag, bl); encode(implicit_ref, bl); ENCODE_FINISH(bl); } void decode(ceph::buffer::list::const_iterator& bl) { DECODE_START(1, bl); decode(tag, bl); decode(implicit_ref, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(std::list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_get_op) struct cls_refcount_put_op { std::string tag; bool implicit_ref; // assume wildcard reference for // objects without a std::set ref cls_refcount_put_op() : implicit_ref(false) {} void encode(ceph::buffer::list& bl) const { ENCODE_START(1, 1, bl); encode(tag, bl); encode(implicit_ref, bl); ENCODE_FINISH(bl); } void decode(ceph::buffer::list::const_iterator& bl) { DECODE_START(1, bl); decode(tag, bl); decode(implicit_ref, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(std::list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_put_op) struct cls_refcount_set_op { std::list refs; cls_refcount_set_op() {} void encode(ceph::buffer::list& bl) const { ENCODE_START(1, 1, bl); encode(refs, bl); ENCODE_FINISH(bl); } void decode(ceph::buffer::list::const_iterator& bl) { DECODE_START(1, bl); decode(refs, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(std::list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_set_op) struct cls_refcount_read_op { bool implicit_ref; // assume wildcard reference for // objects without a std::set ref cls_refcount_read_op() : implicit_ref(false) {} void encode(ceph::buffer::list& bl) const { ENCODE_START(1, 1, bl); encode(implicit_ref, bl); ENCODE_FINISH(bl); } void decode(ceph::buffer::list::const_iterator& bl) { DECODE_START(1, bl); decode(implicit_ref, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(std::list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_read_op) struct cls_refcount_read_ret { std::list refs; cls_refcount_read_ret() {} void encode(ceph::buffer::list& bl) const { ENCODE_START(1, 1, bl); encode(refs, bl); ENCODE_FINISH(bl); } void decode(ceph::buffer::list::const_iterator& bl) { DECODE_START(1, bl); decode(refs, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(std::list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_read_ret) struct obj_refcount { std::map refs; std::set retired_refs; obj_refcount() {} void encode(ceph::buffer::list& bl) const { ENCODE_START(2, 1, bl); encode(refs, bl); encode(retired_refs, bl); ENCODE_FINISH(bl); } void decode(ceph::buffer::list::const_iterator& bl) { DECODE_START(2, bl); decode(refs, bl); if (struct_v >= 2) { decode(retired_refs, bl); } DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(std::list& ls); }; WRITE_CLASS_ENCODER(obj_refcount) #endif