29
29
from vacuum_map_parser_base .config .color import ColorsPalette
30
30
from vacuum_map_parser_base .config .image_config import ImageConfig
31
31
from vacuum_map_parser_base .config .size import Sizes
32
+ from vacuum_map_parser_base .map_data import MapData
32
33
from vacuum_map_parser_roborock .map_data_parser import RoborockMapDataParser
33
34
34
35
from homeassistant .config_entries import ConfigEntry
@@ -168,18 +169,20 @@ def dock_device_info(self) -> DeviceInfo:
168
169
sw_version = self .roborock_device_info .device .fv ,
169
170
)
170
171
171
- def parse_image (self , map_bytes : bytes ) -> bytes | None :
172
- """Parse map_bytes and store it as image bytes."""
172
+ def parse_map_data_v1 (
173
+ self , map_bytes : bytes
174
+ ) -> tuple [bytes | None , MapData | None ]:
175
+ """Parse map_bytes and return MapData and the image."""
173
176
try :
174
177
parsed_map = self .map_parser .parse (map_bytes )
175
178
except (IndexError , ValueError ) as err :
176
179
_LOGGER .debug ("Exception when parsing map contents: %s" , err )
177
- return None
180
+ return None , None
178
181
if parsed_map .image is None :
179
- return None
182
+ return None , None
180
183
img_byte_arr = io .BytesIO ()
181
184
parsed_map .image .data .save (img_byte_arr , format = MAP_FILE_FORMAT )
182
- return img_byte_arr .getvalue ()
185
+ return img_byte_arr .getvalue (), parsed_map
183
186
184
187
async def _async_setup (self ) -> None :
185
188
"""Set up the coordinator."""
@@ -206,6 +209,7 @@ async def _async_setup(self) -> None:
206
209
rooms = {},
207
210
image = image ,
208
211
last_updated = dt_util .utcnow () - IMAGE_CACHE_INTERVAL ,
212
+ map_data = None ,
209
213
)
210
214
for image , roborock_map in zip (stored_images , roborock_maps , strict = False )
211
215
}
@@ -230,20 +234,21 @@ async def update_map(self) -> None:
230
234
translation_domain = DOMAIN ,
231
235
translation_key = "map_failure" ,
232
236
)
233
- parsed_image = self .parse_image (response )
234
- if parsed_image is None :
237
+ parsed_image , parsed_map = self .parse_map_data_v1 (response )
238
+ if parsed_image is None or parsed_map is None :
235
239
raise HomeAssistantError (
236
240
translation_domain = DOMAIN ,
237
241
translation_key = "map_failure" ,
238
242
)
243
+ current_roborock_map_info = self .maps [self .current_map ]
239
244
if parsed_image != self .maps [self .current_map ].image :
240
245
await self .map_storage .async_save_map (
241
246
self .current_map ,
242
247
parsed_image ,
243
248
)
244
- current_roborock_map_info = self .maps [self .current_map ]
245
249
current_roborock_map_info .image = parsed_image
246
250
current_roborock_map_info .last_updated = dt_util .utcnow ()
251
+ current_roborock_map_info .map_data = parsed_map
247
252
248
253
async def _verify_api (self ) -> None :
249
254
"""Verify that the api is reachable. If it is not, switch clients."""
0 commit comments