Skip to content

Commit 8863452

Browse files
Addressed comments by andy31415, part 2 member variable name change
1 parent 1e6c5d0 commit 8863452

File tree

12 files changed

+37
-42
lines changed

12 files changed

+37
-42
lines changed

examples/tv-casting-app/android/App/app/src/main/java/com/matter/casting/DiscoveryExampleFragment.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,8 @@ private String getCastingPlayerButtonText(CastingPlayer player) {
352352
aux += (aux.isEmpty() ? "" : ", ") + "Resolved IP?: " + (player.getIpAddresses().size() > 0);
353353
aux +=
354354
(aux.isEmpty() ? "" : ", ")
355-
+ "CommissionerPasscode: "
356-
+ (player.isCommissionerPasscodeSupported());
355+
+ "Supports Commissioner Generated Passcode: "
356+
+ (player.getSupportsCommissionerGeneratedPasscode());
357357

358358
aux = aux.isEmpty() ? aux : "\n" + aux;
359359
return main + aux;

examples/tv-casting-app/android/App/app/src/main/jni/com/matter/casting/core/CastingPlayer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public interface CastingPlayer {
4949

5050
long getDeviceType();
5151

52-
boolean isCommissionerPasscodeSupported();
52+
boolean getSupportsCommissionerGeneratedPasscode();
5353

5454
List<Endpoint> getEndpoints();
5555

examples/tv-casting-app/android/App/app/src/main/jni/com/matter/casting/core/MatterCastingPlayer.java

+5-9
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,7 @@ public class MatterCastingPlayer implements CastingPlayer {
4747
private int productId;
4848
private int vendorId;
4949
private long deviceType;
50-
/**
51-
* The CommissionerPasscode field indicates whether a CastingPlayer supports the
52-
* Commissioner-Generated Passcode feature.
53-
*/
54-
private boolean commissionerPasscode;
50+
private boolean supportsCommissionerGeneratedPasscode;
5551

5652
protected long _cppCastingPlayer;
5753

@@ -66,7 +62,7 @@ public MatterCastingPlayer(
6662
int productId,
6763
int vendorId,
6864
long deviceType,
69-
boolean commissionerPasscode) {
65+
boolean supportsCommissionerGeneratedPasscode) {
7066
this.connected = connected;
7167
this.deviceId = deviceId;
7268
this.hostName = hostName;
@@ -77,7 +73,7 @@ public MatterCastingPlayer(
7773
this.productId = productId;
7874
this.vendorId = vendorId;
7975
this.deviceType = deviceType;
80-
this.commissionerPasscode = commissionerPasscode;
76+
this.supportsCommissionerGeneratedPasscode = supportsCommissionerGeneratedPasscode;
8177
}
8278

8379
/**
@@ -140,8 +136,8 @@ public long getDeviceType() {
140136
}
141137

142138
@Override
143-
public boolean isCommissionerPasscodeSupported() {
144-
return this.commissionerPasscode;
139+
public boolean getSupportsCommissionerGeneratedPasscode() {
140+
return this.supportsCommissionerGeneratedPasscode;
145141
}
146142

147143
@Override

examples/tv-casting-app/android/App/app/src/main/jni/cpp/support/Converters-JNI.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,12 @@ jobject convertCastingPlayerFromCppToJava(matter::casting::memory::Strong<core::
182182

183183
// Create a new instance of the MatterCastingPlayer Java class
184184
jobject jMatterCastingPlayer = nullptr;
185-
jMatterCastingPlayer =
186-
env->NewObject(matterCastingPlayerJavaClass, constructor, static_cast<jboolean>(player->IsConnected()),
187-
env->NewStringUTF(player->GetId()), env->NewStringUTF(player->GetHostName()),
188-
env->NewStringUTF(player->GetDeviceName()), env->NewStringUTF(player->GetInstanceName()), jIpAddressList,
189-
(jint) (player->GetPort()), (jint) (player->GetProductId()), (jint) (player->GetVendorId()),
190-
(jlong) (player->GetDeviceType()), static_cast<jboolean>(player->isCommissionerPasscodeSupported()));
185+
jMatterCastingPlayer = env->NewObject(matterCastingPlayerJavaClass, constructor, static_cast<jboolean>(player->IsConnected()),
186+
env->NewStringUTF(player->GetId()), env->NewStringUTF(player->GetHostName()),
187+
env->NewStringUTF(player->GetDeviceName()), env->NewStringUTF(player->GetInstanceName()),
188+
jIpAddressList, (jint) (player->GetPort()), (jint) (player->GetProductId()),
189+
(jint) (player->GetVendorId()), (jlong) (player->GetDeviceType()),
190+
static_cast<jboolean>(player->GetSupportsCommissionerGeneratedPasscode()));
191191
if (jMatterCastingPlayer == nullptr)
192192
{
193193
ChipLogError(AppServer, "convertCastingPlayerFromCppToJava(): Could not create MatterCastingPlayer Java object");

examples/tv-casting-app/tv-casting-common/core/CastingPlayer.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ void CastingPlayer::LogDetail() const
282282
{
283283
ChipLogDetail(AppServer, "\tDevice Type: %" PRIu32, mAttributes.deviceType);
284284
}
285-
ChipLogDetail(AppServer, "\tCommissionerPasscode: %s", mAttributes.commissionerPasscode ? "true" : "false");
285+
ChipLogDetail(AppServer, "\tSupports Commissioner Generated Passcode: %s",
286+
mAttributes.supportsCommissionerGeneratedPasscode ? "true" : "false");
286287
if (mAttributes.nodeId > 0)
287288
{
288289
ChipLogDetail(AppServer, "\tNode ID: 0x" ChipLogFormatX64, ChipLogValueX64(mAttributes.nodeId));

examples/tv-casting-app/tv-casting-common/core/CastingPlayer.h

+2-5
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ class CastingPlayerAttributes
6363
uint16_t productId;
6464
uint16_t vendorId;
6565
uint32_t deviceType;
66-
/**
67-
* The CommissionerPasscode field indicates whether a CastingPlayer supports the Commissioner-Generated Passcode feature.
68-
*/
69-
bool commissionerPasscode;
66+
bool supportsCommissionerGeneratedPasscode;
7067

7168
chip::NodeId nodeId = 0;
7269
chip::FabricIndex fabricIndex = 0;
@@ -186,7 +183,7 @@ class CastingPlayer : public std::enable_shared_from_this<CastingPlayer>
186183

187184
uint32_t GetDeviceType() const { return mAttributes.deviceType; }
188185

189-
bool isCommissionerPasscodeSupported() const { return mAttributes.commissionerPasscode; }
186+
bool GetSupportsCommissionerGeneratedPasscode() const { return mAttributes.supportsCommissionerGeneratedPasscode; }
190187

191188
chip::NodeId GetNodeId() const { return mAttributes.nodeId; }
192189

examples/tv-casting-app/tv-casting-common/core/CastingPlayerDiscovery.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ void DeviceDiscoveryDelegateImpl::OnDiscoveredDevice(const chip::Dnssd::Discover
9393
{
9494
attributes.ipAddresses[j] = nodeData.resolutionData.ipAddress[j];
9595
}
96-
attributes.interfaceId = nodeData.resolutionData.interfaceId;
97-
attributes.port = nodeData.resolutionData.port;
98-
attributes.productId = nodeData.nodeData.productId;
99-
attributes.vendorId = nodeData.nodeData.vendorId;
100-
attributes.deviceType = nodeData.nodeData.deviceType;
101-
attributes.commissionerPasscode = nodeData.nodeData.commissionerPasscode;
96+
attributes.interfaceId = nodeData.resolutionData.interfaceId;
97+
attributes.port = nodeData.resolutionData.port;
98+
attributes.productId = nodeData.nodeData.productId;
99+
attributes.vendorId = nodeData.nodeData.vendorId;
100+
attributes.deviceType = nodeData.nodeData.deviceType;
101+
attributes.supportsCommissionerGeneratedPasscode = nodeData.nodeData.supportsCommissionerGeneratedPasscode;
102102

103103
memory::Strong<CastingPlayer> player = std::make_shared<CastingPlayer>(attributes);
104104

examples/tv-casting-app/tv-casting-common/support/CastingStore.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ std::vector<core::CastingPlayer> CastingStore::ReadAll()
182182
continue;
183183
}
184184

185-
if (castingPlayerContainerTagNum == kCastingPlayerCommissionerPasscodeTag)
185+
if (castingPlayerContainerTagNum == kCastingPlayerSupportsCommissionerGeneratedPasscodeTag)
186186
{
187-
err = reader.Get(attributes.commissionerPasscode);
187+
err = reader.Get(attributes.supportsCommissionerGeneratedPasscode);
188188
VerifyOrReturnValue(err == CHIP_NO_ERROR, std::vector<core::CastingPlayer>(),
189189
ChipLogError(AppServer, "TLVReader.Get failed %" CHIP_ERROR_FORMAT, err.Format()));
190190
continue;
@@ -480,8 +480,8 @@ CHIP_ERROR CastingStore::WriteAll(std::vector<core::CastingPlayer> castingPlayer
480480
ReturnErrorOnFailure(tlvWriter.Put(chip::TLV::ContextTag(kCastingPlayerVendorIdTag), castingPlayer.GetVendorId()));
481481
ReturnErrorOnFailure(tlvWriter.Put(chip::TLV::ContextTag(kCastingPlayerProductIdTag), castingPlayer.GetProductId()));
482482
ReturnErrorOnFailure(tlvWriter.Put(chip::TLV::ContextTag(kCastingPlayerDeviceTypeIdTag), castingPlayer.GetDeviceType()));
483-
ReturnErrorOnFailure(tlvWriter.Put(chip::TLV::ContextTag(kCastingPlayerCommissionerPasscodeTag),
484-
castingPlayer.isCommissionerPasscodeSupported()));
483+
ReturnErrorOnFailure(tlvWriter.Put(chip::TLV::ContextTag(kCastingPlayerSupportsCommissionerGeneratedPasscodeTag),
484+
castingPlayer.GetSupportsCommissionerGeneratedPasscode()));
485485
ReturnErrorOnFailure(tlvWriter.Put(chip::TLV::ContextTag(kCastingPlayerPortTag), castingPlayer.GetPort()));
486486
ReturnErrorOnFailure(tlvWriter.PutBytes(chip::TLV::ContextTag(kCastingPlayerInstanceNameTag),
487487
(const uint8_t *) castingPlayer.GetInstanceName(),

examples/tv-casting-app/tv-casting-common/support/CastingStore.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class CastingStore : public chip::FabricTable::Delegate
9797
kCastingPlayerEndpointServerListContainerTag,
9898
kCastingPlayerEndpointServerClusterIdTag,
9999

100-
kCastingPlayerCommissionerPasscodeTag,
100+
kCastingPlayerSupportsCommissionerGeneratedPasscodeTag,
101101

102102
kContextTagMaxNum = UINT8_MAX
103103
};

src/lib/dnssd/TxtFields.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ void FillNodeDataFromTxt(const ByteSpan & key, const ByteSpan & val, DnssdNodeDa
256256
nodeData.pairingHint = Internal::GetPairingHint(val);
257257
break;
258258
case TxtFieldKey::kCommissionerPasscode:
259-
nodeData.commissionerPasscode = Internal::GetCommissionerPasscode(val);
259+
nodeData.supportsCommissionerGeneratedPasscode = Internal::GetCommissionerPasscode(val);
260260
break;
261261
default:
262262
break;

src/lib/dnssd/Types.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ struct DnssdNodeData
214214
uint16_t productId = 0;
215215
uint16_t pairingHint = 0;
216216
uint8_t commissioningMode = 0;
217-
bool commissionerPasscode = false;
217+
bool supportsCommissionerGeneratedPasscode = false;
218218
uint8_t rotatingId[kMaxRotatingIdLen] = {};
219219
char instanceName[Commission::kInstanceNameMaxLength + 1] = {};
220220
char deviceName[kMaxDeviceNameLen + 1] = {};
@@ -272,7 +272,8 @@ struct DnssdNodeData
272272
ChipLogDetail(Discovery, "\tInstance Name: %s", instanceName);
273273
}
274274
ChipLogDetail(Discovery, "\tCommissioning Mode: %u", commissioningMode);
275-
ChipLogDetail(Discovery, "\tCommissionerPasscode: %s", commissionerPasscode ? "true" : "false");
275+
ChipLogDetail(Discovery, "\tSupports Commissioner Generated Passcode: %s",
276+
supportsCommissionerGeneratedPasscode ? "true" : "false");
276277
}
277278
};
278279

src/lib/dnssd/tests/TestTxtFields.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ bool NodeDataIsEmpty(const DiscoveredNodeData & node)
309309
node.nodeData.pairingHint != 0 || node.resolutionData.mrpRetryIntervalIdle.HasValue() ||
310310
node.resolutionData.mrpRetryIntervalActive.HasValue() || node.resolutionData.mrpRetryActiveThreshold.HasValue() ||
311311
node.resolutionData.isICDOperatingAsLIT.HasValue() || node.resolutionData.supportsTcp ||
312-
node.nodeData.commissionerPasscode != 0)
312+
node.nodeData.supportsCommissionerGeneratedPasscode != 0)
313313
{
314314
return false;
315315
}
@@ -360,12 +360,12 @@ void TestFillDiscoveredNodeDataFromTxt(nlTestSuite * inSuite, void * inContext)
360360
filled.nodeData.commissioningMode = 0;
361361
NL_TEST_ASSERT(inSuite, NodeDataIsEmpty(filled));
362362

363-
// CommissionerPasscode
363+
// Supports Commissioner Generated Passcode
364364
strcpy(key, "CP");
365365
strcpy(val, "1");
366366
FillNodeDataFromTxt(GetSpan(key), GetSpan(val), filled.nodeData);
367-
NL_TEST_ASSERT(inSuite, filled.nodeData.commissionerPasscode == true);
368-
filled.nodeData.commissionerPasscode = false;
367+
NL_TEST_ASSERT(inSuite, filled.nodeData.supportsCommissionerGeneratedPasscode == true);
368+
filled.nodeData.supportsCommissionerGeneratedPasscode = false;
369369
NL_TEST_ASSERT(inSuite, NodeDataIsEmpty(filled));
370370

371371
// Device type

0 commit comments

Comments
 (0)