-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup
executable file
·1108 lines (940 loc) · 37.7 KB
/
setup
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
#!/bin/bash
__dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${__dir}"
RUBY_VERSION='2.6.8'
BUNDLER_VERSION='2.4.19'
COCOAPODS_VERSION='1.13.0'
SYNX_VERSION='0.2.1'
XCPRETTY_VERSION='0.3.0'
echo "# # # # #"
# # # # # # # # # # # # #
# Save given projectname
if [[ ! -e ".projectname" ]];
then
if [[ "$#" -ne 1 ]];
then
echo "Illegal number of parameters. Provide the name of your Xcode-project-file (without extension)."
exit 1
else
{
echo "$1"
} > ".projectname"
fi
elif [[ "$#" -eq 1 ]];
then
read -r -p "Do you want to update the saved project-name to '$1'? [y/N] " RESPONSE
case $RESPONSE in
[yY][eE][sS]|[yY])
{
echo "$1"
} > ".projectname"
;;
esac
echo "# # #"
fi
#
# # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Load projectname from .projectname file
PROJECTNAME=$(head -n 1 .projectname)
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # #
# Check for rvm, abort if not installed
echo "Checking for rvm installation..."
[[ -f "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
[[ -f "/usr/local/rvm/scripts/rvm" ]] && source "/usr/local/rvm/scripts/rvm"
RVM_TYPE_OUTPUT=$( (type rvm | head -1) 2>&1 )
if [[ $RVM_TYPE_OUTPUT = "rvm is a function" ]];
then
echo "rvm is installed"
else
echo "rvm is not installed. Please install rvm before using this script. For instructions on installing rvm, visit https://rvm.io/rvm/install"
exit 1
fi
#
# # # # # # # # # # # # # # # # # # #
echo "# # #"
# # # # # # # # # # # #
# Initialize git repo
git init
#
# # # # # # # # # # # #
# # # # # # # # # # # #
# Create .gitattributes file
echo "*.pbxproj merge=union" > ".gitattributes"
#
# # # # # # # # # # # #
# # # # # # # # # # # #
# Create .gitignore file
cat > ".gitignore" <<\EOF
#########################
# .gitignore file for Xcode4 / OS X Source projects
#
# Version 2.0
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#
# 2013 updates:
# - fixed the broken "save personal Schemes"
#
# NB: if you are storing "built" products, this WILL NOT WORK,
# and you should use a different .gitignore (or none at all)
# This file is for SOURCE projects, where there are many extra
# files that we want to exclude
#
#########################
#####
# OS X temporary files that should never be committed
.DS_Store
*.swp
#profile
####
# Xcode temporary files that should never be committed
#
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this...
*~.nib
####
# Xcode build files -
#
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"
DerivedData/
# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"
build/
#####
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
#
# This is complicated:
#
# SOMETIMES you need to put this file in version control.
# Apple designed it poorly - if you use "custom executables", they are
# saved in this file.
# 99% of projects do NOT use those, so they do NOT want to version control this file.
# ..but if you're in the 1%, comment out the line "*.pbxuser"
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
# NB: also, whitelist the default ones, some projects need to use these
!default.pbxuser
!default.mode1v3
!default.mode2v3
!default.perspectivev3
####
# Xcode 4 - semi-personal settings
#
#
# OPTION 1: ---------------------------------
# throw away ALL personal settings (including custom schemes!
# - unless they are "shared")
#
# NB: this is exclusive with OPTION 2 below
xcuserdata
# OPTION 2: ---------------------------------
# get rid of ALL personal settings, but KEEP SOME OF THEM
# - NB: you must manually uncomment the bits you want to keep
#
# NB: this is exclusive with OPTION 1 above
#
#xcuserdata/**/*
# (requires option 2 above): Personal Schemes
#
#!xcuserdata/**/xcschemes/*
####
# XCode 4 workspaces - more detailed
#
# Workspaces are important! They are a core feature of Xcode - don't exclude them :)
#
# Workspace layout is quite spammy. For reference:
#
# /(root)/
# /(project-name).xcodeproj/
# project.pbxproj
# /project.xcworkspace/
# contents.xcworkspacedata
# /xcuserdata/
# /(your name)/xcuserdatad/
# UserInterfaceState.xcuserstate
# /xcsshareddata/
# /xcschemes/
# (shared scheme name).xcscheme
# /xcuserdata/
# /(your name)/xcuserdatad/
# (private scheme).xcscheme
# xcschememanagement.plist
#
#
####
# Xcode 4 - Deprecated classes
#
# Allegedly, if you manually "deprecate" your classes, they get moved here.
#
# We're using source-control, so this is a "feature" that we do not want!
*.moved-aside
####
# XCode - Blueprint
#
*.xcscmblueprint
###
# AppCode internal files
.idea/
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
Pods/
####
# UNKNOWN: recommended by others, but I can't discover what these files are
#
# ...none. Everything is now explained.
EOF
#
# # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Write projectname to .ruby-gemset file
echo "$PROJECTNAME" > ".ruby-gemset"
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Write RUBY_VERSION to .ruby-version file
echo "$RUBY_VERSION" > ".ruby-version"
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create Gemfile
cat > "Gemfile" <<EOF
source 'https://rubygems.org'
gem 'cocoapods', '${COCOAPODS_VERSION}'
gem 'synx', '${SYNX_VERSION}'
gem 'xcpretty', '${XCPRETTY_VERSION}'
EOF
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create run_synx_and_xUnique file
cat > "run_synx_and_xUnique" <<\EOF
#!/bin/bash
set -e
__dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${__dir}"
# # # # # # # # # # # # # # # # # # # # #
# Load projectname from .projectname file
PROJECTNAME=$(head -n 1 .projectname)
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # #
# Run synx
./scripts/run_synx "$PROJECTNAME"
#
# # # # # #
# # # # # # #
# Run xUnique
./scripts/run_xUnique "$PROJECTNAME"
#
# # # # # # #
EOF
chmod +x "run_synx_and_xUnique"
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create scripts directory
mkdir -p scripts
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create xUnique.py
cat > "scripts/xUnique.py" <<\EOF
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This software is licensed under the Apache 2 license, quoted below.
Copyright 2014 Xiao Wang <[email protected], http://fclef.wordpress.com/about>
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.
"""
from __future__ import unicode_literals
from __future__ import print_function
from subprocess import (check_output as sp_co, CalledProcessError)
from os import path, unlink, rename
from hashlib import md5 as hl_md5
from json import (loads as json_loads, dump as json_dump)
from fileinput import (input as fi_input, close as fi_close)
from re import compile as re_compile
from sys import (argv as sys_argv, getfilesystemencoding as sys_get_fs_encoding, version_info)
from collections import deque
from filecmp import cmp as filecmp_cmp
from optparse import OptionParser
def construct_compatibility_layer():
if version_info.major == 3:
class SixPython3Impl(object):
PY2 = False
PY3 = True
text_type = str
string_types = (str,)
return SixPython3Impl
elif version_info.major == 2:
class SixPython2Impl(object):
PY2 = True
PY3 = False
text_type = unicode
string_types = (basestring,)
return SixPython2Impl
else:
raise XUniqueExit("unsupported python version")
six = construct_compatibility_layer()
md5_hex = lambda a_str: hl_md5(a_str.encode('utf-8')).hexdigest().upper()
if six.PY2:
print_ng = lambda *args, **kwargs: print(*[six.text_type(i).encode(sys_get_fs_encoding()) for i in args], **kwargs)
output_u8line = lambda *args: print(*[six.text_type(i).encode('utf-8') for i in args], end='')
elif six.PY3:
print_ng = lambda *args, **kwargs: print(*args, **kwargs)
output_u8line = lambda *args: print(*args, end='')
def decoded_string(string, encoding=None):
if isinstance(string, six.text_type):
return string
return string.decode(encoding or sys_get_fs_encoding())
def warning_print(*args, **kwargs):
new_args = list(args)
new_args[0] = '\x1B[33m{}'.format(new_args[0])
new_args[-1] = '{}\x1B[0m'.format(new_args[-1])
print_ng(*new_args, **kwargs)
def success_print(*args, **kwargs):
new_args = list(args)
new_args[0] = '\x1B[32m{}'.format(new_args[0])
new_args[-1] = '{}\x1B[0m'.format(new_args[-1])
print_ng(*new_args, **kwargs)
class XUnique(object):
def __init__(self, target_path, verbose=False):
# check project path
abs_target_path = path.abspath(target_path)
if not path.exists(abs_target_path):
raise XUniqueExit('Path "',abs_target_path ,'" not found!')
elif abs_target_path.endswith('xcodeproj'):
self.xcodeproj_path = abs_target_path
self.xcode_pbxproj_path = path.join(abs_target_path, 'project.pbxproj')
elif abs_target_path.endswith('project.pbxproj'):
self.xcode_pbxproj_path = abs_target_path
self.xcodeproj_path = path.dirname(self.xcode_pbxproj_path)
else:
raise XUniqueExit("Path must be dir '.xcodeproj' or file 'project.pbxproj'")
self.verbose = verbose
self.vprint = print if self.verbose else lambda *a, **k: None
self.proj_root = self.get_proj_root()
self.proj_json = self.pbxproj_to_json()
self.nodes = self.proj_json['objects']
self.root_hex = self.proj_json['rootObject']
self.root_node = self.nodes[self.root_hex]
self.main_group_hex = self.root_node['mainGroup']
self.__result = {}
# initialize root content
self.__result.update(
{
self.root_hex: {'path': self.proj_root,
'new_key': md5_hex(self.proj_root),
'type': self.root_node['isa']
}
})
self._is_modified = False
@property
def is_modified(self):
return self._is_modified
def pbxproj_to_json(self):
pbproj_to_json_cmd = ['plutil', '-convert', 'json', '-o', '-', self.xcode_pbxproj_path]
try:
json_unicode_str = decoded_string(sp_co(pbproj_to_json_cmd))
return json_loads(json_unicode_str)
except CalledProcessError as cpe:
raise XUniqueExit("""{}
Please check:
1. You have installed Xcode Command Line Tools and command 'plutil' could be found in $PATH;
2. The project file is not broken, such like merge conflicts, incomplete content due to xUnique failure. """.format(
cpe.output))
def __set_to_result(self, parent_hex, current_hex, current_path_key):
current_node = self.nodes[current_hex]
isa_type = current_node['isa']
if isinstance(current_path_key, (list, tuple)):
current_path = '/'.join([six.text_type(current_node[i]) for i in current_path_key])
elif isinstance(current_path_key, six.string_types):
if current_path_key in current_node.keys():
current_path = current_node[current_path_key]
else:
current_path = current_path_key
else:
raise KeyError('current_path_key must be list/tuple/string')
cur_abs_path = '{}/{}'.format(self.__result[parent_hex]['path'], current_path)
new_key = md5_hex(cur_abs_path)
self.__result.update({
current_hex: {'path': '{}[{}]'.format(isa_type, cur_abs_path),
'new_key': new_key,
'type': isa_type
}
})
return new_key
def get_proj_root(self):
"""PBXProject name,the root node"""
pbxproject_ptn = re_compile('(?<=PBXProject ").*(?=")')
with open(self.xcode_pbxproj_path) as pbxproj_file:
for line in pbxproj_file:
# project.pbxproj is an utf-8 encoded file
line = decoded_string(line, 'utf-8')
result = pbxproject_ptn.search(line)
if result:
# Backward compatibility using suffix
return '{}.xcodeproj'.format(result.group())
# project file must be in ASCII format
if 'Pods.xcodeproj' in self.xcode_pbxproj_path:
raise XUniqueExit("Pods project file should be in ASCII format, but Cocoapods converted Pods project file to XML by default. Install 'xcproj' in your $PATH via brew to fix.")
else:
raise XUniqueExit("File 'project.pbxproj' is broken. Cannot find PBXProject name.")
def unique_project(self):
"""iterate all nodes in pbxproj file:
PBXProject
XCConfigurationList
PBXNativeTarget
PBXTargetDependency
PBXContainerItemProxy
XCBuildConfiguration
PBX*BuildPhase
PBXBuildFile
PBXReferenceProxy
PBXFileReference
PBXGroup
PBXVariantGroup
"""
self.__unique_project(self.root_hex)
if self.verbose:
debug_result_file_path = path.join(self.xcodeproj_path, 'debug_result.json')
with open(debug_result_file_path, 'w') as debug_result_file:
json_dump(self.__result, debug_result_file)
warning_print("Debug result json file has been written to '", debug_result_file_path, sep='')
self.substitute_old_keys()
def substitute_old_keys(self):
self.vprint('replace UUIDs and remove unused UUIDs')
key_ptn = re_compile('(?<=\s)([0-9A-Z]{24}|[0-9A-F]{32})(?=[\s;])')
removed_lines = []
for line in fi_input(self.xcode_pbxproj_path, backup='.ubak', inplace=1):
# project.pbxproj is an utf-8 encoded file
line = decoded_string(line, 'utf-8')
key_list = key_ptn.findall(line)
if not key_list:
output_u8line(line)
else:
new_line = line
# remove line with non-existing element
if self.__result.get('to_be_removed') and any(
i for i in key_list if i in self.__result['to_be_removed']):
removed_lines.append(new_line)
continue
# remove incorrect entry that somehow does not exist in project node tree
elif not all(self.__result.get(uuid) for uuid in key_list):
removed_lines.append(new_line)
continue
else:
for key in key_list:
new_key = self.__result[key]['new_key']
new_line = new_line.replace(key, new_key)
output_u8line(new_line)
fi_close()
tmp_path = self.xcode_pbxproj_path + '.ubak'
if filecmp_cmp(self.xcode_pbxproj_path, tmp_path, shallow=False):
unlink(self.xcode_pbxproj_path)
rename(tmp_path, self.xcode_pbxproj_path)
warning_print('Ignore uniquify, no changes made to "', self.xcode_pbxproj_path, sep='')
else:
unlink(tmp_path)
self._is_modified = True
success_print('Uniquify done')
if self.__result.get('uniquify_warning'):
warning_print(*self.__result['uniquify_warning'])
if removed_lines:
warning_print('Following lines were deleted because of invalid format or no longer being used:')
print_ng(*removed_lines, end='')
def sort_pbxproj(self, sort_pbx_by_file_name=False):
self.vprint('sort project.xpbproj file')
lines = []
removed_lines = []
files_start_ptn = re_compile('^(\s*)files = \(\s*$')
files_key_ptn = re_compile('((?<=[A-Z0-9]{24} \/\* )|(?<=[A-F0-9]{32} \/\* )).+?(?= in )')
fc_end_ptn = '\);'
files_flag = False
children_start_ptn = re_compile('^(\s*)children = \(\s*$')
children_pbx_key_ptn = re_compile('((?<=[A-Z0-9]{24} \/\* )|(?<=[A-F0-9]{32} \/\* )).+?(?= \*\/)')
child_flag = False
pbx_start_ptn = re_compile('^.*Begin (PBXBuildFile|PBXFileReference) section.*$')
pbx_key_ptn = re_compile('^\s+(([A-Z0-9]{24})|([A-F0-9]{32}))(?= \/\*)')
pbx_end_ptn = ('^.*End ', ' section.*$')
pbx_flag = False
last_two = deque([])
def file_dir_order(x):
x = children_pbx_key_ptn.search(x).group()
return '.' in x, x
for line in fi_input(self.xcode_pbxproj_path, backup='.sbak', inplace=1):
# project.pbxproj is an utf-8 encoded file
line = decoded_string(line, 'utf-8')
last_two.append(line)
if len(last_two) > 2:
last_two.popleft()
# files search and sort
files_match = files_start_ptn.search(line)
if files_match:
output_u8line(line)
files_flag = True
if isinstance(fc_end_ptn, six.text_type):
fc_end_ptn = re_compile(files_match.group(1) + fc_end_ptn)
if files_flag:
if fc_end_ptn.search(line):
if lines:
lines.sort(key=lambda file_str: files_key_ptn.search(file_str).group())
output_u8line(''.join(lines))
lines = []
files_flag = False
fc_end_ptn = '\);'
elif files_key_ptn.search(line):
if line in lines:
removed_lines.append(line)
else:
lines.append(line)
# children search and sort
children_match = children_start_ptn.search(line)
if children_match:
output_u8line(line)
child_flag = True
if isinstance(fc_end_ptn, six.text_type):
fc_end_ptn = re_compile(children_match.group(1) + fc_end_ptn)
if child_flag:
if fc_end_ptn.search(line):
if lines:
if self.main_group_hex not in last_two[0]:
lines.sort(key=file_dir_order)
output_u8line(''.join(lines))
lines = []
child_flag = False
fc_end_ptn = '\);'
elif children_pbx_key_ptn.search(line):
if line in lines:
removed_lines.append(line)
else:
lines.append(line)
# PBX search and sort
pbx_match = pbx_start_ptn.search(line)
if pbx_match:
output_u8line(line)
pbx_flag = True
if isinstance(pbx_end_ptn, tuple):
pbx_end_ptn = re_compile(pbx_match.group(1).join(pbx_end_ptn))
if pbx_flag:
if pbx_end_ptn.search(line):
if lines:
if sort_pbx_by_file_name:
lines.sort(key=lambda file_str: children_pbx_key_ptn.search(file_str).group())
else:
lines.sort(key=lambda file_str: pbx_key_ptn.search(file_str).group(1))
output_u8line(''.join(lines))
lines = []
pbx_flag = False
pbx_end_ptn = ('^.*End ', ' section.*')
elif children_pbx_key_ptn.search(line):
if line in lines:
removed_lines.append(line)
else:
lines.append(line)
# normal output
if not (files_flag or child_flag or pbx_flag):
output_u8line(line)
fi_close()
tmp_path = self.xcode_pbxproj_path + '.sbak'
if filecmp_cmp(self.xcode_pbxproj_path, tmp_path, shallow=False):
unlink(self.xcode_pbxproj_path)
rename(tmp_path, self.xcode_pbxproj_path)
warning_print('Ignore sort, no changes made to "', self.xcode_pbxproj_path, sep='')
else:
unlink(tmp_path)
self._is_modified = True
success_print('Sort done')
if removed_lines:
warning_print('Following lines were deleted because of duplication:')
print_ng(*removed_lines, end='')
def __unique_project(self, project_hex):
"""PBXProject. It is root itself, no parents to it"""
self.vprint('uniquify PBXProject')
self.vprint('uniquify PBX*Group and PBX*Reference*')
self.__unique_group_or_ref(project_hex, self.main_group_hex)
self.vprint('uniquify XCConfigurationList')
bcl_hex = self.root_node['buildConfigurationList']
self.__unique_build_configuration_list(project_hex, bcl_hex)
subprojects_list = self.root_node.get('projectReferences')
if subprojects_list:
self.vprint('uniquify Subprojects')
for subproject_dict in subprojects_list:
product_group_hex = subproject_dict['ProductGroup']
project_ref_parent_hex = subproject_dict['ProjectRef']
self.__unique_group_or_ref(project_ref_parent_hex, product_group_hex)
targets_list = self.root_node['targets']
# workaround for PBXTargetDependency referring target that have not been iterated
for target_hex in targets_list:
cur_path_key = ('productName', 'name')
self.__set_to_result(project_hex, target_hex, cur_path_key)
for target_hex in targets_list:
self.__unique_target(target_hex)
def __unique_build_configuration_list(self, parent_hex, build_configuration_list_hex):
"""XCConfigurationList"""
cur_path_key = 'defaultConfigurationName'
self.__set_to_result(parent_hex, build_configuration_list_hex, cur_path_key)
build_configuration_list_node = self.nodes[build_configuration_list_hex]
self.vprint('uniquify XCConfiguration')
for build_configuration_hex in build_configuration_list_node['buildConfigurations']:
self.__unique_build_configuration(build_configuration_list_hex, build_configuration_hex)
def __unique_build_configuration(self, parent_hex, build_configuration_hex):
"""XCBuildConfiguration"""
cur_path_key = 'name'
self.__set_to_result(parent_hex, build_configuration_hex, cur_path_key)
def __unique_target(self, target_hex):
"""PBXNativeTarget PBXAggregateTarget"""
self.vprint('uniquify PBX*Target')
current_node = self.nodes[target_hex]
bcl_hex = current_node['buildConfigurationList']
self.__unique_build_configuration_list(target_hex, bcl_hex)
dependencies_list = current_node.get('dependencies')
if dependencies_list:
self.vprint('uniquify PBXTargetDependency')
for dependency_hex in dependencies_list:
self.__unique_target_dependency(target_hex, dependency_hex)
build_phases_list = current_node['buildPhases']
for build_phase_hex in build_phases_list:
self.__unique_build_phase(target_hex, build_phase_hex)
build_rules_list = current_node.get('buildRules')
if build_rules_list:
for build_rule_hex in build_rules_list:
self.__unique_build_rules(target_hex, build_rule_hex)
def __unique_target_dependency(self, parent_hex, target_dependency_hex):
"""PBXTargetDependency"""
target_hex = self.nodes[target_dependency_hex].get('target')
if target_hex:
self.__set_to_result(parent_hex, target_dependency_hex, self.__result[target_hex]['path'])
else:
self.__set_to_result(parent_hex, target_dependency_hex, 'name')
target_proxy = self.nodes[target_dependency_hex].get('targetProxy')
if target_proxy:
self.__unique_container_item_proxy(target_dependency_hex, target_proxy)
else:
raise XUniqueExit('PBXTargetDependency item "', target_dependency_hex,
'" is invalid due to lack of "targetProxy" attribute')
def __unique_container_item_proxy(self, parent_hex, container_item_proxy_hex):
"""PBXContainerItemProxy"""
self.vprint('uniquify PBXContainerItemProxy')
new_container_item_proxy_hex = self.__set_to_result(parent_hex, container_item_proxy_hex, ('isa', 'remoteInfo'))
cur_path = self.__result[container_item_proxy_hex]['path']
current_node = self.nodes[container_item_proxy_hex]
# re-calculate remoteGlobalIDString to a new length 32 MD5 digest
remote_global_id_hex = current_node.get('remoteGlobalIDString')
if not remote_global_id_hex:
self.__result.setdefault('uniquify_warning', []).append(
"PBXTargetDependency '{}' and its child PBXContainerItemProxy '{}' are not needed anymore, please remove their sections manually".format(
self.__result[parent_hex]['new_key'], new_container_item_proxy_hex))
elif remote_global_id_hex not in self.__result.keys():
portal_hex = current_node['containerPortal']
portal_result_hex = self.__result.get(portal_hex)
if not portal_result_hex:
self.__result.setdefault('uniquify_warning', []).append(
"PBXTargetDependency '{}' and its child PBXContainerItemProxy '{}' are not needed anymore, please remove their sections manually".format(
self.__result[parent_hex]['new_key'], new_container_item_proxy_hex))
else:
portal_path = portal_result_hex['path']
new_rg_id_path = '{}+{}'.format(cur_path, portal_path)
self.__result.update({
remote_global_id_hex: {'path': new_rg_id_path,
'new_key': md5_hex(new_rg_id_path),
'type': '{}#{}'.format(self.nodes[container_item_proxy_hex]['isa'],
'remoteGlobalIDString')
}
})
def __unique_build_phase(self, parent_hex, build_phase_hex):
"""PBXSourcesBuildPhase PBXFrameworksBuildPhase PBXResourcesBuildPhase
PBXCopyFilesBuildPhase PBXHeadersBuildPhase PBXShellScriptBuildPhase
"""
self.vprint('uniquify all kinds of PBX*BuildPhase')
current_node = self.nodes[build_phase_hex]
# no useful key in some build phase types, use its isa value
bp_type = current_node['isa']
if bp_type == 'PBXShellScriptBuildPhase':
cur_path_key = 'shellScript'
elif bp_type == 'PBXCopyFilesBuildPhase':
cur_path_key = ['name', 'dstSubfolderSpec', 'dstPath']
if not current_node.get('name'):
del cur_path_key[0]
else:
cur_path_key = bp_type
self.__set_to_result(parent_hex, build_phase_hex, cur_path_key)
self.vprint('uniquify PBXBuildFile')
for build_file_hex in current_node['files']:
self.__unique_build_file(build_phase_hex, build_file_hex)
def __unique_group_or_ref(self, parent_hex, group_ref_hex):
"""PBXFileReference PBXGroup PBXVariantGroup PBXReferenceProxy"""
if self.nodes.get(group_ref_hex):
current_hex = group_ref_hex
if self.nodes[current_hex].get('name'):
cur_path_key = 'name'
elif self.nodes[current_hex].get('path'):
cur_path_key = 'path'
else:
# root PBXGroup has neither path nor name, give a new name 'PBXRootGroup'
cur_path_key = 'PBXRootGroup'
self.__set_to_result(parent_hex, current_hex, cur_path_key)
if self.nodes[current_hex].get('children'):
for child_hex in self.nodes[current_hex]['children']:
self.__unique_group_or_ref(current_hex, child_hex)
if self.nodes[current_hex]['isa'] == 'PBXReferenceProxy':
self.__unique_container_item_proxy(parent_hex, self.nodes[current_hex]['remoteRef'])
else:
self.vprint("Group/FileReference/ReferenceProxy '", group_ref_hex, "' not found, it will be removed.")
self.__result.setdefault('to_be_removed', []).append(group_ref_hex)
def __unique_build_file(self, parent_hex, build_file_hex):
"""PBXBuildFile"""
current_node = self.nodes.get(build_file_hex)
if not current_node:
self.__result.setdefault('to_be_removed', []).append(build_file_hex)
else:
file_ref_hex = current_node.get('fileRef')
if not file_ref_hex:
self.vprint("PBXFileReference '", file_ref_hex, "' not found, it will be removed.")
self.__result.setdefault('to_be_removed', []).append(build_file_hex)
else:
if self.__result.get(file_ref_hex):
cur_path_key = self.__result[file_ref_hex]['path']
self.__set_to_result(parent_hex, build_file_hex, cur_path_key)
else:
self.vprint("PBXFileReference '", file_ref_hex, "' not found in PBXBuildFile '", build_file_hex,
"'. To be removed.", sep='')
self.__result.setdefault('to_be_removed', []).extend((build_file_hex, file_ref_hex))
def __unique_build_rules(self, parent_hex, build_rule_hex):
"""PBXBuildRule"""
current_node = self.nodes.get(build_rule_hex)
if not current_node:
self.vprint("PBXBuildRule '", current_node, "' not found, it will be removed.")
self.__result.setdefault('to_be_removed', []).append(build_rule_hex)
else:
file_type = current_node['fileType']
cur_path_key = 'fileType'
if file_type == 'pattern.proxy':
cur_path_key = ('fileType', 'filePatterns')
self.__set_to_result(parent_hex, build_rule_hex, cur_path_key)
class XUniqueExit(SystemExit):
def __init__(self, *args):
arg_str = ''.join(args)
value = "\x1B[31m{}\x1B[0m".format(arg_str)
super(XUniqueExit, self).__init__(value)
def main():
usage = "usage: %prog [-v][-u][-s][-c][-p] path/to/Project.xcodeproj"
description = "Doc: https://github.com/truebit/xUnique"
parser = OptionParser(usage=usage, description=description)
parser.add_option("-v", "--verbose",
action="store_true", dest="verbose", default=False,
help="output verbose messages. default is False.")
parser.add_option("-u", "--unique", action="store_true", dest="unique_bool", default=False,
help="uniquify the project file. default is False.")
parser.add_option("-s", "--sort", action="store_true", dest="sort_bool", default=False,
help="sort the project file. default is False. When neither '-u' nor '-s' option exists, xUnique will invisibly add both '-u' and '-s' in arguments")
parser.add_option("-c", "--combine-commit", action="store_true", dest="combine_commit", default=False,
help="When project file was modified, xUnique quit with non-zero status. Without this option, the status code would be zero if so. This option is usually used in Git hook to submit xUnique result combined with your original new commit.")
parser.add_option("-p", "--sort-pbx-by-filename", action="store_true", dest="sort_pbx_fn_bool", default=False,
help="sort PBXFileReference and PBXBuildFile sections in project file, ordered by file name. Without this option, ordered by MD5 digest, the same as Xcode does.")
(options, args) = parser.parse_args(sys_argv[1:])
if len(args) < 1:
parser.print_help()
raise XUniqueExit(
"xUnique requires at least one positional argument: relative/absolute path to xcodeproj.")
xcode_proj_path = decoded_string(args[0])
xunique = XUnique(xcode_proj_path, options.verbose)
if not (options.unique_bool or options.sort_bool):
print_ng("Uniquify and Sort")
xunique.unique_project()
xunique.sort_pbxproj(options.sort_pbx_fn_bool)
success_print("Uniquify and Sort done")
else:
if options.unique_bool:
print_ng('Uniquify...')
xunique.unique_project()
if options.sort_bool:
print_ng('Sort...')
xunique.sort_pbxproj(options.sort_pbx_fn_bool)
if options.combine_commit:
if xunique.is_modified:
raise XUniqueExit("File 'project.pbxproj' was modified, please add it and then commit.")
else:
if xunique.is_modified:
warning_print(
"File 'project.pbxproj' was modified, please add it and commit again to submit xUnique result.\nNOTICE: If you want to submit xUnique result combined with original commit, use option '-c' in command.")
if __name__ == '__main__':
main()
EOF
chmod +x "scripts/xUnique.py"
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create run_synx script
cat > "scripts/run_synx" <<\EOF
#!/bin/bash
if [ -z "$1" ]
then
echo "Error: Need to provide project name as argument"
exit 1
fi
PROJECT_NAME=$1
echo "Running synx..."
bash -l -c "synx --prune --quiet $PROJECT_NAME.xcodeproj/"
EOF
chmod +x "scripts/run_synx"
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create run_xUnique script
cat > "scripts/run_xUnique" <<\EOF
#!/bin/bash
set -e
if [ -z "$1" ]
then
echo "Error: Need to provide project name as argument"
exit 1
fi
PROJECT_NAME=$1
echo "Running xUnique..."
bash -l -c "python scripts/xUnique.py $PROJECT_NAME.xcodeproj/ > /dev/null"
EOF
chmod +x "scripts/run_xUnique"
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
# Create pre-push script
cat > "scripts/pre-push" <<\EOF
#!/bin/bash
# # # # # # # # # # # # # # # # # # # # #
# Load projectname from .projectname file
PROJECTNAME=$(head -n 1 .projectname)
#
# # # # # # # # # # # # # # # # # # # # #
STASH_MESSAGE="<pre-push-hook> Temporary stash, do not pop or delete"
function stash_all_changes
{
echo "Saving all local changes in a temporary stash..."
git add .
git stash save -u $STASH_MESSAGE
}
function commit_changes_from_hook
{
echo "Committing new changes..."
git add .
git commit --no-verify -m "[pre-push-hook] run synx, run xUnique"
return $?
}
function pop_stash
{
if [ ! -z "$(git stash list)" ]
then
STASH_REF="$(git log -g stash --grep="$STASH_MESSAGE" --pretty=format:"%gd")"
if [ ! -z "$STASH_REF" ]
then
echo "# # #"
echo "Popping temporary stash..."
git stash pop "$STASH_REF"
fi
fi
}
function main
{
echo "# # # # #"
stash_all_changes
echo "# # #"
./scripts/run_synx $PROJECTNAME
echo "# # #"
./scripts/run_xUnique $PROJECTNAME
echo "# # #"
commit_changes_from_hook
NOCHANGESMADE=$?
pop_stash
if [[ $NOCHANGESMADE -ne 0 ]]
then
echo "# # # # #"