forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_backport_packages.py
1236 lines (1066 loc) · 48.2 KB
/
setup_backport_packages.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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# pylint: disable=wrong-import-order
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
"""Setup.py for the Backport packages of Airflow project."""
import collections
import importlib
import json
import logging
import os
import re
import subprocess
import sys
import tempfile
import textwrap
from datetime import datetime, timedelta
from enum import Enum
from os import listdir
from os.path import dirname
from shutil import copyfile
from typing import Any, Dict, Iterable, List, NamedTuple, Optional, Set, Tuple, Type
from setuptools import Command, find_packages, setup as setuptools_setup
MY_DIR_PATH = os.path.dirname(__file__)
SOURCE_DIR_PATH = os.path.abspath(os.path.join(MY_DIR_PATH, os.pardir))
AIRFLOW_PATH = os.path.join(SOURCE_DIR_PATH, "airflow")
PROVIDERS_PATH = os.path.join(AIRFLOW_PATH, "providers")
sys.path.insert(0, SOURCE_DIR_PATH)
# those imports need to come after the above sys.path.insert to make sure that Airflow
# sources are importable without having to add the airflow sources to the PYTHONPATH before
# running the script
import tests.deprecated_classes # noqa # isort:skip
from backport_packages.import_all_provider_classes import import_all_provider_classes # noqa # isort:skip
from setup import PROVIDERS_REQUIREMENTS # noqa # isort:skip
# Note - we do not test protocols as they are not really part of the official API of
# Apache Airflow
# noinspection DuplicatedCode
logger = logging.getLogger(__name__) # noqa
PY3 = sys.version_info[0] == 3
class EntityType(Enum):
Operators = "Operators"
Transfers = "Transfers"
Sensors = "Sensors"
Hooks = "Hooks"
Secrets = "Secrets"
class EntityTypeSummary(NamedTuple):
entities: Set[str]
new_entities: List[str]
moved_entities: Dict[str, str]
new_entities_table: str
moved_entities_table: str
wrong_entities: List[Tuple[type, str]]
class VerifiedEntities(NamedTuple):
all_entities: Set[str]
wrong_entities: List[Tuple[type, str]]
ENTITY_NAMES = {
EntityType.Operators: "Operators",
EntityType.Transfers: "Transfer Operators",
EntityType.Sensors: "Sensors",
EntityType.Hooks: "Hooks",
EntityType.Secrets: "Secrets",
}
TOTALS: Dict[EntityType, List[int]] = {
EntityType.Operators: [0, 0],
EntityType.Hooks: [0, 0],
EntityType.Sensors: [0, 0],
EntityType.Transfers: [0, 0],
EntityType.Secrets: [0, 0],
}
OPERATORS_PATTERN = r".*Operator$"
SENSORS_PATTERN = r".*Sensor$"
HOOKS_PATTERN = r".*Hook$"
SECRETS_PATTERN = r".*Backend$"
TRANSFERS_PATTERN = r".*To[A-Z0-9].*Operator$"
WRONG_TRANSFERS_PATTERN = r".*Transfer$|.*TransferOperator$"
ALL_PATTERNS = {
OPERATORS_PATTERN,
SENSORS_PATTERN,
HOOKS_PATTERN,
SECRETS_PATTERN,
TRANSFERS_PATTERN,
WRONG_TRANSFERS_PATTERN,
}
EXPECTED_SUFFIXES: Dict[EntityType, str] = {
EntityType.Operators: "Operator",
EntityType.Hooks: "Hook",
EntityType.Sensors: "Sensor",
EntityType.Secrets: "Backend",
EntityType.Transfers: "Operator",
}
def get_source_airflow_folder() -> str:
"""
Returns source directory for whole airflow (from the main airflow project).
:return: the folder path
"""
return os.path.abspath(os.path.join(dirname(__file__), os.pardir))
def get_source_providers_folder() -> str:
"""
Returns source directory for providers (from the main airflow project).
:return: the folder path
"""
return os.path.join(get_source_airflow_folder(), "airflow", "providers")
def get_target_providers_folder() -> str:
"""
Returns target directory for providers (in the backport_packages folder)
:return: the folder path
"""
return os.path.abspath(os.path.join(dirname(__file__), "airflow", "providers"))
def get_target_providers_package_folder(provider_package_id: str) -> str:
"""
Returns target package folder based on package_id
:return: the folder path
"""
return os.path.join(get_target_providers_folder(), *provider_package_id.split("."))
class CleanCommand(Command):
"""
Command to tidy up the project root.
Registered as cmd class in setup() so it can be called with ``python setup.py extra_clean``.
"""
description = "Tidy up the project root"
user_options: List[str] = []
def initialize_options(self):
"""Set default values for options."""
def finalize_options(self):
"""Set final values for options."""
# noinspection PyMethodMayBeStatic
def run(self):
"""Run command to remove temporary files and directories."""
os.chdir(dirname(__file__))
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
sys.path.insert(0, SOURCE_DIR_PATH)
import setup # From AIRFLOW_SOURCES/setup.py # noqa # isort:skip
DEPENDENCIES_JSON_FILE = os.path.join(PROVIDERS_PATH, "dependencies.json")
MOVED_ENTITIES: Dict[EntityType, Dict[str, str]] = {
EntityType.Operators: {value[0]: value[1] for value in tests.deprecated_classes.OPERATORS},
EntityType.Sensors: {value[0]: value[1] for value in tests.deprecated_classes.SENSORS},
EntityType.Hooks: {value[0]: value[1] for value in tests.deprecated_classes.HOOKS},
EntityType.Secrets: {value[0]: value[1] for value in tests.deprecated_classes.SECRETS},
EntityType.Transfers: {value[0]: value[1] for value in tests.deprecated_classes.TRANSFERS},
}
def get_pip_package_name(provider_package_id: str) -> str:
"""
Returns PIP package name for the package id.
:param provider_package_id: id of the package
:return: the name of pip package
"""
return "apache-airflow-backport-providers-" + provider_package_id.replace(".", "-")
def get_long_description(provider_package_id: str) -> str:
"""
Gets long description of the package.
:param provider_package_id: package id
:return: content of the description (README file)
"""
package_folder = get_target_providers_package_folder(provider_package_id)
with open(os.path.join(package_folder, "README.md"), encoding='utf-8') as file:
readme_contents = file.read()
copying = True
long_description = ""
for line in readme_contents.splitlines(keepends=True):
if line.startswith("**Table of contents**"):
copying = False
continue
if line.startswith("## Backport package"):
copying = True
if copying:
long_description += line
return long_description
def get_package_release_version(provider_package_id: str, version_suffix: str = "") -> str:
"""
Returns release version including optional suffix.
:param provider_package_id: package id
:param version_suffix: optional suffix (rc1, rc2 etc).
:return:
"""
return get_latest_release(
get_package_path(provider_package_id=provider_package_id)).release_version + version_suffix
def do_setup_package_providers(provider_package_id: str,
version_suffix: str,
package_dependencies: Iterable[str],
extras: Dict[str, List[str]]) -> None:
"""
The main setup method for package.
:param provider_package_id: id of the provider package
:param version_suffix: version suffix to be added to the release version (for example rc1)
:param package_dependencies: dependencies of the package
:param extras: extras of the package
"""
setup.write_version()
provider_package_name = get_pip_package_name(provider_package_id)
package_name = f'{provider_package_name}'
package_prefix = f'airflow.providers.{provider_package_id}'
found_packages = find_packages()
found_packages = [package for package in found_packages if package.startswith(package_prefix)]
install_requires = ['apache-airflow~=1.10']
install_requires.extend(package_dependencies)
setuptools_setup(
name=package_name,
description=f'Back-ported {package_prefix}.* package for Airflow 1.10.*',
long_description=get_long_description(provider_package_id),
long_description_content_type='text/markdown',
license='Apache License 2.0',
version=get_package_release_version(
provider_package_id=provider_package_id,
version_suffix=version_suffix),
packages=found_packages,
zip_safe=False,
install_requires=install_requires,
extras_require=extras,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Monitoring',
],
setup_requires=[
'bowler',
'docutils',
'gitpython',
'setuptools',
'wheel',
],
python_requires='>=3.6',
)
def find_package_extras(package: str) -> Dict[str, List[str]]:
"""
Finds extras for the package specified.
"""
if package == 'providers':
return {}
with open(DEPENDENCIES_JSON_FILE, "rt") as dependencies_file:
cross_provider_dependencies: Dict[str, List[str]] = json.load(dependencies_file)
extras_dict = {module: [get_pip_package_name(module)]
for module in cross_provider_dependencies[package]} \
if cross_provider_dependencies.get(package) else {}
return extras_dict
def get_provider_packages():
"""
Returns all provider packages.
"""
return list(PROVIDERS_REQUIREMENTS)
def usage() -> None:
"""
Prints usage for the package.
"""
print()
print("You should provide PACKAGE as first of the setup.py arguments")
packages = get_provider_packages()
out = ""
for package in packages:
out += f"{package} "
out_array = textwrap.wrap(out, 80)
print("Available packages: ")
print()
for text in out_array:
print(text)
print()
print("Additional commands:")
print()
print(" list-providers-packages - lists all provider packages")
print(" list-backportable-packages - lists all packages that are backportable")
print(" update-package-release-notes [YYYY.MM.DD] [PACKAGES] - updates package release notes")
print(" --version-suffix <SUFFIX> - adds version suffix to version of the packages.")
print()
def is_imported_from_same_module(the_class: str, imported_name: str) -> bool:
"""
Is the class imported from another module?
:param the_class: the class object itself
:param imported_name: name of the imported class
:return: true if the class was imported from another module
"""
return ".".join(imported_name.split(".")[:-1]) == the_class.__module__
def is_example_dag(imported_name: str) -> bool:
"""
Is the class an example_dag class?
:param imported_name: name where the class is imported from
:return: true if it is an example_dags class
"""
return ".example_dags." in imported_name
def is_from_the_expected_base_package(the_class: Type, expected_package: str) -> bool:
"""
Returns true if the class is from the package expected.
:param the_class: the class object
:param expected_package: package expected for the class
:return:
"""
return the_class.__module__.startswith(expected_package)
def inherits_from(the_class: Type, expected_ancestor: Type) -> bool:
"""
Returns true if the class inherits (directly or indirectly) from the class specified.
:param the_class: The class to check
:param expected_ancestor: expected class to inherit from
:return: true is the class inherits from the class expected
"""
if expected_ancestor is None:
return False
import inspect
mro = inspect.getmro(the_class)
return the_class is not expected_ancestor and expected_ancestor in mro
def is_class(the_class: Type) -> bool:
"""
Returns true if the object passed is a class
:param the_class: the class to pass
:return: true if it is a class
"""
import inspect
return inspect.isclass(the_class)
def package_name_matches(the_class: Type, expected_pattern: Optional[str]) -> bool:
"""
In case expected_pattern is set, it checks if the package name matches the pattern.
.
:param the_class: imported class
:param expected_pattern: the pattern that should match the package
:return: true if the expected_pattern is None or the pattern matches the package
"""
return expected_pattern is None or re.match(expected_pattern, the_class.__module__)
def find_all_entities(
imported_classes: List[str],
base_package: str,
ancestor_match: Type,
sub_package_pattern_match: str,
expected_class_name_pattern: str,
unexpected_class_name_patterns: Set[str],
exclude_class_type: Type = None,
false_positive_class_names: Optional[Set[str]] = None) -> VerifiedEntities:
"""
Returns set of entities containing all subclasses in package specified.
:param imported_classes: entities imported from providers
:param base_package: base package name where to start looking for the entities
:param sub_package_pattern_match: this string is expected to appear in the sub-package name
:param ancestor_match: type of the object the method looks for
:param expected_class_name_pattern: regexp of class name pattern to expect
:param unexpected_class_name_patterns: set of regexp of class name pattern that are not expected
:param exclude_class_type: exclude class of this type (Sensor are also Operators so
they should be excluded from the list)
:param false_positive_class_names: set of class names that are wrongly recognised as badly named
"""
found_entities: Set[str] = set()
wrong_entities: List[Tuple[type, str]] = []
for imported_name in imported_classes:
module, class_name = imported_name.rsplit(".", maxsplit=1)
the_class = getattr(importlib.import_module(module), class_name)
if is_class(the_class=the_class) \
and not is_example_dag(imported_name=imported_name) \
and is_from_the_expected_base_package(the_class=the_class, expected_package=base_package) \
and is_imported_from_same_module(the_class=the_class, imported_name=imported_name) \
and inherits_from(the_class=the_class, expected_ancestor=ancestor_match) \
and not inherits_from(the_class=the_class, expected_ancestor=exclude_class_type) \
and package_name_matches(the_class=the_class, expected_pattern=sub_package_pattern_match):
if not false_positive_class_names or class_name not in false_positive_class_names:
if not re.match(expected_class_name_pattern, class_name):
wrong_entities.append(
(the_class, f"The class name {class_name} is wrong. "
f"It should match {expected_class_name_pattern}"))
continue
if unexpected_class_name_patterns:
for unexpected_class_name_pattern in unexpected_class_name_patterns:
if re.match(unexpected_class_name_pattern, class_name):
wrong_entities.append(
(the_class,
f"The class name {class_name} is wrong. "
f"It should not match {unexpected_class_name_pattern}"))
continue
found_entities.add(imported_name)
return VerifiedEntities(all_entities=found_entities, wrong_entities=wrong_entities)
def convert_new_classes_to_table(entity_type: EntityType,
new_entities: List[str],
full_package_name: str) -> str:
"""
Converts new entities tp a markdown table.
:param entity_type: list of entities to convert to markup
:param new_entities: list of new entities
:param full_package_name: name of the provider package
:return: table of new classes
"""
from tabulate import tabulate
headers = [f"New Airflow 2.0 {entity_type.value.lower()}: `{full_package_name}` package"]
table = [(get_class_code_link(full_package_name, class_name, "master"),)
for class_name in new_entities]
return tabulate(table, headers=headers, tablefmt="pipe")
def convert_moved_classes_to_table(entity_type: EntityType,
moved_entities: Dict[str, str],
full_package_name: str) -> str:
"""
Converts moved entities to a markdown table
:param entity_type: type of entities -> operators, sensors etc.
:param moved_entities: dictionary of moved entities `to -> from`
:param full_package_name: name of the provider package
:return: table of moved classes
"""
from tabulate import tabulate
headers = [f"Airflow 2.0 {entity_type.value.lower()}: `{full_package_name}` package",
"Airflow 1.10.* previous location (usually `airflow.contrib`)"]
table = [
(get_class_code_link(full_package_name, to_class, "master"),
get_class_code_link("airflow", moved_entities[to_class], "v1-10-stable"))
for to_class in sorted(moved_entities.keys())
]
return tabulate(table, headers=headers, tablefmt="pipe")
def get_details_about_classes(
entity_type: EntityType,
entities: Set[str],
wrong_entities: List[Tuple[type, str]],
full_package_name: str) -> EntityTypeSummary:
"""
Splits the set of entities into new and moved, depending on their presence in the dict of objects
retrieved from the test_contrib_to_core. Updates all_entities with the split class.
:param entity_type: type of entity (Operators, Hooks etc.)
:param entities: set of entities found
:param wrong_entities: wrong entities found for that type
:param full_package_name: full package name
:return:
"""
dict_of_moved_classes = MOVED_ENTITIES[entity_type]
new_entities = []
moved_entities = {}
for obj in entities:
if obj in dict_of_moved_classes:
moved_entities[obj] = dict_of_moved_classes[obj]
del dict_of_moved_classes[obj]
else:
new_entities.append(obj)
new_entities.sort()
TOTALS[entity_type][0] += len(new_entities)
TOTALS[entity_type][1] += len(moved_entities)
return EntityTypeSummary(
entities=entities,
new_entities=new_entities,
moved_entities=moved_entities,
new_entities_table=convert_new_classes_to_table(
entity_type=entity_type,
new_entities=new_entities,
full_package_name=full_package_name,
),
moved_entities_table=convert_moved_classes_to_table(
entity_type=entity_type,
moved_entities=moved_entities,
full_package_name=full_package_name,
),
wrong_entities=wrong_entities
)
def strip_package_from_class(base_package: str, class_name: str) -> str:
"""
Strips base package name from the class (if it starts with the package name).
"""
if class_name.startswith(base_package):
return class_name[len(base_package) + 1:]
else:
return class_name
def convert_class_name_to_url(base_url: str, class_name) -> str:
"""
Converts the class name to URL that the class can be reached
:param base_url: base URL to use
:param class_name: name of the class
:return: URL to the class
"""
return base_url + os.path.sep.join(class_name.split(".")[:-1]) + ".py"
def get_class_code_link(base_package: str, class_name: str, git_tag: str) -> str:
"""
Provides markdown link for the class passed as parameter.
:param base_package: base package to strip from most names
:param class_name: name of the class
:param git_tag: tag to use for the URL link
:return: URL to the class
"""
url_prefix = f'https://github.com/apache/airflow/blob/{git_tag}/'
return f'[{strip_package_from_class(base_package, class_name)}]' \
f'({convert_class_name_to_url(url_prefix, class_name)})'
def print_wrong_naming(entity_type: EntityType, wrong_classes: List[Tuple[type, str]]):
"""
Prints wrong entities of a given entity type if there are any
:param entity_type: type of the class to print
:param wrong_classes: list of wrong entities
"""
if wrong_classes:
print(f"\nThere are wrongly named entities of type {entity_type}:\n", file=sys.stderr)
for entity_type, message in wrong_classes:
print(f"{entity_type}: {message}", file=sys.stderr)
def get_package_class_summary(full_package_name: str, imported_classes: List[str]) \
-> Dict[EntityType, EntityTypeSummary]:
"""
Gets summary of the package in the form of dictionary containing all types of entities
:param full_package_name: full package name
:param imported_classes: entities imported_from providers
:return: dictionary of objects usable as context for JINJA2 templates - or None if there are some errors
"""
from airflow.hooks.base_hook import BaseHook
from airflow.models.baseoperator import BaseOperator
from airflow.secrets import BaseSecretsBackend
from airflow.sensors.base_sensor_operator import BaseSensorOperator
all_verified_entities: Dict[EntityType, VerifiedEntities] = {EntityType.Operators: find_all_entities(
imported_classes=imported_classes,
base_package=full_package_name,
sub_package_pattern_match=r".*\.operators\..*",
ancestor_match=BaseOperator,
expected_class_name_pattern=OPERATORS_PATTERN,
unexpected_class_name_patterns=ALL_PATTERNS - {OPERATORS_PATTERN},
exclude_class_type=BaseSensorOperator,
false_positive_class_names={
'CloudVisionAddProductToProductSetOperator',
'CloudDataTransferServiceGCSToGCSOperator',
'CloudDataTransferServiceS3ToGCSOperator',
'BigQueryCreateDataTransferOperator',
'CloudTextToSpeechSynthesizeOperator',
'CloudSpeechToTextRecognizeSpeechOperator',
}
), EntityType.Sensors: find_all_entities(
imported_classes=imported_classes,
base_package=full_package_name,
sub_package_pattern_match=r".*\.sensors\..*",
ancestor_match=BaseSensorOperator,
expected_class_name_pattern=SENSORS_PATTERN,
unexpected_class_name_patterns=ALL_PATTERNS - {OPERATORS_PATTERN, SENSORS_PATTERN}
), EntityType.Hooks: find_all_entities(
imported_classes=imported_classes,
base_package=full_package_name,
sub_package_pattern_match=r".*\.hooks\..*",
ancestor_match=BaseHook,
expected_class_name_pattern=HOOKS_PATTERN,
unexpected_class_name_patterns=ALL_PATTERNS - {HOOKS_PATTERN}
), EntityType.Secrets: find_all_entities(
imported_classes=imported_classes,
sub_package_pattern_match=r".*\.secrets\..*",
base_package=full_package_name,
ancestor_match=BaseSecretsBackend,
expected_class_name_pattern=SECRETS_PATTERN,
unexpected_class_name_patterns=ALL_PATTERNS - {SECRETS_PATTERN},
), EntityType.Transfers: find_all_entities(
imported_classes=imported_classes,
base_package=full_package_name,
sub_package_pattern_match=r".*\.transfers\..*",
ancestor_match=BaseOperator,
expected_class_name_pattern=TRANSFERS_PATTERN,
unexpected_class_name_patterns=ALL_PATTERNS - {OPERATORS_PATTERN, TRANSFERS_PATTERN},
)}
for entity in EntityType:
print_wrong_naming(entity, all_verified_entities[entity].wrong_entities)
entities_summary: Dict[EntityType, EntityTypeSummary] = {} # noqa
for entity_type in EntityType:
entities_summary[entity_type] = get_details_about_classes(
entity_type,
all_verified_entities[entity_type].all_entities,
all_verified_entities[entity_type].wrong_entities,
full_package_name)
return entities_summary
def render_template(template_name: str, context: Dict[str, Any]) -> str:
"""
Renders template based on it's name. Reads the template from <name>_TEMPLATE.md.jinja2 in current dir.
:param template_name: name of the template to use
:param context: Jinja2 context
:return: rendered template
"""
import jinja2
template_loader = jinja2.FileSystemLoader(searchpath=MY_DIR_PATH)
template_env = jinja2.Environment(
loader=template_loader,
undefined=jinja2.StrictUndefined,
autoescape=True
)
template = template_env.get_template(f"{template_name}_TEMPLATE.md.jinja2")
content: str = template.render(context)
return content
def convert_git_changes_to_table(changes: str, base_url: str) -> str:
"""
Converts list of changes from it's string form to markdown table.
The changes are in the form of multiple lines where each line consists of:
FULL_COMMIT_HASH SHORT_COMMIT_HASH COMMIT_DATE COMMIT_SUBJECT
The subject can contain spaces but one of the preceding values can, so we can make split
3 times on spaces to break it up.
:param changes: list of changes in a form of multiple-line string
:param base_url: base url for the commit URL
:return: markdown-formatted table
"""
from tabulate import tabulate
lines = changes.split("\n")
headers = ["Commit", "Committed", "Subject"]
table_data = []
for line in lines:
if line == "":
continue
full_hash, short_hash, date, message = line.split(" ", maxsplit=3)
table_data.append((f"[{short_hash}]({base_url}{full_hash})", date, message))
return tabulate(table_data, headers=headers, tablefmt="pipe")
def convert_pip_requirements_to_table(requirements: Iterable[str]) -> str:
"""
Converts PIP requirement list to a markdown table.
:param requirements: requirements list
:return: markdown-formatted table
"""
from tabulate import tabulate
headers = ["PIP package", "Version required"]
table_data = []
for dependency in requirements:
found = re.match(r"(^[^<=>~]*)([^<=>~]?.*)$", dependency)
if found:
package = found.group(1)
version_required = found.group(2)
table_data.append((package, version_required))
else:
table_data.append((dependency, ""))
return tabulate(table_data, headers=headers, tablefmt="pipe")
def convert_cross_package_dependencies_to_table(
cross_package_dependencies: List[str], base_url: str) -> str:
"""
Converts cross-package dependencies to a markdown table
:param cross_package_dependencies: list of cross-package dependencies
:param base_url: base url to use for links
:return: markdown-formatted table
"""
from tabulate import tabulate
headers = ["Dependent package", "Extra"]
table_data = []
for dependency in cross_package_dependencies:
pip_package_name = f"apache-airflow-backport-providers-{dependency.replace('.','-')}"
url_suffix = f"{dependency.replace('.','/')}"
table_data.append((f"[{pip_package_name}]({base_url}{url_suffix})", dependency))
return tabulate(table_data, headers=headers, tablefmt="pipe")
LICENCE = """<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
-->
"""
PROVIDERS_CHANGES_PREFIX = "PROVIDERS_CHANGES_"
"""
Keeps information about historical releases.
"""
ReleaseInfo = collections.namedtuple(
"ReleaseInfo",
"release_version release_version_no_leading_zeros last_commit_hash content file_name")
def strip_leading_zeros(release_version: str) -> str:
return release_version.replace(".0", ".")
def get_all_releases(provider_package_path: str) -> List[ReleaseInfo]:
"""
Returns information about past releases (retrieved from PROVIDERS_CHANGES_ files stored in the
package folder.
:param provider_package_path: path of the package
:return: list of releases made so far.
"""
past_releases: List[ReleaseInfo] = []
changes_file_names = listdir(provider_package_path)
for file_name in sorted(changes_file_names, reverse=True):
if file_name.startswith(PROVIDERS_CHANGES_PREFIX) and file_name.endswith(".md"):
changes_file_path = os.path.join(provider_package_path, file_name)
with open(changes_file_path, "rt") as changes_file:
content = changes_file.read()
found = re.search(r'/([a-z0-9]*)\)', content, flags=re.MULTILINE)
if not found:
print("No commit found. This seems to be first time you run it", file=sys.stderr)
else:
last_commit_hash = found.group(1)
release_version = file_name[len(PROVIDERS_CHANGES_PREFIX):][:-3]
past_releases.append(
ReleaseInfo(release_version=release_version,
release_version_no_leading_zeros=strip_leading_zeros(release_version),
last_commit_hash=last_commit_hash,
content=content,
file_name=file_name))
return past_releases
def get_latest_release(provider_package_path: str) -> ReleaseInfo:
"""
Gets information about the latest release.
:param provider_package_path: path of package
:return: latest release information
"""
releases = get_all_releases(provider_package_path=provider_package_path)
if len(releases) == 0:
return ReleaseInfo(release_version="0.0.0",
release_version_no_leading_zeros="0.0.0",
last_commit_hash="no_hash",
content="empty",
file_name="no_file")
else:
return releases[0]
def get_previous_release_info(previous_release_version: str,
past_releases: List[ReleaseInfo],
current_release_version: str) -> Optional[str]:
"""
Find previous release. In case we are re-running current release we assume that last release was
the previous one. This is needed so that we can generate list of changes since the previous release.
:param previous_release_version: known last release version
:param past_releases: list of past releases
:param current_release_version: release that we are working on currently
:return:
"""
previous_release = None
if previous_release_version == current_release_version:
# Re-running for current release - use previous release as base for git log
if len(past_releases) > 1:
previous_release = past_releases[1].last_commit_hash
else:
previous_release = past_releases[0].last_commit_hash if past_releases else None
return previous_release
def check_if_release_version_ok(
past_releases: List[ReleaseInfo],
current_release_version: str) -> Tuple[str, Optional[str]]:
"""
Check if the release version passed is not later than the last release version
:param past_releases: all past releases (if there are any)
:param current_release_version: release version to check
:return: Tuple of current/previous_release (previous might be None if there are no releases)
"""
previous_release_version = past_releases[0].release_version if past_releases else None
if current_release_version == '':
if previous_release_version:
current_release_version = previous_release_version
else:
current_release_version = (datetime.today() + timedelta(days=5)).strftime('%Y.%m.%d')
if previous_release_version and previous_release_version > current_release_version:
print(f"The release {current_release_version} must be not less than "
f"{previous_release_version} - last release for the package", file=sys.stderr)
sys.exit(2)
return current_release_version, previous_release_version
def get_cross_provider_dependent_packages(provider_package_id: str) -> List[str]:
"""
Returns cross-provider dependencies for the package.
:param provider_package_id: package id
:return: list of cross-provider dependencies
"""
with open(os.path.join(PROVIDERS_PATH, "dependencies.json"), "rt") as dependencies_file:
dependent_packages = json.load(dependencies_file).get(provider_package_id) or []
return dependent_packages
def make_sure_remote_apache_exists_and_fetch():
"""
Make sure that apache remote exist in git. We need to take a log from the master of apache
repository - not locally - because when we commit this change and run it, our log will include the
current commit - which is going to have different commit id once we merge. So it is a bit
catch-22.
:return:
"""
try:
subprocess.check_call(["git", "remote", "add", "apache", "https://github.com/apache/airflow.git"],
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
except subprocess.CalledProcessError as e:
if e.returncode == 128:
print("The remote `apache` already exists. If you have trouble running "
"git log delete the remote", file=sys.stderr)
else:
raise
subprocess.check_call(["git", "fetch", "apache"],
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
def get_git_command(base_commit: Optional[str]) -> List[str]:
"""
Get git command to run for the current repo from the current folder (which is the package folder).
:param base_commit: if present - base commit from which to start the log from
:return: git command to run
"""
git_cmd = ["git", "log", "apache/master", "--pretty=format:%H %h %cd %s", "--date=short"]
if base_commit:
git_cmd.append(f"{base_commit}...HEAD")
git_cmd.extend(['--', '.'])
return git_cmd
def store_current_changes(provider_package_path: str,
current_release_version: str, current_changes: str) -> None:
"""
Stores current changes in the PROVIDERS_CHANGES_YYYY.MM.DD.md file.
:param provider_package_path: path for the package
:param current_release_version: release version to build
:param current_changes: list of changes formatted in markdown format
"""
current_changes_file_path = os.path.join(provider_package_path,
PROVIDERS_CHANGES_PREFIX + current_release_version + ".md")
with open(current_changes_file_path, "wt") as current_changes_file:
current_changes_file.write(current_changes)
current_changes_file.write("\n")
def get_package_path(provider_package_id: str) -> str:
"""
Retrieves package path from package id.
:param provider_package_id: id of the package
:return: path of the providers folder
"""
provider_package_path = os.path.join(PROVIDERS_PATH, *provider_package_id.split("."))
return provider_package_path
def get_additional_package_info(provider_package_path: str) -> str:
"""
Returns additional info for the package.
:param provider_package_path: path for the package
:return: additional information for the path (empty string if missing)
"""
additional_info_file_path = os.path.join(provider_package_path, "ADDITIONAL_INFO.md")
if os.path.isfile(additional_info_file_path):
with open(additional_info_file_path, "rt") as additional_info_file:
additional_info = additional_info_file.read()
additional_info_lines = additional_info.splitlines(keepends=True)
result = ""
skip_comment = True
for line in additional_info_lines:
if line.startswith(" -->"):
skip_comment = False
continue
if not skip_comment:
result += line
return result
return ""
def is_camel_case_with_acronyms(s: str):
"""
Checks if the string passed is Camel Case (with capitalised acronyms allowed).
:param s: string to check
:return: true if the name looks cool as Class name.
"""
return s != s.lower() and s != s.upper() and "_" not in s and s[0].upper() == s[0]
def check_if_classes_are_properly_named(
entity_summary: Dict[EntityType, EntityTypeSummary]) -> Tuple[int, int]:
"""
Check if all entities in the dictionary are named properly. It prints names at the output
and returns the status of class names.
:param entity_summary: dictionary of class names to check, grouped by types.
:return: Tuple of 2 ints = total number of entities and number of badly named entities
"""
total_class_number = 0
badly_named_class_number = 0
for entity_type, class_suffix in EXPECTED_SUFFIXES.items():
for class_full_name in entity_summary[entity_type].entities:
_, class_name = class_full_name.rsplit(".", maxsplit=1)
error_encountered = False
if not is_camel_case_with_acronyms(class_name):
print(f"The class {class_full_name} is wrongly named. The "