Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 65
feat: Implement updated execute query protocol#1096
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # Copyright 2025 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # | ||
| import warnings | ||
| with warnings.catch_warnings(record=True) as import_warning: | ||
| import google_crc32c # type: ignore | ||
| class _CRC32C(object): | ||
| """ | ||
| Wrapper around ``google_crc32c`` library | ||
| """ | ||
| warn_emitted = False | ||
| @classmethod | ||
| def checksum(cls, val: bytearray) -> int: | ||
| """ | ||
| Returns the crc32c checksum of the data. | ||
| """ | ||
| if import_warning and not cls.warn_emitted: | ||
| cls.warn_emitted = True | ||
| warnings.warn( | ||
| "Using pure python implementation of `google-crc32` for ExecuteQuery response " | ||
| "validation. This is significantly slower than the c extension. If possible, " | ||
| "run in an environment that supports the c extension.", | ||
| RuntimeWarning, | ||
| ) | ||
| memory_view = memoryview(val) | ||
| return google_crc32c.value(bytes(memory_view)) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -44,6 +44,7 @@ | ||
| "proto-plus >= 1.22.3, <2.0.0dev", | ||
| "proto-plus >= 1.25.0, <2.0.0dev; python_version>='3.13'", | ||
| "protobuf>=3.20.2,<6.0.0dev,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5", | ||
| "google-crc32c>=1.5.0, <2.0.0dev", | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we might want to mark this as an optional dependency (move into extras?), so this doesn't break any supported platforms. I need to do a bit of research around this though
| ||
| ] | ||
| extras = {"libcst": "libcst >= 0.2.5"} | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good to have a test for this class. Especially checking if the warning is emitted as expected
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added in checksum_test