// -*- 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" class Formatter; struct cls_refcount_get_op { string tag; bool implicit_ref; cls_refcount_get_op() : implicit_ref(false) {} void encode(bufferlist& bl) const { ENCODE_START(1, 1, bl); ::encode(tag, bl); ::encode(implicit_ref, bl); ENCODE_FINISH(bl); } void decode(bufferlist::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(list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_get_op) struct cls_refcount_put_op { string tag; bool implicit_ref; // assume wildcard reference for // objects without a set ref cls_refcount_put_op() : implicit_ref(false) {} void encode(bufferlist& bl) const { ENCODE_START(1, 1, bl); ::encode(tag, bl); ::encode(implicit_ref, bl); ENCODE_FINISH(bl); } void decode(bufferlist::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(list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_put_op) struct cls_refcount_set_op { list refs; cls_refcount_set_op() {} void encode(bufferlist& bl) const { ENCODE_START(1, 1, bl); ::encode(refs, bl); ENCODE_FINISH(bl); } void decode(bufferlist::iterator& bl) { DECODE_START(1, bl); ::decode(refs, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_set_op) struct cls_refcount_read_op { bool implicit_ref; // assume wildcard reference for // objects without a set ref cls_refcount_read_op() : implicit_ref(false) {} void encode(bufferlist& bl) const { ENCODE_START(1, 1, bl); ::encode(implicit_ref, bl); ENCODE_FINISH(bl); } void decode(bufferlist::iterator& bl) { DECODE_START(1, bl); ::decode(implicit_ref, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_read_op) struct cls_refcount_read_ret { list refs; cls_refcount_read_ret() {} void encode(bufferlist& bl) const { ENCODE_START(1, 1, bl); ::encode(refs, bl); ENCODE_FINISH(bl); } void decode(bufferlist::iterator& bl) { DECODE_START(1, bl); ::decode(refs, bl); DECODE_FINISH(bl); } void dump(ceph::Formatter *f) const; static void generate_test_instances(list& ls); }; WRITE_CLASS_ENCODER(cls_refcount_read_ret) #endif