1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
# Copyright 2024-present MongoDB, Inc.
#
# 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 os
import sys
from os import listdir
from pathlib import Path
from unasync import Rule, unasync_files
replacements = {
"asynchronous": "synchronous",
"AsyncMongoCryptCallback": "MongoCryptCallback",
"AsyncExplicitEncrypter": "ExplicitEncrypter",
"AsyncAutoEncrypter": "AutoEncrypter",
"AsyncClient": "Client",
"AsyncMongoCrypt": "MongoCrypt",
"aclose": "close",
}
ROOT = Path(__file__).absolute().parent.parent
_base = ROOT / "pymongocrypt"
async_files = [
f"{_base}/asynchronous/{f}"
for f in listdir(f"{_base}/asynchronous")
if (_base / "asynchronous" / f).is_file()
]
unasync_files(
async_files,
[
Rule(
fromdir=f"{_base}/asynchronous/",
todir=f"{_base}/synchronous/",
additional_replacements=replacements,
)
],
)
sync_files = [
f"{_base}/synchronous/{f}"
for f in listdir(f"{_base}/synchronous")
if (_base / "synchronous" / f).is_file()
]
modified_files = [f"./{f}" for f in sys.argv[1:]]
for file in sync_files:
if file in modified_files and "OVERRIDE_SYNCHRO_CHECK" not in os.environ:
raise ValueError(f"Refusing to overwrite {file}")
with open(file, "r+") as f:
lines = f.readlines()
for i in range(len(lines)):
for s in replacements:
lines[i] = lines[i].replace(s, replacements[s])
f.seek(0)
f.truncate()
f.writelines(lines)
|