Skip to content

Commit 9c6a0af

Browse files
Change the names of cluster-objects function arguments. (#27945)
Using "tag" as a function argument leads to compile failure when a struct with a field named "Tag" (which becomes a member named "tag") is added to the spec. Change to aTag (and aWriter) to avoid the name collision. This does not change either API or ABI for consumers; just the naming of the argument inside the function.
1 parent 5edf049 commit 9c6a0af

File tree

4 files changed

+2256
-2253
lines changed

4 files changed

+2256
-2253
lines changed

src/app/zap-templates/templates/app/cluster-objects-src.zapt

+9-9
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ namespace Structs {
3434
namespace Commands {
3535
{{#zcl_commands}}
3636
namespace {{asUpperCamelCase name}} {
37-
CHIP_ERROR Type::Encode(TLV::TLVWriter &writer, TLV::Tag tag) const{
37+
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const{
3838
TLV::TLVType outer;
39-
ReturnErrorOnFailure(writer.StartContainer(tag, TLV::kTLVType_Structure, outer));
39+
ReturnErrorOnFailure(aWriter.StartContainer(aTag, TLV::kTLVType_Structure, outer));
4040
{{#zcl_command_arguments}}
41-
ReturnErrorOnFailure(DataModel::Encode(writer, TLV::ContextTag(Fields::k{{asUpperCamelCase label}}), {{asLowerCamelCase label}}));
41+
ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::k{{asUpperCamelCase label}}), {{asLowerCamelCase label}}));
4242
{{/zcl_command_arguments}}
43-
ReturnErrorOnFailure(writer.EndContainer(outer));
43+
ReturnErrorOnFailure(aWriter.EndContainer(outer));
4444
return CHIP_NO_ERROR;
4545
}
4646

@@ -94,17 +94,17 @@ CHIP_ERROR TypeInfo::DecodableType::Decode(TLV::TLVReader &reader, const Concret
9494
namespace Events {
9595
{{#zcl_events}}
9696
namespace {{asUpperCamelCase name}} {
97-
CHIP_ERROR Type::Encode(TLV::TLVWriter &writer, TLV::Tag tag) const{
97+
CHIP_ERROR Type::Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const{
9898
TLV::TLVType outer;
99-
ReturnErrorOnFailure(writer.StartContainer(tag, TLV::kTLVType_Structure, outer));
99+
ReturnErrorOnFailure(aWriter.StartContainer(aTag, TLV::kTLVType_Structure, outer));
100100
{{#zcl_event_fields}}
101101
{{#if_is_fabric_scoped_struct type}}
102-
ReturnErrorOnFailure(DataModel::EncodeForRead(writer, TLV::ContextTag(Fields::k{{asUpperCamelCase name}}), GetFabricIndex(), {{asLowerCamelCase name}}));
102+
ReturnErrorOnFailure(DataModel::EncodeForRead(aWriter, TLV::ContextTag(Fields::k{{asUpperCamelCase name}}), GetFabricIndex(), {{asLowerCamelCase name}}));
103103
{{else}}
104-
ReturnErrorOnFailure(DataModel::Encode(writer, TLV::ContextTag(Fields::k{{asUpperCamelCase name}}), {{asLowerCamelCase name}}));
104+
ReturnErrorOnFailure(DataModel::Encode(aWriter, TLV::ContextTag(Fields::k{{asUpperCamelCase name}}), {{asLowerCamelCase name}}));
105105
{{/if_is_fabric_scoped_struct}}
106106
{{/zcl_event_fields}}
107-
ReturnErrorOnFailure(writer.EndContainer(outer));
107+
ReturnErrorOnFailure(aWriter.EndContainer(outer));
108108
return CHIP_NO_ERROR;
109109
}
110110

src/app/zap-templates/templates/app/cluster-objects.zapt

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public:
101101
{{zapTypeToEncodableClusterObjectType type}} {{asLowerCamelCase label}}{{> cluster_objects_field_init}};
102102
{{/zcl_command_arguments}}
103103

104-
CHIP_ERROR Encode(TLV::TLVWriter &writer, TLV::Tag tag) const;
104+
CHIP_ERROR Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const;
105105

106106
using ResponseType =
107107
{{~#if responseName}}
@@ -189,7 +189,7 @@ public:
189189
}
190190
{{/if}}
191191

192-
CHIP_ERROR Encode(TLV::TLVWriter &writer, TLV::Tag tag) const;
192+
CHIP_ERROR Encode(TLV::TLVWriter & aWriter, TLV::Tag aTag) const;
193193
};
194194

195195
struct DecodableType {

0 commit comments

Comments
 (0)