Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support parallel and lazy connect #440

Open
coretl opened this issue Apr 29, 2024 · 2 comments
Open

Support parallel and lazy connect #440

coretl opened this issue Apr 29, 2024 · 2 comments
Assignees

Comments

@coretl
Copy link
Contributor

coretl commented Apr 29, 2024

DiamondLightSource/dodal#415 (comment) summarizes a discussion on Device connection.
bluesky/ophyd-async#265 will implement the ophyd-async supporting features of idempotent connect.
DiamondLightSource/dodal#483 will implement introspectable device factories.

The strategy we would like for blueapi is:

  • Import the dodal.beamlines.<bl> module
  • Call dodal.beamlines.beamline_utils.get_device_factories() to get all the device factories and whether they are lazy or not
  • Create devices using all the factories
  • For the non-lazy factories kick off connection in a background task (parallel to start off, revisit this if there are performance problems)
  • Allow plans to be run
  • When a plan is run, call ophyd_async.plan_stubs.ensure_connected(*devices) on all plan args and default args that are devices
joeshannon added a commit that referenced this issue May 13, 2024
The device connection is now handled by device_instantiation in dodal.
This function also provides the option on whether to wait for
connection, so it is not needed here too.

Additionally it can lead to undefined (currently) behaviour if the
device is initially created with fake_with_ophyd_sim = True but then
later connected again by blueapi with fake_with_ophyd_sim = False.

This also leaves the sim property on BlueskyContext redundant so
that is removed too.

For full customisation and flexibility of lazy connect we need #440.

Fixes #461.
@stan-dot stan-dot self-assigned this Jun 5, 2024
@stan-dot stan-dot linked a pull request Jun 20, 2024 that will close this issue
@stan-dot
Copy link
Collaborator

    def with_dodal_module(self, module: ModuleType, **kwargs) -> None:
        devices, exceptions = make_all_devices(module, **kwargs)

        for device in devices.values():
            self.device(device)

        # If exceptions have occurred, we log them but we do not make blueapi
        # fall over
        if len(exceptions) > 0:
            LOGGER.warning(
                f"{len(exceptions)} exceptions occurred while instantiating devices"
            )
            LOGGER.exception(NotConnected(exceptions))

change the call to make_all_devices inside context.py

@stan-dot
Copy link
Collaborator

not sure if we should support the old and new instantiation behaviour or make it behind a flag and go beamline-by-beamline

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants