forked from apache/sedona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spark-version-converter.py
81 lines (72 loc) · 3.2 KB
/
spark-version-converter.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
# 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.
# Python 3
import fileinput
import sys
spark2_anchor = 'SPARK2 anchor'
spark3_anchor = 'SPARK3 anchor'
files = ['sql/src/main/scala/org/apache/sedona/sql/UDF/UdfRegistrator.scala',
'sql/src/main/scala/org/apache/spark/sql/sedona_sql/strategy/join/TraitJoinQueryExec.scala',
'sql/src/main/scala/org/apache/spark/sql/sedona_sql/strategy/join/JoinQueryDetector.scala',
'sql/src/main/scala/org/apache/spark/sql/sedona_sql/strategy/join/BroadcastIndexJoinExec.scala',
'sql/src/main/scala/org/apache/spark/sql/sedona_sql/io/GeotiffFileFormat.scala']
def switch_version(line):
if line[:2] == '//':
print(line[2:], end='') # enable code
return 'enabled'
else:
print('//' + line, end='') # disable code
return 'disabled'
def enable_version(line):
if line[:2] == '//':
print(line[2:], end='') # enable code
return 'enabled'
else:
print(line, end='')
return 'enabled before'
def disable_version(line):
if line[:2] == '//':
print(line, end='')
return 'disabled before'
else:
print('//' + line, end='') # disable code
return 'disabled'
def parse_file(filepath, argv):
conversion_result_spark2 = ''
conversion_result_spark3 = ''
if argv[1] == 'spark2':
with fileinput.FileInput(filepath, inplace=True) as file:
for line in file:
if spark2_anchor in line:
conversion_result_spark2 = spark2_anchor + ' ' + enable_version(line)
elif spark3_anchor in line:
conversion_result_spark3 = spark3_anchor + ' ' + disable_version(line)
else:
print(line, end='')
return conversion_result_spark2 + ' and ' + conversion_result_spark3
elif argv[1] == 'spark3':
with fileinput.FileInput(filepath, inplace=True) as file:
for line in file:
if spark2_anchor in line:
conversion_result_spark2 = spark2_anchor + ' ' + disable_version(line)
elif spark3_anchor in line:
conversion_result_spark3 = spark3_anchor + ' ' + enable_version(line)
else:
print(line, end='')
return conversion_result_spark2 + ' and ' + conversion_result_spark3
else:
return 'wrong spark version'
for filepath in files:
print(filepath + ': ' + parse_file(filepath, sys.argv))