Skip to content

Commit b2da1b0

Browse files
Move CommandSender and PendingResponseTracker to IM. (project-chip#32227)
* Move CommandSender and PendingResponseTracker to IM. Previous location of these files was `app` however this created apparent circular dependencies for includes. * Restyle * CommandSender is now tracked * Move read and write clients to interactionmodel as well * Also pull in interactionmodelhelper .... this is a very poorly named file --------- Co-authored-by: Andrei Litvin <andreilitvin@google.com>
1 parent a2c53a2 commit b2da1b0

File tree

3 files changed

+17
-25
lines changed

3 files changed

+17
-25
lines changed

.github/workflows/lint.yml

-4
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,11 @@ jobs:
9595
--known-failure app/att-storage.h \
9696
--known-failure app/CommandHandler.h \
9797
--known-failure app/CommandHandlerInterface.h \
98-
--known-failure app/CommandSender.h \
9998
--known-failure app/CommandSenderLegacyCallback.h \
10099
--known-failure app/CompatEnumNames.h \
101100
--known-failure app/data-model/ListLargeSystemExtensions.h \
102101
--known-failure app/EventHeader.h \
103102
--known-failure app/EventLoggingTypes.h \
104-
--known-failure app/InteractionModelHelper.h \
105-
--known-failure app/ReadClient.h \
106103
--known-failure app/ReadHandler.h \
107104
--known-failure app/ReadPrepareParams.h \
108105
--known-failure app/reporting/tests/MockReportScheduler.cpp \
@@ -132,7 +129,6 @@ jobs:
132129
--known-failure app/util/odd-sized-integers.h \
133130
--known-failure app/util/util.cpp \
134131
--known-failure app/util/util.h \
135-
--known-failure app/WriteClient.h \
136132
--known-failure app/WriteHandler.h \
137133
--known-failure lib/core/CHIPVendorIdentifiers.hpp \
138134
--known-failure platform/DeviceSafeQueue.cpp \

src/app/BUILD.gn

+16-14
Original file line numberDiff line numberDiff line change
@@ -140,23 +140,35 @@ static_library("interaction-model") {
140140
"CASEClientPool.h",
141141
"CASESessionManager.cpp",
142142
"CASESessionManager.h",
143+
"CommandSender.cpp",
144+
"CommandSender.h",
143145
"DeviceProxy.cpp",
144146
"DeviceProxy.h",
145147
"InteractionModelDelegatePointers.cpp",
146148
"InteractionModelDelegatePointers.h",
147149
"InteractionModelEngine.cpp",
148150
"InteractionModelEngine.h",
151+
"InteractionModelHelper.h",
149152
"InteractionModelTimeout.h",
150153
"OperationalSessionSetup.cpp",
151154
"OperationalSessionSetup.h",
152155
"OperationalSessionSetupPool.h",
156+
"PendingResponseTracker.h",
157+
"PendingResponseTrackerImpl.cpp",
158+
"PendingResponseTrackerImpl.h",
159+
"ReadClient.h", # TODO: cpp is only included conditionally. Needs logic
160+
# fixing
153161
"RequiredPrivilege.cpp",
154162
"RequiredPrivilege.h",
155163
"StatusResponse.cpp",
156164
"StatusResponse.h",
157165
"SubscriptionResumptionStorage.h",
158166
"TimedHandler.cpp",
159167
"TimedHandler.h",
168+
"TimedRequest.cpp",
169+
"TimedRequest.h",
170+
"WriteClient.cpp",
171+
"WriteClient.h",
160172
"reporting/Engine.cpp",
161173
"reporting/Engine.h",
162174
"reporting/ReportScheduler.h",
@@ -184,6 +196,10 @@ static_library("interaction-model") {
184196

185197
public_configs = [ "${chip_root}/src:includes" ]
186198

199+
if (chip_enable_read_client) {
200+
sources += [ "ReadClient.cpp" ]
201+
}
202+
187203
if (chip_persist_subscriptions) {
188204
sources += [
189205
"SimpleSubscriptionResumptionStorage.cpp",
@@ -228,7 +244,6 @@ static_library("app") {
228244
"CommandResponseHelper.h",
229245
"CommandResponseSender.cpp",
230246
"CommandResponseSender.h",
231-
"CommandSender.cpp",
232247
"DefaultAttributePersistenceProvider.cpp",
233248
"DefaultAttributePersistenceProvider.h",
234249
"DeferredAttributePersistenceProvider.cpp",
@@ -240,26 +255,17 @@ static_library("app") {
240255
"FailSafeContext.cpp",
241256
"FailSafeContext.h",
242257
"OTAUserConsentCommon.h",
243-
"PendingResponseTracker.h",
244-
"PendingResponseTrackerImpl.cpp",
245-
"PendingResponseTrackerImpl.h",
246258
"ReadHandler.cpp",
247259
"SafeAttributePersistenceProvider.h",
248-
"TimedRequest.cpp",
249-
"TimedRequest.h",
250260
"TimerDelegates.cpp",
251261
"TimerDelegates.h",
252-
"WriteClient.cpp",
253262
"WriteHandler.cpp",
254263

255264
# TODO: the following items cannot be included due to interaction-model circularity
256265
# (app depending on im and im including these headers):
257266
# Name with _ so that linter does not recognize it
258267
# "CommandHandler._h"
259-
# "CommandSender._h",
260-
# "ReadClient._h",
261268
# "ReadHandler._h",
262-
# "WriteClient._h",
263269
# "WriteHandler._h"
264270

265271
# TODO: the following items cannot be included due to platform includes not being
@@ -288,10 +294,6 @@ static_library("app") {
288294
"BufferedReadCallback.h",
289295
"ClusterStateCache.cpp",
290296
"ClusterStateCache.h",
291-
"ReadClient.cpp",
292-
293-
# TODO: cannot include "ReadClient._h" because interaction-model backreference
294-
# Name with _ so that linter does not recognize it
295297
]
296298
}
297299

src/app/CommandSender.cpp

+1-7
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,9 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* @file
21-
* This file defines objects for a CHIP IM Invoke Command Sender
22-
*
23-
*/
24-
2519
#include "CommandSender.h"
26-
#include "InteractionModelEngine.h"
2720
#include "StatusResponse.h"
21+
#include <app/InteractionModelTimeout.h>
2822
#include <app/TimedRequest.h>
2923
#include <platform/LockTracker.h>
3024
#include <protocols/Protocols.h>

0 commit comments

Comments
 (0)