File indexing completed on 2025-01-31 10:12:20
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef GOOGLE_PROTOBUF_FIELD_ACCESS_LISTENER_H__
0009 #define GOOGLE_PROTOBUF_FIELD_ACCESS_LISTENER_H__
0010
0011 #include <cstddef>
0012
0013 #include "google/protobuf/message_lite.h"
0014 #include "google/protobuf/port.h"
0015
0016
0017 namespace google {
0018 namespace protobuf {
0019
0020
0021
0022
0023 template <typename Proto>
0024 struct NoOpAccessListener {
0025
0026
0027
0028
0029 static constexpr int kFields = Proto::_kInternalFieldNumber;
0030
0031
0032
0033
0034
0035
0036
0037 explicit NoOpAccessListener(absl::string_view (* )()) {}
0038
0039
0040
0041 static void OnSerialize(const MessageLite* ) {}
0042 static void OnDeserialize(const MessageLite* ) {}
0043 static void OnByteSize(const MessageLite* ) {}
0044 static void OnMergeFrom(const MessageLite* ,
0045 const MessageLite* ) {}
0046
0047
0048
0049 static void OnGetMetadata() {}
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066 template <int kFieldNum>
0067 static void OnAdd(const MessageLite* , const void* ) {}
0068
0069
0070 template <int kFieldNum>
0071 static void OnAddMutable(const MessageLite* , const void* ) {}
0072
0073
0074 template <int kFieldNum>
0075 static void OnGet(const MessageLite* , const void* ) {}
0076
0077
0078 template <int kFieldNum>
0079 static void OnClear(const MessageLite* , const void* ) {}
0080
0081
0082 template <int kFieldNum>
0083 static void OnHas(const MessageLite* , const void* ) {}
0084
0085
0086 template <int kFieldNum>
0087 static void OnList(const MessageLite* , const void* ) {}
0088
0089
0090 template <int kFieldNum>
0091 static void OnMutable(const MessageLite* , const void* ) {}
0092
0093
0094 template <int kFieldNum>
0095 static void OnMutableList(const MessageLite* , const void* ) {
0096 }
0097
0098
0099 template <int kFieldNum>
0100 static void OnRelease(const MessageLite* , const void* ) {}
0101
0102
0103 template <int kFieldNum>
0104 static void OnSet(const MessageLite* , const void* ) {}
0105
0106
0107 template <int kFieldNum>
0108 static void OnSize(const MessageLite* , const void* ) {}
0109
0110
0111 static void OnUnknownFields(const MessageLite* ) {}
0112
0113
0114 static void OnMutableUnknownFields(const MessageLite* ) {}
0115
0116 static void OnHasExtension(const MessageLite* , int ,
0117 const void* ) {}
0118
0119 static void OnClearExtension(const MessageLite* ,
0120 int , const void* ) {}
0121 static void OnExtensionSize(const MessageLite* , int ,
0122 const void* ) {}
0123 static void OnGetExtension(const MessageLite* , int ,
0124 const void* ) {}
0125 static void OnMutableExtension(const MessageLite* ,
0126 int , const void* ) {
0127 }
0128 static void OnSetExtension(const MessageLite* , int ,
0129 const void* ) {}
0130 static void OnReleaseExtension(const MessageLite* ,
0131 int , const void* ) {
0132 }
0133 static void OnAddExtension(const MessageLite* , int ,
0134 const void* ) {}
0135 static void OnAddMutableExtension(const MessageLite* ,
0136 int ,
0137 const void* ) {}
0138 static void OnListExtension(const MessageLite* , int ,
0139 const void* ) {}
0140 static void OnMutableListExtension(const MessageLite* ,
0141 int ,
0142 const void* ) {}
0143 };
0144
0145 }
0146 }
0147
0148 #ifndef REPLACE_PROTO_LISTENER_IMPL
0149 namespace google {
0150 namespace protobuf {
0151 template <class T>
0152 using AccessListener = NoOpAccessListener<T>;
0153 }
0154 }
0155 #else
0156
0157
0158
0159 #endif
0160
0161 #endif