|
24 | 24 | #include "core/CastingApp.h" // from tv-casting-common
|
25 | 25 | #include "core/CastingPlayer.h" // from tv-casting-common
|
26 | 26 | #include "core/CastingPlayerDiscovery.h" // from tv-casting-common
|
| 27 | +#include "core/ConnectionCallbacks.h" // from tv-casting-common |
27 | 28 |
|
28 | 29 | #include <app/clusters/bindings/BindingManager.h>
|
29 | 30 | #include <app/server/Server.h>
|
@@ -92,24 +93,36 @@ JNI_METHOD(jobject, verifyOrEstablishConnection)
|
92 | 93 | MatterCastingPlayerJNIMgr().mConnectionSuccessHandler.SetUp(env, jSuccessCallback);
|
93 | 94 | MatterCastingPlayerJNIMgr().mConnectionFailureHandler.SetUp(env, jFailureCallback);
|
94 | 95 |
|
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); |
113 | 126 | return support::convertMatterErrorFromCppToJava(CHIP_NO_ERROR);
|
114 | 127 | }
|
115 | 128 |
|
|
0 commit comments