-
Notifications
You must be signed in to change notification settings - Fork 27
chore: rename realtime_channel.py and default_vcdiff_decoder.py #665
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
Merged
+82
−74
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| from __future__ import annotations | ||
|
|
||
| from typing import Any | ||
|
|
||
| from ably.util.crypto import CipherParams | ||
| from ably.util.exceptions import AblyException | ||
|
|
||
|
|
||
| class ChannelOptions: | ||
| """Channel options for Ably Realtime channels | ||
|
|
||
| Attributes | ||
| ---------- | ||
| cipher : CipherParams, optional | ||
| Requests encryption for this channel when not null, and specifies encryption-related parameters. | ||
| params : Dict[str, str], optional | ||
| Channel parameters that configure the behavior of the channel. | ||
| """ | ||
|
|
||
| def __init__(self, cipher: CipherParams | None = None, params: dict | None = None): | ||
| self.__cipher = cipher | ||
| self.__params = params | ||
| # Validate params | ||
| if self.__params and not isinstance(self.__params, dict): | ||
| raise AblyException("params must be a dictionary", 40000, 400) | ||
|
|
||
| @property | ||
| def cipher(self): | ||
| """Get cipher configuration""" | ||
| return self.__cipher | ||
|
|
||
| @property | ||
| def params(self) -> dict[str, str]: | ||
| """Get channel parameters""" | ||
| return self.__params | ||
|
|
||
| def __eq__(self, other): | ||
| """Check equality with another ChannelOptions instance""" | ||
| if not isinstance(other, ChannelOptions): | ||
| return False | ||
|
|
||
| return (self.__cipher == other.__cipher and | ||
| self.__params == other.__params) | ||
|
|
||
| def __hash__(self): | ||
| """Make ChannelOptions hashable""" | ||
| return hash(( | ||
| self.__cipher, | ||
| tuple(sorted(self.__params.items())) if self.__params else None, | ||
| )) | ||
|
|
||
| def to_dict(self) -> dict[str, Any]: | ||
| """Convert to dictionary representation""" | ||
| result = {} | ||
| if self.__cipher is not None: | ||
| result['cipher'] = self.__cipher | ||
| if self.__params: | ||
| result['params'] = self.__params | ||
| return result | ||
|
|
||
| @classmethod | ||
| def from_dict(cls, options_dict: dict[str, Any]) -> ChannelOptions: | ||
| """Create ChannelOptions from dictionary""" | ||
| if not isinstance(options_dict, dict): | ||
| raise AblyException("options must be a dictionary", 40000, 400) | ||
|
|
||
ttypic marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| return cls( | ||
| cipher=options_dict.get('cipher'), | ||
| params=options_dict.get('params'), | ||
| ) | ||
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.