-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
deps.py
274 lines (211 loc) · 9.92 KB
/
deps.py
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
from hashlib import sha1
from typing import Any, Dict, Optional, List
import yaml
from pathlib import Path
import dbt.utils
import dbt.deprecations
import dbt.exceptions
import json
from dbt.config.renderer import DbtProjectYamlRenderer
from dbt.config.project import package_config_from_data, load_yml_dict
from dbt.constants import PACKAGE_LOCK_FILE_NAME, PACKAGE_LOCK_HASH_KEY
from dbt.deps.base import downloads_directory
from dbt.deps.resolver import resolve_lock_packages, resolve_packages
from dbt.deps.registry import RegistryPinnedPackage
from dbt.contracts.project import Package
from dbt.events.functions import fire_event
from dbt.events.types import (
DepsAddPackage,
DepsFoundDuplicatePackage,
DepsInstallInfo,
DepsListSubdirectory,
DepsLockUpdating,
DepsNoPackagesFound,
DepsNotifyUpdatesAvailable,
DepsStartPackageInstall,
DepsUpdateAvailable,
DepsUpToDate,
Formatting,
)
from dbt.clients import system
from dbt.task.base import BaseTask, move_to_nearest_project_dir
from dbt.config import Project
class dbtPackageDumper(yaml.Dumper):
def increase_indent(self, flow=False, indentless=False):
return super(dbtPackageDumper, self).increase_indent(flow, False)
def _create_sha1_hash(packages: List[Package]) -> str:
"""Create a SHA1 hash of the packages list,
this is used to determine if the packages for current execution matches
the previous lock.
Args:
list[Packages]: list of packages specified that are already rendered
Returns:
str: SHA1 hash of the packages list
"""
package_strs = [json.dumps(package.to_dict(), sort_keys=True) for package in packages]
package_strs = sorted(package_strs)
return sha1("\n".join(package_strs).encode("utf-8")).hexdigest()
def _create_packages_yml_entry(package: str, version: Optional[str], source: str) -> dict:
"""Create a formatted entry to add to `packages.yml` or `package-lock.yml` file
Args:
package (str): Name of package to download
version (str): Version of package to download
source (str): Source of where to download package from
Returns:
dict: Formatted dict to write to `packages.yml` or `package-lock.yml` file
"""
package_key = source
version_key = "version"
if source == "hub":
package_key = "package"
packages_yml_entry = {package_key: package}
if source == "git":
version_key = "revision"
if version:
if "," in version:
version = version.split(",") # type: ignore
packages_yml_entry[version_key] = version
return packages_yml_entry
class DepsTask(BaseTask):
def __init__(self, args: Any, project: Project) -> None:
# N.B. This is a temporary fix for a bug when using relative paths via
# --project-dir with deps. A larger overhaul of our path handling methods
# is needed to fix this the "right" way.
# See GH-7615
project.project_root = str(Path(project.project_root).resolve())
move_to_nearest_project_dir(project.project_root)
super().__init__(args=args, config=None, project=project)
self.cli_vars = args.vars
def track_package_install(
self, package_name: str, source_type: str, version: Optional[str]
) -> None:
# Hub packages do not need to be hashed, as they are public
if source_type == "local":
package_name = dbt.utils.md5(package_name)
version = "local"
elif source_type == "tarball":
package_name = dbt.utils.md5(package_name)
version = "tarball"
elif source_type != "hub":
package_name = dbt.utils.md5(package_name)
version = dbt.utils.md5(version)
dbt.tracking.track_package_install(
"deps",
self.project.hashed_name(),
{"name": package_name, "source": source_type, "version": version},
)
def check_for_duplicate_packages(self, packages_yml):
"""Loop through contents of `packages.yml` to ensure no duplicate package names + versions.
This duplicate check will take into consideration exact match of a package name, as well as
a check to see if a package name exists within a name (i.e. a package name inside a git URL).
Args:
packages_yml (dict): In-memory read of `packages.yml` contents
Returns:
dict: Updated or untouched packages_yml contents
"""
for i, pkg_entry in enumerate(packages_yml["packages"]):
for val in pkg_entry.values():
if self.args.add_package["name"] in val:
del packages_yml["packages"][i]
fire_event(DepsFoundDuplicatePackage(removed_package=pkg_entry))
return packages_yml
def add(self):
packages_yml_filepath = (
f"{self.project.project_root}/{self.project.packages_specified_path}"
)
if not system.path_exists(packages_yml_filepath):
with open(packages_yml_filepath, "w") as package_yml:
yaml.safe_dump({"packages": []}, package_yml)
fire_event(Formatting("Created packages.yml"))
new_package_entry = _create_packages_yml_entry(
self.args.add_package["name"], self.args.add_package["version"], self.args.source
)
with open(packages_yml_filepath, "r") as user_yml_obj:
packages_yml = yaml.safe_load(user_yml_obj)
packages_yml = self.check_for_duplicate_packages(packages_yml)
packages_yml["packages"].append(new_package_entry)
self.project.packages.packages = package_config_from_data(packages_yml).packages
if packages_yml:
with open(packages_yml_filepath, "w") as pkg_obj:
pkg_obj.write(
yaml.dump(packages_yml, Dumper=dbtPackageDumper, default_flow_style=False)
)
fire_event(
DepsAddPackage(
package_name=self.args.add_package["name"],
version=self.args.add_package["version"],
packages_filepath=packages_yml_filepath,
)
)
def lock(self) -> None:
lock_filepath = f"{self.project.project_root}/{PACKAGE_LOCK_FILE_NAME}"
packages = self.project.packages.packages
packages_installed: Dict[str, Any] = {"packages": []}
if not packages:
fire_event(DepsNoPackagesFound())
return
with downloads_directory():
resolved_deps = resolve_packages(packages, self.project, self.cli_vars)
# this loop is to create the package-lock.yml in the same format as original packages.yml
# package-lock.yml includes both the stated packages in packages.yml along with dependent packages
for package in resolved_deps:
packages_installed["packages"].append(package.to_dict())
packages_installed[PACKAGE_LOCK_HASH_KEY] = _create_sha1_hash(
self.project.packages.packages
)
with open(lock_filepath, "w") as lock_obj:
yaml.safe_dump(packages_installed, lock_obj)
fire_event(DepsLockUpdating(lock_filepath=lock_filepath))
def run(self) -> None:
if self.args.add_package:
self.add()
# Check lock file exist and generated by the same pacakges.yml
# or dependencies.yml.
lock_file_path = f"{self.project.project_root}/{PACKAGE_LOCK_FILE_NAME}"
if not system.path_exists(lock_file_path):
self.lock()
elif self.args.upgrade:
self.lock()
else:
# Check dependency definition is modified or not.
current_hash = _create_sha1_hash(self.project.packages.packages)
previous_hash = load_yml_dict(lock_file_path).get(PACKAGE_LOCK_HASH_KEY, None)
if previous_hash != current_hash:
self.lock()
# Early return when dry run or lock only.
if self.args.dry_run or self.args.lock:
return
if system.path_exists(self.project.packages_install_path):
system.rmtree(self.project.packages_install_path)
system.make_directory(self.project.packages_install_path)
packages_lock_dict = load_yml_dict(f"{self.project.project_root}/{PACKAGE_LOCK_FILE_NAME}")
packages_lock_config = package_config_from_data(packages_lock_dict).packages
if not packages_lock_config:
fire_event(DepsNoPackagesFound())
return
with downloads_directory():
lock_defined_deps = resolve_lock_packages(packages_lock_config)
renderer = DbtProjectYamlRenderer(None, self.cli_vars)
packages_to_upgrade = []
for package in lock_defined_deps:
package_name = package.name
source_type = package.source_type()
version = package.get_version()
fire_event(DepsStartPackageInstall(package_name=package_name))
package.install(self.project, renderer)
fire_event(DepsInstallInfo(version_name=package.nice_version_name()))
if isinstance(package, RegistryPinnedPackage):
version_latest = package.get_version_latest()
if version_latest != version:
packages_to_upgrade.append(package_name)
fire_event(DepsUpdateAvailable(version_latest=version_latest))
else:
fire_event(DepsUpToDate())
if package.get_subdirectory():
fire_event(DepsListSubdirectory(subdirectory=package.get_subdirectory()))
self.track_package_install(
package_name=package_name, source_type=source_type, version=version
)
if packages_to_upgrade:
fire_event(Formatting(""))
fire_event(DepsNotifyUpdatesAvailable(packages=packages_to_upgrade))