flwr-nightly 1.8.0.dev20240314__py3-none-any.whl → 1.15.0.dev20250114__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. flwr/cli/app.py +16 -2
  2. flwr/cli/build.py +181 -0
  3. flwr/cli/cli_user_auth_interceptor.py +90 -0
  4. flwr/cli/config_utils.py +343 -0
  5. flwr/cli/example.py +4 -1
  6. flwr/cli/install.py +253 -0
  7. flwr/cli/log.py +182 -0
  8. flwr/{server/superlink/state → cli/login}/__init__.py +4 -10
  9. flwr/cli/login/login.py +88 -0
  10. flwr/cli/ls.py +327 -0
  11. flwr/cli/new/__init__.py +1 -0
  12. flwr/cli/new/new.py +210 -66
  13. flwr/cli/new/templates/app/.gitignore.tpl +163 -0
  14. flwr/cli/new/templates/app/LICENSE.tpl +202 -0
  15. flwr/cli/new/templates/app/README.baseline.md.tpl +127 -0
  16. flwr/cli/new/templates/app/README.flowertune.md.tpl +66 -0
  17. flwr/cli/new/templates/app/README.md.tpl +16 -32
  18. flwr/cli/new/templates/app/code/__init__.baseline.py.tpl +1 -0
  19. flwr/cli/new/templates/app/code/__init__.py.tpl +1 -1
  20. flwr/cli/new/templates/app/code/client.baseline.py.tpl +58 -0
  21. flwr/cli/new/templates/app/code/client.huggingface.py.tpl +55 -0
  22. flwr/cli/new/templates/app/code/client.jax.py.tpl +50 -0
  23. flwr/cli/new/templates/app/code/client.mlx.py.tpl +73 -0
  24. flwr/cli/new/templates/app/code/client.numpy.py.tpl +7 -7
  25. flwr/cli/new/templates/app/code/client.pytorch.py.tpl +30 -21
  26. flwr/cli/new/templates/app/code/client.sklearn.py.tpl +63 -0
  27. flwr/cli/new/templates/app/code/client.tensorflow.py.tpl +57 -1
  28. flwr/cli/new/templates/app/code/dataset.baseline.py.tpl +36 -0
  29. flwr/cli/new/templates/app/code/flwr_tune/__init__.py +15 -0
  30. flwr/cli/new/templates/app/code/flwr_tune/client_app.py.tpl +126 -0
  31. flwr/cli/new/templates/app/code/flwr_tune/dataset.py.tpl +87 -0
  32. flwr/cli/new/templates/app/code/flwr_tune/models.py.tpl +78 -0
  33. flwr/cli/new/templates/app/code/flwr_tune/server_app.py.tpl +94 -0
  34. flwr/cli/new/templates/app/code/flwr_tune/strategy.py.tpl +83 -0
  35. flwr/cli/new/templates/app/code/model.baseline.py.tpl +80 -0
  36. flwr/cli/new/templates/app/code/server.baseline.py.tpl +46 -0
  37. flwr/cli/new/templates/app/code/server.huggingface.py.tpl +38 -0
  38. flwr/cli/new/templates/app/code/server.jax.py.tpl +26 -0
  39. flwr/cli/new/templates/app/code/server.mlx.py.tpl +31 -0
  40. flwr/cli/new/templates/app/code/server.numpy.py.tpl +22 -9
  41. flwr/cli/new/templates/app/code/server.pytorch.py.tpl +21 -18
  42. flwr/cli/new/templates/app/code/server.sklearn.py.tpl +36 -0
  43. flwr/cli/new/templates/app/code/server.tensorflow.py.tpl +29 -1
  44. flwr/cli/new/templates/app/code/strategy.baseline.py.tpl +1 -0
  45. flwr/cli/new/templates/app/code/task.huggingface.py.tpl +102 -0
  46. flwr/cli/new/templates/app/code/task.jax.py.tpl +57 -0
  47. flwr/cli/new/templates/app/code/task.mlx.py.tpl +102 -0
  48. flwr/cli/new/templates/app/code/task.numpy.py.tpl +7 -0
  49. flwr/cli/new/templates/app/code/task.pytorch.py.tpl +29 -24
  50. flwr/cli/new/templates/app/code/task.sklearn.py.tpl +67 -0
  51. flwr/cli/new/templates/app/code/task.tensorflow.py.tpl +53 -0
  52. flwr/cli/new/templates/app/code/utils.baseline.py.tpl +1 -0
  53. flwr/cli/new/templates/app/pyproject.baseline.toml.tpl +138 -0
  54. flwr/cli/new/templates/app/pyproject.flowertune.toml.tpl +68 -0
  55. flwr/cli/new/templates/app/pyproject.huggingface.toml.tpl +46 -0
  56. flwr/cli/new/templates/app/pyproject.jax.toml.tpl +35 -0
  57. flwr/cli/new/templates/app/pyproject.mlx.toml.tpl +39 -0
  58. flwr/cli/new/templates/app/pyproject.numpy.toml.tpl +25 -12
  59. flwr/cli/new/templates/app/pyproject.pytorch.toml.tpl +29 -14
  60. flwr/cli/new/templates/app/pyproject.sklearn.toml.tpl +35 -0
  61. flwr/cli/new/templates/app/pyproject.tensorflow.toml.tpl +29 -14
  62. flwr/cli/run/__init__.py +1 -0
  63. flwr/cli/run/run.py +212 -34
  64. flwr/cli/stop.py +130 -0
  65. flwr/cli/utils.py +240 -5
  66. flwr/client/__init__.py +3 -2
  67. flwr/client/app.py +432 -255
  68. flwr/client/client.py +1 -11
  69. flwr/client/client_app.py +74 -13
  70. flwr/client/clientapp/__init__.py +22 -0
  71. flwr/client/clientapp/app.py +259 -0
  72. flwr/client/clientapp/clientappio_servicer.py +244 -0
  73. flwr/client/clientapp/utils.py +115 -0
  74. flwr/client/dpfedavg_numpy_client.py +7 -8
  75. flwr/client/grpc_adapter_client/__init__.py +15 -0
  76. flwr/client/grpc_adapter_client/connection.py +98 -0
  77. flwr/client/grpc_client/connection.py +21 -7
  78. flwr/client/grpc_rere_client/__init__.py +1 -1
  79. flwr/client/grpc_rere_client/client_interceptor.py +176 -0
  80. flwr/client/grpc_rere_client/connection.py +163 -56
  81. flwr/client/grpc_rere_client/grpc_adapter.py +167 -0
  82. flwr/client/heartbeat.py +74 -0
  83. flwr/client/message_handler/__init__.py +1 -1
  84. flwr/client/message_handler/message_handler.py +10 -11
  85. flwr/client/mod/__init__.py +5 -5
  86. flwr/client/mod/centraldp_mods.py +4 -2
  87. flwr/client/mod/comms_mods.py +5 -4
  88. flwr/client/mod/localdp_mod.py +10 -5
  89. flwr/client/mod/secure_aggregation/__init__.py +1 -1
  90. flwr/client/mod/secure_aggregation/secaggplus_mod.py +26 -26
  91. flwr/client/mod/utils.py +2 -4
  92. flwr/client/nodestate/__init__.py +26 -0
  93. flwr/client/nodestate/in_memory_nodestate.py +38 -0
  94. flwr/client/nodestate/nodestate.py +31 -0
  95. flwr/client/nodestate/nodestate_factory.py +38 -0
  96. flwr/client/numpy_client.py +8 -31
  97. flwr/client/rest_client/__init__.py +1 -1
  98. flwr/client/rest_client/connection.py +199 -176
  99. flwr/client/run_info_store.py +112 -0
  100. flwr/client/supernode/__init__.py +24 -0
  101. flwr/client/supernode/app.py +321 -0
  102. flwr/client/typing.py +1 -0
  103. flwr/common/__init__.py +17 -11
  104. flwr/common/address.py +47 -3
  105. flwr/common/args.py +153 -0
  106. flwr/common/auth_plugin/__init__.py +24 -0
  107. flwr/common/auth_plugin/auth_plugin.py +121 -0
  108. flwr/common/config.py +243 -0
  109. flwr/common/constant.py +132 -1
  110. flwr/common/context.py +32 -2
  111. flwr/common/date.py +22 -4
  112. flwr/common/differential_privacy.py +2 -2
  113. flwr/common/dp.py +2 -4
  114. flwr/common/exit_handlers.py +3 -3
  115. flwr/common/grpc.py +164 -5
  116. flwr/common/logger.py +230 -12
  117. flwr/common/message.py +191 -106
  118. flwr/common/object_ref.py +179 -44
  119. flwr/common/pyproject.py +1 -0
  120. flwr/common/record/__init__.py +2 -1
  121. flwr/common/record/configsrecord.py +58 -18
  122. flwr/common/record/metricsrecord.py +57 -17
  123. flwr/common/record/parametersrecord.py +88 -20
  124. flwr/common/record/recordset.py +153 -30
  125. flwr/common/record/typeddict.py +30 -55
  126. flwr/common/recordset_compat.py +31 -12
  127. flwr/common/retry_invoker.py +123 -30
  128. flwr/common/secure_aggregation/__init__.py +1 -1
  129. flwr/common/secure_aggregation/crypto/__init__.py +1 -1
  130. flwr/common/secure_aggregation/crypto/shamir.py +11 -11
  131. flwr/common/secure_aggregation/crypto/symmetric_encryption.py +68 -4
  132. flwr/common/secure_aggregation/ndarrays_arithmetic.py +17 -17
  133. flwr/common/secure_aggregation/quantization.py +8 -8
  134. flwr/common/secure_aggregation/secaggplus_constants.py +1 -1
  135. flwr/common/secure_aggregation/secaggplus_utils.py +10 -12
  136. flwr/common/serde.py +298 -19
  137. flwr/common/telemetry.py +65 -29
  138. flwr/common/typing.py +120 -19
  139. flwr/common/version.py +17 -3
  140. flwr/proto/clientappio_pb2.py +45 -0
  141. flwr/proto/clientappio_pb2.pyi +132 -0
  142. flwr/proto/clientappio_pb2_grpc.py +135 -0
  143. flwr/proto/clientappio_pb2_grpc.pyi +53 -0
  144. flwr/proto/exec_pb2.py +62 -0
  145. flwr/proto/exec_pb2.pyi +212 -0
  146. flwr/proto/exec_pb2_grpc.py +237 -0
  147. flwr/proto/exec_pb2_grpc.pyi +93 -0
  148. flwr/proto/fab_pb2.py +31 -0
  149. flwr/proto/fab_pb2.pyi +65 -0
  150. flwr/proto/fab_pb2_grpc.py +4 -0
  151. flwr/proto/fab_pb2_grpc.pyi +4 -0
  152. flwr/proto/fleet_pb2.py +42 -23
  153. flwr/proto/fleet_pb2.pyi +123 -1
  154. flwr/proto/fleet_pb2_grpc.py +170 -0
  155. flwr/proto/fleet_pb2_grpc.pyi +61 -0
  156. flwr/proto/grpcadapter_pb2.py +32 -0
  157. flwr/proto/grpcadapter_pb2.pyi +43 -0
  158. flwr/proto/grpcadapter_pb2_grpc.py +66 -0
  159. flwr/proto/grpcadapter_pb2_grpc.pyi +24 -0
  160. flwr/proto/log_pb2.py +29 -0
  161. flwr/proto/log_pb2.pyi +39 -0
  162. flwr/proto/log_pb2_grpc.py +4 -0
  163. flwr/proto/log_pb2_grpc.pyi +4 -0
  164. flwr/proto/message_pb2.py +41 -0
  165. flwr/proto/message_pb2.pyi +128 -0
  166. flwr/proto/message_pb2_grpc.py +4 -0
  167. flwr/proto/message_pb2_grpc.pyi +4 -0
  168. flwr/proto/node_pb2.py +1 -1
  169. flwr/proto/recordset_pb2.py +35 -33
  170. flwr/proto/recordset_pb2.pyi +40 -14
  171. flwr/proto/run_pb2.py +64 -0
  172. flwr/proto/run_pb2.pyi +268 -0
  173. flwr/proto/run_pb2_grpc.py +4 -0
  174. flwr/proto/run_pb2_grpc.pyi +4 -0
  175. flwr/proto/serverappio_pb2.py +52 -0
  176. flwr/proto/{driver_pb2.pyi → serverappio_pb2.pyi} +62 -20
  177. flwr/proto/serverappio_pb2_grpc.py +410 -0
  178. flwr/proto/serverappio_pb2_grpc.pyi +160 -0
  179. flwr/proto/simulationio_pb2.py +38 -0
  180. flwr/proto/simulationio_pb2.pyi +65 -0
  181. flwr/proto/simulationio_pb2_grpc.py +239 -0
  182. flwr/proto/simulationio_pb2_grpc.pyi +94 -0
  183. flwr/proto/task_pb2.py +7 -8
  184. flwr/proto/task_pb2.pyi +8 -5
  185. flwr/proto/transport_pb2.py +8 -8
  186. flwr/proto/transport_pb2.pyi +9 -6
  187. flwr/server/__init__.py +2 -10
  188. flwr/server/app.py +579 -402
  189. flwr/server/client_manager.py +8 -6
  190. flwr/server/compat/app.py +6 -62
  191. flwr/server/compat/app_utils.py +14 -8
  192. flwr/server/compat/driver_client_proxy.py +25 -58
  193. flwr/server/compat/legacy_context.py +5 -4
  194. flwr/server/driver/__init__.py +2 -0
  195. flwr/server/driver/driver.py +36 -131
  196. flwr/server/driver/grpc_driver.py +217 -81
  197. flwr/server/driver/inmemory_driver.py +182 -0
  198. flwr/server/history.py +28 -29
  199. flwr/server/run_serverapp.py +15 -126
  200. flwr/server/server.py +50 -44
  201. flwr/server/server_app.py +59 -10
  202. flwr/server/serverapp/__init__.py +22 -0
  203. flwr/server/serverapp/app.py +256 -0
  204. flwr/server/serverapp_components.py +52 -0
  205. flwr/server/strategy/__init__.py +2 -2
  206. flwr/server/strategy/aggregate.py +37 -23
  207. flwr/server/strategy/bulyan.py +9 -9
  208. flwr/server/strategy/dp_adaptive_clipping.py +25 -25
  209. flwr/server/strategy/dp_fixed_clipping.py +23 -22
  210. flwr/server/strategy/dpfedavg_adaptive.py +8 -8
  211. flwr/server/strategy/dpfedavg_fixed.py +13 -12
  212. flwr/server/strategy/fault_tolerant_fedavg.py +11 -11
  213. flwr/server/strategy/fedadagrad.py +9 -9
  214. flwr/server/strategy/fedadam.py +20 -10
  215. flwr/server/strategy/fedavg.py +16 -16
  216. flwr/server/strategy/fedavg_android.py +17 -17
  217. flwr/server/strategy/fedavgm.py +9 -9
  218. flwr/server/strategy/fedmedian.py +5 -5
  219. flwr/server/strategy/fedopt.py +6 -6
  220. flwr/server/strategy/fedprox.py +7 -7
  221. flwr/server/strategy/fedtrimmedavg.py +8 -8
  222. flwr/server/strategy/fedxgb_bagging.py +12 -12
  223. flwr/server/strategy/fedxgb_cyclic.py +10 -10
  224. flwr/server/strategy/fedxgb_nn_avg.py +6 -6
  225. flwr/server/strategy/fedyogi.py +9 -9
  226. flwr/server/strategy/krum.py +9 -9
  227. flwr/server/strategy/qfedavg.py +16 -16
  228. flwr/server/strategy/strategy.py +10 -10
  229. flwr/server/superlink/driver/__init__.py +2 -2
  230. flwr/server/superlink/driver/serverappio_grpc.py +61 -0
  231. flwr/server/superlink/driver/serverappio_servicer.py +363 -0
  232. flwr/server/superlink/ffs/__init__.py +24 -0
  233. flwr/server/superlink/ffs/disk_ffs.py +108 -0
  234. flwr/server/superlink/ffs/ffs.py +79 -0
  235. flwr/server/superlink/ffs/ffs_factory.py +47 -0
  236. flwr/server/superlink/fleet/__init__.py +1 -1
  237. flwr/server/superlink/fleet/grpc_adapter/__init__.py +15 -0
  238. flwr/server/superlink/fleet/grpc_adapter/grpc_adapter_servicer.py +162 -0
  239. flwr/server/superlink/fleet/grpc_bidi/__init__.py +1 -1
  240. flwr/server/superlink/fleet/grpc_bidi/flower_service_servicer.py +4 -2
  241. flwr/server/superlink/fleet/grpc_bidi/grpc_bridge.py +3 -2
  242. flwr/server/superlink/fleet/grpc_bidi/grpc_client_proxy.py +1 -1
  243. flwr/server/superlink/fleet/grpc_bidi/grpc_server.py +5 -154
  244. flwr/server/superlink/fleet/grpc_rere/__init__.py +1 -1
  245. flwr/server/superlink/fleet/grpc_rere/fleet_servicer.py +120 -13
  246. flwr/server/superlink/fleet/grpc_rere/server_interceptor.py +228 -0
  247. flwr/server/superlink/fleet/message_handler/__init__.py +1 -1
  248. flwr/server/superlink/fleet/message_handler/message_handler.py +153 -9
  249. flwr/server/superlink/fleet/rest_rere/__init__.py +1 -1
  250. flwr/server/superlink/fleet/rest_rere/rest_api.py +119 -81
  251. flwr/server/superlink/fleet/vce/__init__.py +1 -0
  252. flwr/server/superlink/fleet/vce/backend/__init__.py +4 -4
  253. flwr/server/superlink/fleet/vce/backend/backend.py +8 -9
  254. flwr/server/superlink/fleet/vce/backend/raybackend.py +87 -68
  255. flwr/server/superlink/fleet/vce/vce_api.py +208 -146
  256. flwr/server/superlink/linkstate/__init__.py +28 -0
  257. flwr/server/superlink/linkstate/in_memory_linkstate.py +581 -0
  258. flwr/server/superlink/linkstate/linkstate.py +389 -0
  259. flwr/server/superlink/{state/state_factory.py → linkstate/linkstate_factory.py} +19 -10
  260. flwr/server/superlink/linkstate/sqlite_linkstate.py +1236 -0
  261. flwr/server/superlink/linkstate/utils.py +389 -0
  262. flwr/server/superlink/simulation/__init__.py +15 -0
  263. flwr/server/superlink/simulation/simulationio_grpc.py +65 -0
  264. flwr/server/superlink/simulation/simulationio_servicer.py +186 -0
  265. flwr/server/superlink/utils.py +65 -0
  266. flwr/server/typing.py +2 -0
  267. flwr/server/utils/__init__.py +1 -1
  268. flwr/server/utils/tensorboard.py +5 -5
  269. flwr/server/utils/validator.py +31 -11
  270. flwr/server/workflow/default_workflows.py +70 -26
  271. flwr/server/workflow/secure_aggregation/secagg_workflow.py +1 -0
  272. flwr/server/workflow/secure_aggregation/secaggplus_workflow.py +40 -27
  273. flwr/simulation/__init__.py +12 -5
  274. flwr/simulation/app.py +247 -315
  275. flwr/simulation/legacy_app.py +402 -0
  276. flwr/simulation/ray_transport/__init__.py +1 -1
  277. flwr/simulation/ray_transport/ray_actor.py +42 -67
  278. flwr/simulation/ray_transport/ray_client_proxy.py +37 -17
  279. flwr/simulation/ray_transport/utils.py +1 -0
  280. flwr/simulation/run_simulation.py +306 -163
  281. flwr/simulation/simulationio_connection.py +89 -0
  282. flwr/superexec/__init__.py +15 -0
  283. flwr/superexec/app.py +59 -0
  284. flwr/superexec/deployment.py +188 -0
  285. flwr/superexec/exec_grpc.py +80 -0
  286. flwr/superexec/exec_servicer.py +231 -0
  287. flwr/superexec/exec_user_auth_interceptor.py +101 -0
  288. flwr/superexec/executor.py +96 -0
  289. flwr/superexec/simulation.py +124 -0
  290. {flwr_nightly-1.8.0.dev20240314.dist-info → flwr_nightly-1.15.0.dev20250114.dist-info}/METADATA +33 -26
  291. flwr_nightly-1.15.0.dev20250114.dist-info/RECORD +328 -0
  292. flwr_nightly-1.15.0.dev20250114.dist-info/entry_points.txt +12 -0
  293. flwr/cli/flower_toml.py +0 -140
  294. flwr/cli/new/templates/app/flower.toml.tpl +0 -13
  295. flwr/cli/new/templates/app/requirements.numpy.txt.tpl +0 -2
  296. flwr/cli/new/templates/app/requirements.pytorch.txt.tpl +0 -4
  297. flwr/cli/new/templates/app/requirements.tensorflow.txt.tpl +0 -4
  298. flwr/client/node_state.py +0 -48
  299. flwr/client/node_state_tests.py +0 -65
  300. flwr/proto/driver_pb2.py +0 -44
  301. flwr/proto/driver_pb2_grpc.py +0 -169
  302. flwr/proto/driver_pb2_grpc.pyi +0 -66
  303. flwr/server/superlink/driver/driver_grpc.py +0 -54
  304. flwr/server/superlink/driver/driver_servicer.py +0 -129
  305. flwr/server/superlink/state/in_memory_state.py +0 -230
  306. flwr/server/superlink/state/sqlite_state.py +0 -630
  307. flwr/server/superlink/state/state.py +0 -154
  308. flwr_nightly-1.8.0.dev20240314.dist-info/RECORD +0 -211
  309. flwr_nightly-1.8.0.dev20240314.dist-info/entry_points.txt +0 -9
  310. {flwr_nightly-1.8.0.dev20240314.dist-info → flwr_nightly-1.15.0.dev20250114.dist-info}/LICENSE +0 -0
  311. {flwr_nightly-1.8.0.dev20240314.dist-info → flwr_nightly-1.15.0.dev20250114.dist-info}/WHEEL +0 -0
flwr/client/client.py CHANGED
@@ -14,6 +14,7 @@
14
14
  # ==============================================================================
15
15
  """Flower client (abstract base class)."""
16
16
 
17
+
17
18
  # Needed to `Client` class can return a type of `Client` (not needed in py3.11+)
18
19
  from __future__ import annotations
19
20
 
@@ -21,7 +22,6 @@ from abc import ABC
21
22
 
22
23
  from flwr.common import (
23
24
  Code,
24
- Context,
25
25
  EvaluateIns,
26
26
  EvaluateRes,
27
27
  FitIns,
@@ -38,8 +38,6 @@ from flwr.common import (
38
38
  class Client(ABC):
39
39
  """Abstract base class for Flower clients."""
40
40
 
41
- context: Context
42
-
43
41
  def get_properties(self, ins: GetPropertiesIns) -> GetPropertiesRes:
44
42
  """Return set of client's properties.
45
43
 
@@ -141,14 +139,6 @@ class Client(ABC):
141
139
  metrics={},
142
140
  )
143
141
 
144
- def get_context(self) -> Context:
145
- """Get the run context from this client."""
146
- return self.context
147
-
148
- def set_context(self, context: Context) -> None:
149
- """Apply a run context to this client."""
150
- self.context = context
151
-
152
142
  def to_client(self) -> Client:
153
143
  """Return client (itself)."""
154
144
  return self
flwr/client/client_app.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -15,18 +15,71 @@
15
15
  """Flower ClientApp."""
16
16
 
17
17
 
18
- from typing import Callable, List, Optional
18
+ import inspect
19
+ from typing import Callable, Optional
19
20
 
21
+ from flwr.client.client import Client
20
22
  from flwr.client.message_handler.message_handler import (
21
23
  handle_legacy_message_from_msgtype,
22
24
  )
23
25
  from flwr.client.mod.utils import make_ffn
24
- from flwr.client.typing import ClientFn, Mod
26
+ from flwr.client.typing import ClientFnExt, Mod
25
27
  from flwr.common import Context, Message, MessageType
28
+ from flwr.common.logger import warn_deprecated_feature, warn_preview_feature
26
29
 
27
30
  from .typing import ClientAppCallable
28
31
 
29
32
 
33
+ def _alert_erroneous_client_fn() -> None:
34
+ raise ValueError(
35
+ "A `ClientApp` cannot make use of a `client_fn` that does "
36
+ "not have a signature in the form: `def client_fn(context: "
37
+ "Context)`. You can import the `Context` like this: "
38
+ "`from flwr.common import Context`"
39
+ )
40
+
41
+
42
+ def _inspect_maybe_adapt_client_fn_signature(client_fn: ClientFnExt) -> ClientFnExt:
43
+ client_fn_args = inspect.signature(client_fn).parameters
44
+
45
+ if len(client_fn_args) != 1:
46
+ _alert_erroneous_client_fn()
47
+
48
+ first_arg = list(client_fn_args.keys())[0]
49
+ first_arg_type = client_fn_args[first_arg].annotation
50
+
51
+ if first_arg_type is str or first_arg == "cid":
52
+ # Warn previous signature for `client_fn` seems to be used
53
+ warn_deprecated_feature(
54
+ "`client_fn` now expects a signature `def client_fn(context: Context)`."
55
+ "The provided `client_fn` has signature: "
56
+ f"{dict(client_fn_args.items())}. You can import the `Context` like this:"
57
+ " `from flwr.common import Context`"
58
+ )
59
+
60
+ # Wrap depcreated client_fn inside a function with the expected signature
61
+ def adaptor_fn(
62
+ context: Context,
63
+ ) -> Client: # pylint: disable=unused-argument
64
+ # if patition-id is defined, pass it. Else pass node_id that should
65
+ # always be defined during Context init.
66
+ cid = context.node_config.get("partition-id", context.node_id)
67
+ return client_fn(str(cid)) # type: ignore
68
+
69
+ return adaptor_fn
70
+
71
+ return client_fn
72
+
73
+
74
+ class ClientAppException(Exception):
75
+ """Exception raised when an exception is raised while executing a ClientApp."""
76
+
77
+ def __init__(self, message: str):
78
+ ex_name = self.__class__.__name__
79
+ self.message = f"\nException {ex_name} occurred. Message: " + message
80
+ super().__init__(self.message)
81
+
82
+
30
83
  class ClientApp:
31
84
  """Flower ClientApp.
32
85
 
@@ -38,7 +91,7 @@ class ClientApp:
38
91
  >>> class FlowerClient(NumPyClient):
39
92
  >>> # ...
40
93
  >>>
41
- >>> def client_fn(cid):
94
+ >>> def client_fn(context: Context):
42
95
  >>> return FlowerClient().to_client()
43
96
  >>>
44
97
  >>> app = ClientApp(client_fn)
@@ -55,15 +108,17 @@ class ClientApp:
55
108
 
56
109
  def __init__(
57
110
  self,
58
- client_fn: Optional[ClientFn] = None, # Only for backward compatibility
59
- mods: Optional[List[Mod]] = None,
111
+ client_fn: Optional[ClientFnExt] = None, # Only for backward compatibility
112
+ mods: Optional[list[Mod]] = None,
60
113
  ) -> None:
61
- self._mods: List[Mod] = mods if mods is not None else []
114
+ self._mods: list[Mod] = mods if mods is not None else []
62
115
 
63
116
  # Create wrapper function for `handle`
64
117
  self._call: Optional[ClientAppCallable] = None
65
118
  if client_fn is not None:
66
119
 
120
+ client_fn = _inspect_maybe_adapt_client_fn_signature(client_fn)
121
+
67
122
  def ffn(
68
123
  message: Message,
69
124
  context: Context,
@@ -115,7 +170,7 @@ class ClientApp:
115
170
  >>> def train(message: Message, context: Context) -> Message:
116
171
  >>> print("ClientApp training running")
117
172
  >>> # Create and return an echo reply message
118
- >>> return message.create_reply(content=message.content(), ttl="")
173
+ >>> return message.create_reply(content=message.content())
119
174
  """
120
175
 
121
176
  def train_decorator(train_fn: ClientAppCallable) -> ClientAppCallable:
@@ -123,6 +178,8 @@ class ClientApp:
123
178
  if self._call:
124
179
  raise _registration_error(MessageType.TRAIN)
125
180
 
181
+ warn_preview_feature("ClientApp-register-train-function")
182
+
126
183
  # Register provided function with the ClientApp object
127
184
  # Wrap mods around the wrapped step function
128
185
  self._train = make_ffn(train_fn, self._mods)
@@ -143,7 +200,7 @@ class ClientApp:
143
200
  >>> def evaluate(message: Message, context: Context) -> Message:
144
201
  >>> print("ClientApp evaluation running")
145
202
  >>> # Create and return an echo reply message
146
- >>> return message.create_reply(content=message.content(), ttl="")
203
+ >>> return message.create_reply(content=message.content())
147
204
  """
148
205
 
149
206
  def evaluate_decorator(evaluate_fn: ClientAppCallable) -> ClientAppCallable:
@@ -151,6 +208,8 @@ class ClientApp:
151
208
  if self._call:
152
209
  raise _registration_error(MessageType.EVALUATE)
153
210
 
211
+ warn_preview_feature("ClientApp-register-evaluate-function")
212
+
154
213
  # Register provided function with the ClientApp object
155
214
  # Wrap mods around the wrapped step function
156
215
  self._evaluate = make_ffn(evaluate_fn, self._mods)
@@ -171,7 +230,7 @@ class ClientApp:
171
230
  >>> def query(message: Message, context: Context) -> Message:
172
231
  >>> print("ClientApp query running")
173
232
  >>> # Create and return an echo reply message
174
- >>> return message.create_reply(content=message.content(), ttl="")
233
+ >>> return message.create_reply(content=message.content())
175
234
  """
176
235
 
177
236
  def query_decorator(query_fn: ClientAppCallable) -> ClientAppCallable:
@@ -179,6 +238,8 @@ class ClientApp:
179
238
  if self._call:
180
239
  raise _registration_error(MessageType.QUERY)
181
240
 
241
+ warn_preview_feature("ClientApp-register-query-function")
242
+
182
243
  # Register provided function with the ClientApp object
183
244
  # Wrap mods around the wrapped step function
184
245
  self._query = make_ffn(query_fn, self._mods)
@@ -202,10 +263,10 @@ def _registration_error(fn_name: str) -> ValueError:
202
263
  >>> class FlowerClient(NumPyClient):
203
264
  >>> # ...
204
265
  >>>
205
- >>> def client_fn(cid) -> Client:
266
+ >>> def client_fn(context: Context):
206
267
  >>> return FlowerClient().to_client()
207
268
  >>>
208
- >>> app = ClientApp()
269
+ >>> app = ClientApp(
209
270
  >>> client_fn=client_fn,
210
271
  >>> )
211
272
 
@@ -218,7 +279,7 @@ def _registration_error(fn_name: str) -> ValueError:
218
279
  >>> print("ClientApp {fn_name} running")
219
280
  >>> # Create and return an echo reply message
220
281
  >>> return message.create_reply(
221
- >>> content=message.content(), ttl=""
282
+ >>> content=message.content()
222
283
  >>> )
223
284
  """,
224
285
  )
@@ -0,0 +1,22 @@
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Flower AppIO service."""
16
+
17
+
18
+ from .app import flwr_clientapp as flwr_clientapp
19
+
20
+ __all__ = [
21
+ "flwr_clientapp",
22
+ ]
@@ -0,0 +1,259 @@
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Flower ClientApp process."""
16
+
17
+
18
+ import argparse
19
+ import sys
20
+ import time
21
+ from logging import DEBUG, ERROR, INFO
22
+ from typing import Optional
23
+
24
+ import grpc
25
+
26
+ from flwr.cli.install import install_from_fab
27
+ from flwr.client.client_app import ClientApp, LoadClientAppError
28
+ from flwr.common import Context, Message
29
+ from flwr.common.args import add_args_flwr_app_common
30
+ from flwr.common.config import get_flwr_dir
31
+ from flwr.common.constant import CLIENTAPPIO_API_DEFAULT_CLIENT_ADDRESS, ErrorCode
32
+ from flwr.common.grpc import create_channel
33
+ from flwr.common.logger import log
34
+ from flwr.common.message import Error
35
+ from flwr.common.retry_invoker import _make_simple_grpc_retry_invoker, _wrap_stub
36
+ from flwr.common.serde import (
37
+ context_from_proto,
38
+ context_to_proto,
39
+ fab_from_proto,
40
+ message_from_proto,
41
+ message_to_proto,
42
+ run_from_proto,
43
+ )
44
+ from flwr.common.typing import Fab, Run
45
+
46
+ # pylint: disable=E0611
47
+ from flwr.proto.clientappio_pb2 import (
48
+ GetTokenRequest,
49
+ GetTokenResponse,
50
+ PullClientAppInputsRequest,
51
+ PullClientAppInputsResponse,
52
+ PushClientAppOutputsRequest,
53
+ PushClientAppOutputsResponse,
54
+ )
55
+ from flwr.proto.clientappio_pb2_grpc import ClientAppIoStub
56
+
57
+ from .utils import get_load_client_app_fn
58
+
59
+
60
+ def flwr_clientapp() -> None:
61
+ """Run process-isolated Flower ClientApp."""
62
+ args = _parse_args_run_flwr_clientapp().parse_args()
63
+ if not args.insecure:
64
+ log(
65
+ ERROR,
66
+ "flwr-clientapp does not support TLS yet. "
67
+ "Please use the '--insecure' flag.",
68
+ )
69
+ sys.exit(1)
70
+
71
+ log(INFO, "Starting Flower ClientApp")
72
+ log(
73
+ DEBUG,
74
+ "Starting isolated `ClientApp` connected to SuperNode's ClientAppIo API at %s "
75
+ "with token %s",
76
+ args.clientappio_api_address,
77
+ args.token,
78
+ )
79
+ run_clientapp(
80
+ clientappio_api_address=args.clientappio_api_address,
81
+ run_once=(args.token is not None),
82
+ token=args.token,
83
+ flwr_dir=args.flwr_dir,
84
+ certificates=None,
85
+ )
86
+
87
+
88
+ def on_channel_state_change(channel_connectivity: str) -> None:
89
+ """Log channel connectivity."""
90
+ log(DEBUG, channel_connectivity)
91
+
92
+
93
+ def run_clientapp( # pylint: disable=R0914
94
+ clientappio_api_address: str,
95
+ run_once: bool,
96
+ token: Optional[int] = None,
97
+ flwr_dir: Optional[str] = None,
98
+ certificates: Optional[bytes] = None,
99
+ ) -> None:
100
+ """Run Flower ClientApp process."""
101
+ channel = create_channel(
102
+ server_address=clientappio_api_address,
103
+ insecure=(certificates is None),
104
+ root_certificates=certificates,
105
+ )
106
+ channel.subscribe(on_channel_state_change)
107
+
108
+ # Resolve directory where FABs are installed
109
+ flwr_dir_ = get_flwr_dir(flwr_dir)
110
+ try:
111
+ stub = ClientAppIoStub(channel)
112
+ _wrap_stub(stub, _make_simple_grpc_retry_invoker())
113
+
114
+ while True:
115
+ # If token is not set, loop until token is received from SuperNode
116
+ while token is None:
117
+ token = get_token(stub)
118
+ time.sleep(1)
119
+
120
+ # Pull Message, Context, Run and (optional) FAB from SuperNode
121
+ message, context, run, fab = pull_message(stub=stub, token=token)
122
+
123
+ # Install FAB, if provided
124
+ if fab:
125
+ log(DEBUG, "Flower ClientApp starts FAB installation.")
126
+ install_from_fab(fab.content, flwr_dir=flwr_dir_, skip_prompt=True)
127
+
128
+ load_client_app_fn = get_load_client_app_fn(
129
+ default_app_ref="",
130
+ app_path=None,
131
+ multi_app=True,
132
+ flwr_dir=str(flwr_dir_),
133
+ )
134
+
135
+ try:
136
+ # Load ClientApp
137
+ client_app: ClientApp = load_client_app_fn(
138
+ run.fab_id, run.fab_version, fab.hash_str if fab else ""
139
+ )
140
+
141
+ # Execute ClientApp
142
+ reply_message = client_app(message=message, context=context)
143
+
144
+ except Exception as ex: # pylint: disable=broad-exception-caught
145
+ # Don't update/change NodeState
146
+
147
+ e_code = ErrorCode.CLIENT_APP_RAISED_EXCEPTION
148
+ # Ex fmt: "<class 'ZeroDivisionError'>:<'division by zero'>"
149
+ reason = str(type(ex)) + ":<'" + str(ex) + "'>"
150
+ exc_entity = "ClientApp"
151
+ if isinstance(ex, LoadClientAppError):
152
+ reason = (
153
+ "An exception was raised when attempting to load `ClientApp`"
154
+ )
155
+ e_code = ErrorCode.LOAD_CLIENT_APP_EXCEPTION
156
+
157
+ log(ERROR, "%s raised an exception", exc_entity, exc_info=ex)
158
+
159
+ # Create error message
160
+ reply_message = message.create_error_reply(
161
+ error=Error(code=e_code, reason=reason)
162
+ )
163
+
164
+ # Push Message and Context to SuperNode
165
+ _ = push_message(
166
+ stub=stub, token=token, message=reply_message, context=context
167
+ )
168
+
169
+ # Reset token to `None` to prevent flwr-clientapp from trying to pull the
170
+ # same inputs again
171
+ token = None
172
+
173
+ # Stop the loop if `flwr-clientapp` is expected to process only a single
174
+ # message
175
+ if run_once:
176
+ break
177
+
178
+ except KeyboardInterrupt:
179
+ log(INFO, "Closing connection")
180
+ except grpc.RpcError as e:
181
+ log(ERROR, "GRPC error occurred: %s", str(e))
182
+ finally:
183
+ channel.close()
184
+
185
+
186
+ def get_token(stub: grpc.Channel) -> Optional[int]:
187
+ """Get a token from SuperNode."""
188
+ log(DEBUG, "Flower ClientApp process requests token")
189
+ try:
190
+ res: GetTokenResponse = stub.GetToken(GetTokenRequest())
191
+ log(DEBUG, "[GetToken] Received token: %s", res.token)
192
+ return res.token
193
+ except grpc.RpcError as e:
194
+ if e.code() == grpc.StatusCode.FAILED_PRECONDITION: # pylint: disable=no-member
195
+ log(DEBUG, "[GetToken] No token available yet")
196
+ else:
197
+ log(ERROR, "[GetToken] gRPC error occurred: %s", str(e))
198
+ return None
199
+
200
+
201
+ def pull_message(
202
+ stub: grpc.Channel, token: int
203
+ ) -> tuple[Message, Context, Run, Optional[Fab]]:
204
+ """Pull message from SuperNode to ClientApp."""
205
+ log(INFO, "Pulling ClientAppInputs for token %s", token)
206
+ try:
207
+ res: PullClientAppInputsResponse = stub.PullClientAppInputs(
208
+ PullClientAppInputsRequest(token=token)
209
+ )
210
+ message = message_from_proto(res.message)
211
+ context = context_from_proto(res.context)
212
+ run = run_from_proto(res.run)
213
+ fab = fab_from_proto(res.fab) if res.fab else None
214
+ return message, context, run, fab
215
+ except grpc.RpcError as e:
216
+ log(ERROR, "[PullClientAppInputs] gRPC error occurred: %s", str(e))
217
+ raise e
218
+
219
+
220
+ def push_message(
221
+ stub: grpc.Channel, token: int, message: Message, context: Context
222
+ ) -> PushClientAppOutputsResponse:
223
+ """Push message to SuperNode from ClientApp."""
224
+ log(INFO, "Pushing ClientAppOutputs for token %s", token)
225
+ proto_message = message_to_proto(message)
226
+ proto_context = context_to_proto(context)
227
+
228
+ try:
229
+ res: PushClientAppOutputsResponse = stub.PushClientAppOutputs(
230
+ PushClientAppOutputsRequest(
231
+ token=token, message=proto_message, context=proto_context
232
+ )
233
+ )
234
+ return res
235
+ except grpc.RpcError as e:
236
+ log(ERROR, "[PushClientAppOutputs] gRPC error occurred: %s", str(e))
237
+ raise e
238
+
239
+
240
+ def _parse_args_run_flwr_clientapp() -> argparse.ArgumentParser:
241
+ """Parse flwr-clientapp command line arguments."""
242
+ parser = argparse.ArgumentParser(
243
+ description="Run a Flower ClientApp",
244
+ )
245
+ parser.add_argument(
246
+ "--clientappio-api-address",
247
+ default=CLIENTAPPIO_API_DEFAULT_CLIENT_ADDRESS,
248
+ type=str,
249
+ help="Address of SuperNode's ClientAppIo API (IPv4, IPv6, or a domain name)."
250
+ f"By default, it is set to {CLIENTAPPIO_API_DEFAULT_CLIENT_ADDRESS}.",
251
+ )
252
+ parser.add_argument(
253
+ "--token",
254
+ type=int,
255
+ required=False,
256
+ help="Unique token generated by SuperNode for each ClientApp execution",
257
+ )
258
+ add_args_flwr_app_common(parser=parser)
259
+ return parser