forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidLogDownloadFromNode.h
97 lines (80 loc) · 4.49 KB
/
AndroidLogDownloadFromNode.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
*
* Copyright (c) 2024 Project CHIP Authors
* All rights reserved.
*
* 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.
*/
#pragma once
#include <app/OperationalSessionSetup.h>
#include <controller/CHIPDeviceController.h>
#include <lib/core/CHIPCallback.h>
#include <lib/support/JniReferences.h>
#include <lib/support/JniTypeWrappers.h>
#include "BdxDiagnosticLogsReceiver.h"
namespace chip {
namespace Controller {
/**
* A helper class to download diagnostic log given some parameters.
*/
class AndroidLogDownloadFromNode
{
public:
/*
* @brief
* Try to look up the device attached to our controller with the given
* remote node id and ask it to download diagnostic log.
* If function returns an error, callback will never be be executed. Otherwise, callback will always be executed.
*
* @param[in] remoteNodeId The remote device Id
* @param[in] intent Diagnostic log type
* @param[in] timeout Download log timeout value. If this value is 0, controller does not handle timeouts.
* @param[in] callback The callback to call when Log Download data is received and when an error occurs
*/
static CHIP_ERROR LogDownloadFromNode(DeviceController * controller, NodeId remoteNodeId,
app::Clusters::DiagnosticLogs::IntentEnum intent, uint16_t timeout,
jobject jCallbackObject);
private:
AndroidLogDownloadFromNode(DeviceController * controller, NodeId remoteNodeId, app::Clusters::DiagnosticLogs::IntentEnum intent,
uint16_t timeout, jobject javaCallback);
~AndroidLogDownloadFromNode() {}
DeviceController * mController = nullptr;
chip::Callback::Callback<OnDeviceConnected> mOnDeviceConnectedCallback;
chip::Callback::Callback<OnDeviceConnectionFailure> mOnDeviceConnectionFailureCallback;
chip::Callback::Callback<OnBdxTransfer> mOnBdxTransferCallback;
chip::Callback::Callback<OnBdxTransferSuccess> mOnBdxTransferSuccessCallback;
chip::Callback::Callback<OnBdxTransferFailure> mOnBdxTransferFailureCallback;
chip::JniGlobalReference mJavaCallback;
NodeId mRemoteNodeId = chip::kUndefinedNodeId;
app::Clusters::DiagnosticLogs::IntentEnum mIntent = app::Clusters::DiagnosticLogs::IntentEnum::kUnknownEnumValue;
uint16_t mTimeout = 0;
char mFileDesignatorBuffer[bdx::DiagnosticLogs::kMaxFileDesignatorLen];
MutableCharSpan mFileDesignator = MutableCharSpan(mFileDesignatorBuffer, bdx::DiagnosticLogs::kMaxFileDesignatorLen);
BdxDiagnosticLogsReceiver * mBdxReceiver = nullptr;
CHIP_ERROR GetConnectedDevice();
CHIP_ERROR SendRetrieveLogsRequest(Messaging::ExchangeManager & exchangeMgr, const SessionHandle & sessionHandle);
void OnTransferCallback(FabricIndex fabricIndex, NodeId remoteNodeId, const chip::ByteSpan & data,
CHIP_ERROR * errInfoOnFailure);
static void FinishLogDownloadFromNode(void * context, CHIP_ERROR err);
static void OnDeviceConnectedFn(void * context, Messaging::ExchangeManager & exchangeMgr, const SessionHandle & sessionHandle);
static void OnDeviceConnectionFailureFn(void * context, const ScopedNodeId & peerId, CHIP_ERROR error);
static void OnResponseRetrieveLogs(void * context,
const app::Clusters::DiagnosticLogs::Commands::RetrieveLogsResponse::DecodableType & data);
static void OnCommandFailure(void * context, CHIP_ERROR err);
static void OnBdxTransferCallback(void * context, FabricIndex fabricIndex, NodeId remoteNodeId, const chip::ByteSpan & data,
CHIP_ERROR * errInfoOnFailure);
static void OnBdxTransferSuccessCallback(void * context, FabricIndex fabricIndex, NodeId remoteNodeId);
static void OnBdxTransferFailureCallback(void * context, FabricIndex fabricIndex, NodeId remoteNodeId, CHIP_ERROR status);
};
} // namespace Controller
} // namespace chip