Skip to content

Commit 320f83e

Browse files
Linux tv-casting-app v1.3 Commissioner-Generated passcode flow (project-chip#33479)
* Linux tv-casting-app v1.3 Commissioner-Generated passcode flow * Fixing style issues * Addressed comments by andy31415 and tcarmelveilleux * Fixing style issue * Addressed comments by andy31415 and chrisdecenzo
1 parent 9b778f3 commit 320f83e

17 files changed

+631
-172
lines changed

examples/tv-casting-app/android/App/app/src/main/jni/cpp/core/MatterCastingPlayer-JNI.cpp

+31-18
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "core/CastingApp.h" // from tv-casting-common
2525
#include "core/CastingPlayer.h" // from tv-casting-common
2626
#include "core/CastingPlayerDiscovery.h" // from tv-casting-common
27+
#include "core/ConnectionCallbacks.h" // from tv-casting-common
2728

2829
#include <app/clusters/bindings/BindingManager.h>
2930
#include <app/server/Server.h>
@@ -92,24 +93,36 @@ JNI_METHOD(jobject, verifyOrEstablishConnection)
9293
MatterCastingPlayerJNIMgr().mConnectionSuccessHandler.SetUp(env, jSuccessCallback);
9394
MatterCastingPlayerJNIMgr().mConnectionFailureHandler.SetUp(env, jFailureCallback);
9495

95-
// TODO: In the following PRs. Add optional CommissionerDeclarationHandler callback parameter.
96-
castingPlayer->VerifyOrEstablishConnection(
97-
[](CHIP_ERROR err, CastingPlayer * playerPtr) {
98-
ChipLogProgress(AppServer, "MatterCastingPlayer-JNI::verifyOrEstablishConnection() ConnectCallback called");
99-
if (err == CHIP_NO_ERROR)
100-
{
101-
ChipLogProgress(AppServer, "MatterCastingPlayer-JNI:: Connected to Casting Player with device ID: %s",
102-
playerPtr->GetId());
103-
MatterCastingPlayerJNIMgr().mConnectionSuccessHandler.Handle(nullptr);
104-
}
105-
else
106-
{
107-
ChipLogError(AppServer, "MatterCastingPlayer-JNI:: ConnectCallback, connection error: %" CHIP_ERROR_FORMAT,
108-
err.Format());
109-
MatterCastingPlayerJNIMgr().mConnectionFailureHandler.Handle(err);
110-
}
111-
},
112-
static_cast<unsigned long long int>(commissioningWindowTimeoutSec), idOptions);
96+
auto connectCallback = [](CHIP_ERROR err, CastingPlayer * playerPtr) {
97+
ChipLogProgress(AppServer, "MatterCastingPlayer-JNI::verifyOrEstablishConnection() ConnectCallback()");
98+
if (err == CHIP_NO_ERROR)
99+
{
100+
ChipLogProgress(AppServer,
101+
"MatterCastingPlayer-JNI::verifyOrEstablishConnection() ConnectCallback() Connected to Casting Player "
102+
"with device ID: %s",
103+
playerPtr->GetId());
104+
// The Java jSuccessCallback is expecting a Void v callback parameter which translates to a nullptr. When calling the
105+
// Java method from C++ via JNI, passing nullptr is equivalent to passing a Void object in Java.
106+
MatterCastingPlayerJNIMgr().mConnectionSuccessHandler.Handle(nullptr);
107+
}
108+
else
109+
{
110+
ChipLogError(
111+
AppServer,
112+
"MatterCastingPlayer-JNI::verifyOrEstablishConnection() ConnectCallback() Connection error: %" CHIP_ERROR_FORMAT,
113+
err.Format());
114+
MatterCastingPlayerJNIMgr().mConnectionFailureHandler.Handle(err);
115+
}
116+
};
117+
118+
// TODO: In the following PRs. Add optional CommissionerDeclarationHandler callback parameter for the Commissioner-Generated
119+
// passcode commissioning flow.
120+
matter::casting::core::ConnectionCallbacks connectionCallbacks;
121+
connectionCallbacks.mOnConnectionComplete = connectCallback;
122+
123+
// TODO: Verify why commissioningWindowTimeoutSec is a "unsigned long long int" type. Seems too big.
124+
castingPlayer->VerifyOrEstablishConnection(connectionCallbacks,
125+
static_cast<unsigned long long int>(commissioningWindowTimeoutSec), idOptions);
113126
return support::convertMatterErrorFromCppToJava(CHIP_NO_ERROR);
114127
}
115128

examples/tv-casting-app/darwin/MatterTvCastingBridge/MatterTvCastingBridge/MCCastingPlayer.mm

+17-11
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
#import "MCEndpoint_Internal.h"
2222
#import "MCErrorUtils.h"
2323

24-
#import "core/CastingPlayer.h"
24+
#import "core/CastingPlayer.h" // from tv-casting-common
25+
#import "core/ConnectionCallbacks.h" // from tv-casting-common
2526

2627
#import <Foundation/Foundation.h>
2728

@@ -47,7 +48,7 @@ - (void)verifyOrEstablishConnectionWithCompletionBlock:(void (^_Nonnull)(NSError
4748

4849
- (void)verifyOrEstablishConnectionWithCompletionBlock:(void (^_Nonnull)(NSError * _Nullable))completion timeout:(long long)timeout desiredEndpointFilter:(MCEndpointFilter * _Nullable)desiredEndpointFilter
4950
{
50-
ChipLogProgress(AppServer, "MCCastingPlayer.verifyOrEstablishConnectionWithCompletionBlock called");
51+
ChipLogProgress(AppServer, "MCCastingPlayer.verifyOrEstablishConnectionWithCompletionBlock() called");
5152
VerifyOrReturn([[MCCastingApp getSharedInstance] isRunning], ChipLogError(AppServer, "MCCastingApp NOT running"));
5253

5354
dispatch_queue_t workQueue = [[MCCastingApp getSharedInstance] getWorkQueue];
@@ -63,18 +64,23 @@ - (void)verifyOrEstablishConnectionWithCompletionBlock:(void (^_Nonnull)(NSError
6364

6465
CHIP_ERROR result = idOptions.addTargetAppInfo(targetAppInfo);
6566
if (result != CHIP_NO_ERROR) {
66-
ChipLogError(AppServer, "MCCastingPlayer.verifyOrEstablishConnectionWithCompletionBlock failed to add targetAppInfo: %" CHIP_ERROR_FORMAT, result.Format());
67+
ChipLogError(AppServer, "MCCastingPlayer.verifyOrEstablishConnectionWithCompletionBlock() failed to add targetAppInfo: %" CHIP_ERROR_FORMAT, result.Format());
6768
}
6869
}
6970

70-
// TODO: In the following PRs. Add optional CommissionerDeclarationHandler callback parameter.
71-
_cppCastingPlayer->VerifyOrEstablishConnection(
72-
[completion](CHIP_ERROR err, matter::casting::core::CastingPlayer * castingPlayer) {
73-
dispatch_queue_t clientQueue = [[MCCastingApp getSharedInstance] getClientQueue];
74-
dispatch_async(clientQueue, ^{
75-
completion(err == CHIP_NO_ERROR ? nil : [MCErrorUtils NSErrorFromChipError:err]);
76-
});
77-
}, timeout, idOptions);
71+
void (^connectCallback)(CHIP_ERROR, matter::casting::core::CastingPlayer *) = ^(CHIP_ERROR err, matter::casting::core::CastingPlayer * castingPlayer) {
72+
ChipLogProgress(AppServer, "MCCastingPlayer.verifyOrEstablishConnectionWithCompletionBlock() ConnectCallback()");
73+
dispatch_queue_t clientQueue = [[MCCastingApp getSharedInstance] getClientQueue];
74+
dispatch_async(clientQueue, ^{
75+
completion(err == CHIP_NO_ERROR ? nil : [MCErrorUtils NSErrorFromChipError:err]);
76+
});
77+
};
78+
79+
matter::casting::core::ConnectionCallbacks connectionCallbacks;
80+
connectionCallbacks.mOnConnectionComplete = connectCallback;
81+
82+
// TODO: In the following PRs. Add optional CommissionerDeclarationHandler callback parameter for the Commissioner-Generated passcode commissioning flow.
83+
_cppCastingPlayer->VerifyOrEstablishConnection(connectionCallbacks, timeout, idOptions);
7884
});
7985
}
8086

0 commit comments

Comments
 (0)