| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- /*
- *
- * Copyright (c) 2021 Project CHIP Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @file Contains Implementation of the ContentApp and the ContentAppPlatform.
- */
- #include "AppImpl.h"
- #include <app-common/zap-generated/attribute-id.h>
- #include <app-common/zap-generated/cluster-id.h>
- #include <app-common/zap-generated/ids/Attributes.h>
- #include <app-common/zap-generated/ids/Clusters.h>
- #include <app/CommandHandler.h>
- #include <app/server/Dnssd.h>
- #include <app/server/Server.h>
- #include <app/util/af.h>
- #include <cstdio>
- #include <inttypes.h>
- #include <jni.h>
- #include <lib/core/CHIPCore.h>
- #include <lib/core/DataModelTypes.h>
- #include <lib/shell/Commands.h>
- #include <lib/shell/Engine.h>
- #include <lib/shell/commands/Help.h>
- #include <lib/support/CHIPArgParser.hpp>
- #include <lib/support/CHIPMem.h>
- #include <lib/support/CodeUtils.h>
- #include <lib/support/ZclString.h>
- #include <platform/CHIPDeviceLayer.h>
- using namespace chip;
- using namespace chip::AppPlatform;
- #if CHIP_DEVICE_CONFIG_ENABLE_BOTH_COMMISSIONER_AND_COMMISSIONEE
- class MyUserPrompter : public UserPrompter
- {
- // tv should override this with a dialog prompt
- inline void PromptForCommissionOKPermission(uint16_t vendorId, uint16_t productId, const char * commissioneeName) override
- {
- /*
- * Called to prompt the user for consent to allow the given commissioneeName/vendorId/productId to be commissioned.
- * For example "[commissioneeName] is requesting permission to cast to this TV, approve?"
- *
- * If user responds with OK then implementor should call CommissionerRespondOk();
- * If user responds with Cancel then implementor should call CommissionerRespondCancel();
- *
- */
- GetCommissionerDiscoveryController()->Ok();
- /**
- * For Demo: Launch Prime Video App
- */
- return;
- }
- // tv should override this with a dialog prompt
- inline void PromptForCommissionPincode(uint16_t vendorId, uint16_t productId, const char * commissioneeName) override
- {
- /*
- * Called to prompt the user to enter the setup pincode displayed by the given commissioneeName/vendorId/productId to be
- * commissioned. For example "Please enter pin displayed in casting app."
- *
- * If user enters with pin then implementor should call CommissionerRespondPincode(uint32_t pincode);
- * If user responds with Cancel then implementor should call CommissionerRespondCancel();
- */
- GetCommissionerDiscoveryController()->CommissionWithPincode(20202021); // dummy pin code
- /**
- * For Demo: Launch Prime Video App
- */
- return;
- }
- // tv should override this with a dialog prompt
- inline void PromptCommissioningSucceeded(uint16_t vendorId, uint16_t productId, const char * commissioneeName) override
- {
- return;
- }
- // tv should override this with a dialog prompt
- inline void PromptCommissioningFailed(const char * commissioneeName, CHIP_ERROR error) override { return; }
- };
- MyUserPrompter gMyUserPrompter;
- #endif // CHIP_DEVICE_CONFIG_ENABLE_BOTH_COMMISSIONER_AND_COMMISSIONEE
- #if CHIP_DEVICE_CONFIG_APP_PLATFORM_ENABLED
- class MyPincodeService : public PincodeService
- {
- uint32_t FetchCommissionPincodeFromContentApp(uint16_t vendorId, uint16_t productId, CharSpan rotatingId) override
- {
- return ContentAppPlatform::GetInstance().GetPincodeFromContentApp(vendorId, productId, rotatingId);
- }
- };
- MyPincodeService gMyPincodeService;
- class MyPostCommissioningListener : public PostCommissioningListener
- {
- void CommissioningCompleted(uint16_t vendorId, uint16_t productId, NodeId nodeId, OperationalDeviceProxy * device) override
- {
- ContentAppPlatform::GetInstance().ManageClientAccess(device, vendorId, GetDeviceCommissioner()->GetNodeId(),
- OnSuccessResponse, OnFailureResponse);
- }
- /* Callback when command results in success */
- static void OnSuccessResponse(void * context)
- {
- ChipLogProgress(Controller, "OnSuccessResponse - Binding Add Successfully");
- CommissionerDiscoveryController * cdc = GetCommissionerDiscoveryController();
- if (cdc != nullptr)
- {
- cdc->PostCommissioningSucceeded();
- }
- }
- /* Callback when command results in failure */
- static void OnFailureResponse(void * context, CHIP_ERROR error)
- {
- ChipLogProgress(Controller, "OnFailureResponse - Binding Add Failed");
- CommissionerDiscoveryController * cdc = GetCommissionerDiscoveryController();
- if (cdc != nullptr)
- {
- cdc->PostCommissioningFailed(error);
- }
- }
- };
- MyPostCommissioningListener gMyPostCommissioningListener;
- ContentAppFactoryImpl gFactory;
- namespace chip {
- namespace AppPlatform {
- // BEGIN DYNAMIC ENDPOINTS
- // =================================================================================
- static const int kNameSize = 32;
- // Current ZCL implementation of Struct uses a max-size array of 254 bytes
- static const int kDescriptorAttributeArraySize = 254;
- // Device types for dynamic endpoints: TODO Need a generated file from ZAP to define these!
- // (taken from chip-devices.xml)
- #define DEVICE_TYPE_CONTENT_APP 0x0024
- // ---------------------------------------------------------------------------
- //
- // CONTENT APP ENDPOINT: contains the following clusters:
- // - Descriptor
- // - Application Basic
- // Declare Descriptor cluster attributes
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(descriptorAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_DEVICE_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* device list */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_SERVER_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* server list */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_CLIENT_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* client list */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_PARTS_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* parts list */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Application Basic information cluster attributes
- // TODO: add missing attributes once schema is updated
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(applicationBasicAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_APPLICATION_VENDOR_NAME_ATTRIBUTE_ID, CHAR_STRING, kNameSize, 0), /* VendorName */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_APPLICATION_VENDOR_ID_ATTRIBUTE_ID, INT16U, 1, 0), /* VendorID */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_APPLICATION_NAME_ATTRIBUTE_ID, CHAR_STRING, kNameSize, 0), /* ApplicationName */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_APPLICATION_PRODUCT_ID_ATTRIBUTE_ID, INT16U, 1, 0), /* ProductID */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_APPLICATION_STATUS_ATTRIBUTE_ID, INT8U, 1, 0), /* ApplicationStatus */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Keypad Input cluster attributes
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(keypadInputAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Application Launcher cluster attributes
- // TODO: add missing attributes once schema is updated
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(applicationLauncherAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_APPLICATION_LAUNCHER_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* catalog list */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Account Login cluster attributes
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(accountLoginAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Content Launcher cluster attributes
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(contentLauncherAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_CONTENT_LAUNCHER_ACCEPT_HEADER_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize,
- 0), /* accept header list */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_CONTENT_LAUNCHER_SUPPORTED_STREAMING_PROTOCOLS_ATTRIBUTE_ID, BITMAP32, 1,
- 0), /* streaming protocols */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Media Playback cluster attributes
- // TODO: add missing attributes once schema is updated
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(mediaPlaybackAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_MEDIA_PLAYBACK_STATE_ATTRIBUTE_ID, ENUM8, 1, 0), /* current state */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_MEDIA_PLAYBACK_START_TIME_ATTRIBUTE_ID, EPOCH_US, 1, 0), /* start time */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_MEDIA_PLAYBACK_DURATION_ATTRIBUTE_ID, INT64U, 1, 0), /* duration */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_MEDIA_PLAYBACK_PLAYBACK_SPEED_ATTRIBUTE_ID, SINGLE, 1, 0), /* playback speed */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_MEDIA_PLAYBACK_PLAYBACK_SEEK_RANGE_END_ATTRIBUTE_ID, INT64U, 1, 0), /* seek range end */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_MEDIA_PLAYBACK_PLAYBACK_SEEK_RANGE_START_ATTRIBUTE_ID, INT64U, 1, 0), /* seek range start */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Target Navigator cluster attributes
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(targetNavigatorAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_TARGET_NAVIGATOR_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* target list */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_TARGET_NAVIGATOR_CURRENT_TARGET_ATTRIBUTE_ID, INT8U, 1, 0), /* current target */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- // Declare Channel cluster attributes
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_BEGIN(channelAttrs)
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_CHANNEL_LIST_ATTRIBUTE_ID, ARRAY, kDescriptorAttributeArraySize, 0), /* channel list */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_CHANNEL_LINEUP_ATTRIBUTE_ID, STRUCT, 1, 0), /* lineup */
- DECLARE_DYNAMIC_ATTRIBUTE(ZCL_CHANNEL_CURRENT_CHANNEL_ATTRIBUTE_ID, STRUCT, 1, 0), /* current channel */
- DECLARE_DYNAMIC_ATTRIBUTE_LIST_END();
- constexpr CommandId keypadInputIncomingCommands[] = {
- app::Clusters::KeypadInput::Commands::SendKey::Id,
- kInvalidCommandId,
- };
- constexpr CommandId keypadInputOutgoingCommands[] = {
- app::Clusters::KeypadInput::Commands::SendKeyResponse::Id,
- kInvalidCommandId,
- };
- constexpr CommandId applicationLauncherIncomingCommands[] = {
- app::Clusters::ApplicationLauncher::Commands::LaunchApp::Id,
- app::Clusters::ApplicationLauncher::Commands::StopApp::Id,
- app::Clusters::ApplicationLauncher::Commands::HideApp::Id,
- kInvalidCommandId,
- };
- constexpr CommandId applicationLauncherOutgoingCommands[] = {
- app::Clusters::ApplicationLauncher::Commands::LauncherResponse::Id,
- kInvalidCommandId,
- };
- constexpr CommandId accountLoginIncomingCommands[] = {
- app::Clusters::AccountLogin::Commands::GetSetupPIN::Id,
- app::Clusters::AccountLogin::Commands::Login::Id,
- app::Clusters::AccountLogin::Commands::Logout::Id,
- kInvalidCommandId,
- };
- constexpr CommandId accountLoginOutgoingCommands[] = {
- app::Clusters::AccountLogin::Commands::GetSetupPINResponse::Id,
- kInvalidCommandId,
- };
- // TODO: Sort out when the optional commands here should be listed.
- constexpr CommandId contentLauncherIncomingCommands[] = {
- app::Clusters::ContentLauncher::Commands::LaunchContent::Id,
- app::Clusters::ContentLauncher::Commands::LaunchURL::Id,
- kInvalidCommandId,
- };
- constexpr CommandId contentLauncherOutgoingCommands[] = {
- app::Clusters::ContentLauncher::Commands::LaunchResponse::Id,
- kInvalidCommandId,
- };
- // TODO: Sort out when the optional commands here should be listed.
- constexpr CommandId mediaPlaybackIncomingCommands[] = {
- app::Clusters::MediaPlayback::Commands::Play::Id, app::Clusters::MediaPlayback::Commands::Pause::Id,
- app::Clusters::MediaPlayback::Commands::StopPlayback::Id, app::Clusters::MediaPlayback::Commands::StartOver::Id,
- app::Clusters::MediaPlayback::Commands::Previous::Id, app::Clusters::MediaPlayback::Commands::Next::Id,
- app::Clusters::MediaPlayback::Commands::Rewind::Id, app::Clusters::MediaPlayback::Commands::FastForward::Id,
- app::Clusters::MediaPlayback::Commands::SkipForward::Id, app::Clusters::MediaPlayback::Commands::SkipBackward::Id,
- app::Clusters::MediaPlayback::Commands::Seek::Id, kInvalidCommandId,
- };
- constexpr CommandId mediaPlaybackOutgoingCommands[] = {
- app::Clusters::MediaPlayback::Commands::PlaybackResponse::Id,
- kInvalidCommandId,
- };
- constexpr CommandId targetNavigatorIncomingCommands[] = {
- app::Clusters::TargetNavigator::Commands::NavigateTarget::Id,
- kInvalidCommandId,
- };
- constexpr CommandId targetNavigatorOutgoingCommands[] = {
- app::Clusters::TargetNavigator::Commands::NavigateTargetResponse::Id,
- kInvalidCommandId,
- };
- // TODO: Sort out when the optional commands here should be listed.
- constexpr CommandId channelIncomingCommands[] = {
- app::Clusters::Channel::Commands::ChangeChannel::Id,
- app::Clusters::Channel::Commands::ChangeChannelByNumber::Id,
- app::Clusters::Channel::Commands::SkipChannel::Id,
- kInvalidCommandId,
- };
- constexpr CommandId channelOutgoingCommands[] = {
- app::Clusters::Channel::Commands::ChangeChannelResponse::Id,
- kInvalidCommandId,
- };
- // Declare Cluster List for Content App endpoint
- DECLARE_DYNAMIC_CLUSTER_LIST_BEGIN(contentAppClusters)
- DECLARE_DYNAMIC_CLUSTER(ZCL_DESCRIPTOR_CLUSTER_ID, descriptorAttrs, nullptr, nullptr),
- DECLARE_DYNAMIC_CLUSTER(ZCL_APPLICATION_BASIC_CLUSTER_ID, applicationBasicAttrs, nullptr, nullptr),
- DECLARE_DYNAMIC_CLUSTER(ZCL_KEYPAD_INPUT_CLUSTER_ID, keypadInputAttrs, keypadInputIncomingCommands,
- keypadInputOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER(ZCL_APPLICATION_LAUNCHER_CLUSTER_ID, applicationLauncherAttrs, applicationLauncherIncomingCommands,
- applicationLauncherOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER(ZCL_ACCOUNT_LOGIN_CLUSTER_ID, accountLoginAttrs, accountLoginIncomingCommands,
- accountLoginOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER(ZCL_CONTENT_LAUNCH_CLUSTER_ID, contentLauncherAttrs, contentLauncherIncomingCommands,
- contentLauncherOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER(ZCL_MEDIA_PLAYBACK_CLUSTER_ID, mediaPlaybackAttrs, mediaPlaybackIncomingCommands,
- mediaPlaybackOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER(ZCL_TARGET_NAVIGATOR_CLUSTER_ID, targetNavigatorAttrs, targetNavigatorIncomingCommands,
- targetNavigatorOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER(ZCL_CHANNEL_CLUSTER_ID, channelAttrs, channelIncomingCommands, channelOutgoingCommands),
- DECLARE_DYNAMIC_CLUSTER_LIST_END;
- // Declare Content App endpoint
- DECLARE_DYNAMIC_ENDPOINT(contentAppEndpoint, contentAppClusters);
- namespace {
- DataVersion gDataVersions[APP_LIBRARY_SIZE][ArraySize(contentAppClusters)];
- EmberAfDeviceType gContentAppDeviceType[] = { { DEVICE_TYPE_CONTENT_APP, 1 } };
- } // anonymous namespace
- ContentAppFactoryImpl::ContentAppFactoryImpl() {}
- uint16_t ContentAppFactoryImpl::GetPlatformCatalogVendorId()
- {
- return kCatalogVendorId;
- }
- CHIP_ERROR ContentAppFactoryImpl::LookupCatalogVendorApp(uint16_t vendorId, uint16_t productId, CatalogVendorApp * destinationApp)
- {
- std::string appId = BuildAppId(vendorId);
- destinationApp->catalogVendorId = GetPlatformCatalogVendorId();
- Platform::CopyString(destinationApp->applicationId, sizeof(destinationApp->applicationId), appId.c_str());
- return CHIP_NO_ERROR;
- }
- CHIP_ERROR ContentAppFactoryImpl::ConvertToPlatformCatalogVendorApp(const CatalogVendorApp & sourceApp,
- CatalogVendorApp * destinationApp)
- {
- destinationApp->catalogVendorId = GetPlatformCatalogVendorId();
- std::string appId(sourceApp.applicationId);
- if (appId == "applicationId")
- {
- // regression test case passes "applicationId", map this to our test suite app
- Platform::CopyString(destinationApp->applicationId, sizeof(destinationApp->applicationId), "1111");
- }
- else if (appId == "exampleid")
- {
- // cert test case passes "exampleid", map this to our test suite app
- Platform::CopyString(destinationApp->applicationId, sizeof(destinationApp->applicationId), "1");
- }
- else if (appId == "exampleString")
- {
- // cert test case passes "exampleString", map this to our test suite app
- Platform::CopyString(destinationApp->applicationId, sizeof(destinationApp->applicationId), "65521");
- }
- else
- {
- // for now, just return the applicationId passed in
- Platform::CopyString(destinationApp->applicationId, sizeof(destinationApp->applicationId), sourceApp.applicationId);
- }
- return CHIP_NO_ERROR;
- }
- ContentApp * ContentAppFactoryImpl::LoadContentApp(const CatalogVendorApp & vendorApp)
- {
- ChipLogProgress(DeviceLayer, "ContentAppFactoryImpl: LoadContentAppByAppId catalogVendorId=%d applicationId=%s ",
- vendorApp.catalogVendorId, vendorApp.applicationId);
- for (size_t i = 0; i < mContentApps.size(); ++i)
- {
- auto & app = mContentApps.at(i);
- ChipLogProgress(DeviceLayer, " Looking next=%s ", app.GetApplicationBasicDelegate()->GetCatalogVendorApp()->applicationId);
- if (app.GetApplicationBasicDelegate()->GetCatalogVendorApp()->Matches(vendorApp))
- {
- ContentAppPlatform::GetInstance().AddContentApp(&app, &contentAppEndpoint, Span<DataVersion>(gDataVersions[i]),
- Span<const EmberAfDeviceType>(gContentAppDeviceType));
- return &app;
- }
- }
- ChipLogProgress(DeviceLayer, "LoadContentAppByAppId NOT FOUND catalogVendorId=%d applicationId=%s ", vendorApp.catalogVendorId,
- vendorApp.applicationId);
- return nullptr;
- }
- EndpointId ContentAppFactoryImpl::AddContentApp(ContentAppImpl & app)
- {
- DataVersion dataVersionBuf[ArraySize(contentAppClusters)];
- EndpointId epId = ContentAppPlatform::GetInstance().AddContentApp(&app, &contentAppEndpoint, Span<DataVersion>(dataVersionBuf),
- Span<const EmberAfDeviceType>(gContentAppDeviceType));
- ChipLogProgress(DeviceLayer, "ContentAppFactoryImpl AddContentApp endpoint returned %d. Endpoint set %d", epId,
- app.GetEndpointId());
- mContentApps.push_back(app);
- return epId;
- }
- /**
- * @brief Code for testing the message flow path.
- *
- */
- class TestCommandHandlerCallback : public app::CommandHandler::Callback
- {
- void OnDone(app::CommandHandler & apCommandObj) {}
- void DispatchCommand(app::CommandHandler & apCommandObj, const app::ConcreteCommandPath & aCommandPath,
- TLV::TLVReader & apPayload)
- {}
- Protocols::InteractionModel::Status CommandExists(const app::ConcreteCommandPath & aCommandPath)
- {
- return Protocols::InteractionModel::Status::Success;
- }
- };
- /**
- * @brief Code for testing the message flow path.
- *
- */
- void ContentAppFactoryImpl::SendTestMessage(EndpointId epId, const char * message)
- {
- ChipLogProgress(DeviceLayer, "ContentAppFactoryImpl SendTestMessage called with message %s & endpointId %d", message, epId);
- for (size_t i = 0; i < mContentApps.size(); ++i)
- {
- ContentAppImpl app = mContentApps.at(i);
- ChipLogProgress(DeviceLayer, "ContentAppFactoryImpl checking app with endpointId %d", app.ContentApp::GetEndpointId());
- if (app.GetEndpointId() == epId)
- {
- ChipLogProgress(DeviceLayer, "ContentAppFactoryImpl SendTestMessage endpoint found");
- app::ConcreteCommandPath commandPath(epId, app::Clusters::ContentLauncher::Id,
- app::Clusters::ContentLauncher::Commands::LaunchURL::Id);
- chip::AppPlatform::TestCommandHandlerCallback callback;
- app::CommandHandler commandHandler(&callback);
- CommandResponseHelper<LaunchResponseType> helper(&commandHandler, commandPath);
- chip::app::Clusters::ContentLauncher::Structs::BrandingInformation::Type branding;
- app.GetContentLauncherDelegate()->HandleLaunchUrl(helper, CharSpan::fromCharString(message),
- CharSpan::fromCharString("Temp Display"), branding);
- }
- }
- }
- } // namespace AppPlatform
- } // namespace chip
- #endif // CHIP_DEVICE_CONFIG_APP_PLATFORM_ENABLED
- CHIP_ERROR InitVideoPlayerPlatform()
- {
- #if CHIP_DEVICE_CONFIG_APP_PLATFORM_ENABLED
- ContentAppPlatform::GetInstance().SetupAppPlatform();
- ContentAppPlatform::GetInstance().SetContentAppFactory(&gFactory);
- #endif // CHIP_DEVICE_CONFIG_APP_PLATFORM_ENABLED
- #if CHIP_DEVICE_CONFIG_ENABLE_BOTH_COMMISSIONER_AND_COMMISSIONEE
- CommissionerDiscoveryController * cdc = GetCommissionerDiscoveryController();
- if (cdc != nullptr)
- {
- cdc->SetPincodeService(&gMyPincodeService);
- cdc->SetUserPrompter(&gMyUserPrompter);
- cdc->SetPostCommissioningListener(&gMyPostCommissioningListener);
- }
- ChipLogProgress(AppServer, "Starting commissioner");
- ReturnErrorOnFailure(InitCommissioner(CHIP_PORT + 2 + 10, CHIP_UDC_PORT));
- ChipLogProgress(AppServer, "Started commissioner");
- #endif // CHIP_DEVICE_CONFIG_ENABLE_BOTH_COMMISSIONER_AND_COMMISSIONEE
- return CHIP_NO_ERROR;
- }
- CHIP_ERROR PreServerInit()
- {
- /**
- * Apply any user-defined configurations prior to initializing Server.
- *
- * Ex.
- * DnssdServer::Instance().SetExtendedDiscoveryTimeoutSecs(userTimeoutSecs);
- *
- */
- return CHIP_NO_ERROR;
- }
- EndpointId AddContentApp(const char * szVendorName, uint16_t vendorId, const char * szApplicationName, uint16_t productId,
- const char * szApplicationVersion, jobject manager)
- {
- ContentAppImpl app =
- ContentAppImpl(szVendorName, vendorId, szApplicationName, productId, szApplicationVersion, "34567890", manager);
- ChipLogProgress(DeviceLayer, "AppImpl: AddContentApp vendorId=%d applicationName=%s ", vendorId, szApplicationName);
- return gFactory.AddContentApp(app);
- }
- void SendTestMessage(EndpointId epID, const char * message)
- {
- gFactory.SendTestMessage(epID, message);
- }
|