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

Get area and floor by alias #126150

Merged
merged 5 commits into from
Mar 27, 2025

Conversation

formatBCE
Copy link
Contributor

@formatBCE formatBCE commented Sep 17, 2024

Proposed change

Add ability to get area and floor by alias, when using corresponding get_$_by_name function.
This is another take on changes, proposed in this PR by @synesthesiam

Type of change

  • Dependency upgrade
  • Bugfix (non-breaking change which fixes an issue)
  • New integration (thank you!)
  • New feature (which adds functionality to an existing integration)
  • Deprecation (breaking change to happen in the future)
  • Breaking change (fix/feature causing existing functionality to break)
  • Code quality improvements to existing code or addition of tests

Additional information

Checklist

  • The code change is tested and works locally.
  • Local tests pass. Your PR cannot be merged unless tests pass
  • There is no commented out code in this PR.
  • I have followed the development checklist
  • I have followed the perfect PR recommendations
  • The code has been formatted using Ruff (ruff format homeassistant tests)
  • Tests have been added to verify that the new code works.

If user exposed functionality or configuration variables are added/changed:

If the code communicates with devices, web services, or third-party tools:

  • The manifest file has all fields filled out correctly.
    Updated and included derived files by running: python3 -m script.hassfest.
  • New or updated dependencies have been added to requirements_all.txt.
    Updated by running python3 -m script.gen_requirements_all.
  • For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.

To help with the load of incoming pull requests:

@formatBCE
Copy link
Contributor Author

@balloob you commented on previous PR by Mike, could you check this one please?

@formatBCE formatBCE marked this pull request as draft September 17, 2024 21:10
@formatBCE formatBCE marked this pull request as ready for review September 17, 2024 21:10
@synesthesiam synesthesiam self-assigned this Sep 18, 2024
Copy link
Contributor

@arturpragacz arturpragacz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some first look issue. Same for floors.

Comment on lines 225 to 231
@callback
def async_get_area_by_name(self, name: str) -> AreaEntry | None:
"""Get area by name."""
return self.areas.get_by_name(name)
"""Get area by name or alias."""
if area := self.areas.get_by_name(name):
return area
areas_list = self.areas.get_areas_for_alias(name)
return areas_list[0] if areas_list else None
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This method is used by other methods in this class, like async_create, therefore you cannot change it here without consequences.

What you probably wanted to do is to create a separate method for your new purpose and call it in templates.

Copy link
Contributor Author

@formatBCE formatBCE Sep 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This method is used by other methods in this class, like async_create, therefore you cannot change it here without consequences.

What you probably wanted to do is to create a separate method for your new purpose and call it in templates.

That's what i suggested in Discord to devs, but we agreed to use same method.

P.S. here's Discord link

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Who is devs? Who is we?

If there are some additional decisions made, they should be documented in the PR.

The code, as it is now, is buggy, and cannot be merged in this state.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Who is devs? Who is we?

If there are some additional decisions made, they should be documented in the PR.

The code, as it is now, is buggy, and cannot be merged in this state.

I posted link to Discord discussion.

As you may see in description, this approach was originally proposed by @synesthesiam . However, that PR was closed because it was using unoptimized for-loops. I used index array for it, but the logic remained the same.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see now that in the previous PR balloob had the same reservations about this approach as I do. This cannot be merged like that.

If you want to, we can discuss it further on Discord.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see now that in the previous PR balloob had the same reservations about this approach as I do. This cannot be merged like that.

If you want to, we can discuss it further on Discord.

I'd love to! :) I actually missed that comment by Paulus!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wrote to you on Discord.

Copy link
Contributor

@arturpragacz arturpragacz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@frenck frenck requested a review from balloob November 10, 2024 20:21
@frenck frenck modified the milestone: 2024.12.0b0 Nov 25, 2024
@formatBCE
Copy link
Contributor Author

@frenck @balloob sorry for ping - this was marked for 2024.12, but looks like didn't make it. Should i close PRs, or they'll be merged eventually?

@joostlek
Copy link
Member

Please be patient, I'm still in the process of trying to get the right people to look at it

@arturpragacz
Copy link
Contributor

Oh, it has been quite some time. And some changes along the way.

Still I think it looks OK.

But please make sure it merges cleanly on current dev and CI still passes.

@formatBCE
Copy link
Contributor Author

Oh, it has been quite some time. And some changes along the way.

Still I think it looks OK.

But please make sure it merges cleanly on current dev and CI still passes.

Want me to merge dev?

@arturpragacz
Copy link
Contributor

Yes. It's been 4 months, there's been some changes, let's make sure CI still passes.

@formatBCE
Copy link
Contributor Author

Yes. It's been 4 months, there's been some changes, let's make sure CI still passes.

Remember, that CI can fail randomly too :)

@formatBCE
Copy link
Contributor Author

@arturpragacz your changes to the name normalization removed normalize_name method, that i used for aliases too. Should i use normalize_name from normalized_name_base_registry.py or create own (duplicated) implementation as in timers.py and intent.py?

@arturpragacz
Copy link
Contributor

Use the one from the registry.

@formatBCE
Copy link
Contributor Author

Done.

@formatBCE
Copy link
Contributor Author

Please be patient, I'm still in the process of trying to get the right people to look at it

Any news? :) Another month...

@frenck frenck marked this pull request as draft March 2, 2025 14:26
@frenck
Copy link
Member

frenck commented Mar 2, 2025

Hi there @formatBCE 👋

Thanks for the pull request. I've marked it as draft for a moment. I want to take this one into the core architectural meeting to check with the others. We had a discussion on the linked previous pull request by Mike, so I want to make sure all concerns are addressed in this pull request.

Will get back to you later this week 👍

../Frenck

@frenck frenck marked this pull request as ready for review March 27, 2025 11:50
@frenck frenck force-pushed the get_area_and_floor_by_alias branch from 2685503 to ec0ca01 Compare March 27, 2025 11:51
Copy link
Member

@frenck frenck left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your patience on this one @formatBCE 🙏

We have discussed it with the team, and agreed this approach is acceptable. Reviewed the implementation and looks good as well 👍

Thanks for this one 🥇

../Frenck

@formatBCE
Copy link
Contributor Author

Woohoo! Glad to help! :)

@frenck frenck merged commit dea00fa into home-assistant:dev Mar 27, 2025
48 checks passed
@github-actions github-actions bot locked and limited conversation to collaborators Mar 28, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants