-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
92 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
* text eol=lf | ||
*.png binary | ||
*.jar binary | ||
*.pdf binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
Unless otherwise indicated, Source Code is licensed under MIT license. | ||
Copyright (c) 2010-2022 OSTIS | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
Unless otherwise indicated, Source Code is licensed under MIT license. | ||
|
||
Copyright (c) 2010-2022 OSTIS | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,68 @@ | ||
import sys | ||
import os | ||
import re | ||
|
||
|
||
def remove_file_mentions(scsi_file, relative_path, buffer_file_list, tabulation_string) -> list: | ||
for scsi_file_line in scsi_file: | ||
if scsi_file_line.find(r'"file://') >= 0 and len(relative_path) > 0: | ||
scsi_file_line = scsi_file_line[:scsi_file_line.find('//')+2] + \ | ||
relative_path + scsi_file_line[scsi_file_line.find('//')+2:] | ||
buffer_file_list.append(tabulation_string + scsi_file_line) | ||
return buffer_file_list | ||
|
||
|
||
def process_file(scsi_file_paths, dir_path, buffer_file_list) -> list: | ||
for scsi_file_path in scsi_file_paths: | ||
edit_line_list = scsi_file_path[0].split('^"file://') | ||
tabulation_string = " " * len(edit_line_list[0]) | ||
|
||
buffer_file_list.append(edit_line_list[0] + '\n') | ||
scsi_path = edit_line_list[1].split('"*];;')[0] | ||
|
||
relative_path = "" | ||
if scsi_path.rfind('/') >= 0: | ||
relative_path = scsi_path[:scsi_path.rfind('/') + 1] | ||
|
||
with open(os.path.join(dir_path, scsi_path), 'r', encoding='utf-8') as scsi_file: | ||
buffer_file_list = remove_file_mentions(scsi_file, relative_path, buffer_file_list, tabulation_string) | ||
|
||
buffer_file_list.append("\n*];;\n") | ||
os.remove(os.path.join(dir_path, scsi_path)) | ||
return buffer_file_list | ||
|
||
|
||
def main(work_directory: str) -> None: | ||
list_of_files = list() | ||
# Recursively walk through working directory and list all files | ||
for (dir_path, _, file_names) in os.walk(work_directory): | ||
list_of_files += [os.path.join(dir_path, file) for file in file_names] | ||
|
||
# Process every file in list | ||
for file in list_of_files: | ||
if file.endswith(".scs"): | ||
is_file_processed = False | ||
# List of strings for cleared file | ||
buffer_file_list = [] | ||
with open(file, 'r', encoding='utf-8') as scs_file: | ||
dir_path = os.path.split(file)[0] | ||
for scs_file_line in scs_file: | ||
# Get the list of files with scsi | ||
scsi_file_paths = re.findall(r"((\w*\s*=\s*)?\[\*\^\"file:\/\/.*\.scsi\"\*];;)", scs_file_line) | ||
if len(scsi_file_paths) > 0: | ||
buffer_file_list = process_file(scsi_file_paths, dir_path, buffer_file_list) | ||
is_file_processed = True | ||
else: | ||
buffer_file_list.append(scs_file_line) | ||
if is_file_processed: | ||
# If were changes write them to file | ||
with open(file, "w", encoding="utf_8") as scs_file: | ||
for scs_file_line in buffer_file_list: | ||
scs_file.write(scs_file_line) | ||
|
||
|
||
if __name__ == '__main__': | ||
if len(sys.argv) == 3: | ||
main(sys.argv[1]) | ||
else: | ||
print("invalid number of arguments, Please specify only the work directory") | ||
import sys | ||
import os | ||
import re | ||
|
||
|
||
def remove_file_mentions(scsi_file, relative_path, buffer_file_list, tabulation_string) -> list: | ||
for scsi_file_line in scsi_file: | ||
if scsi_file_line.find(r'"file://') >= 0 and len(relative_path) > 0: | ||
scsi_file_line = scsi_file_line[:scsi_file_line.find('//')+2] + \ | ||
relative_path + scsi_file_line[scsi_file_line.find('//')+2:] | ||
buffer_file_list.append(tabulation_string + scsi_file_line) | ||
return buffer_file_list | ||
|
||
|
||
def process_file(scsi_file_paths, dir_path, buffer_file_list) -> list: | ||
for scsi_file_path in scsi_file_paths: | ||
edit_line_list = scsi_file_path[0].split('^"file://') | ||
tabulation_string = " " * len(edit_line_list[0]) | ||
|
||
buffer_file_list.append(edit_line_list[0] + '\n') | ||
scsi_path = edit_line_list[1].split('"*];;')[0] | ||
|
||
relative_path = "" | ||
if scsi_path.rfind('/') >= 0: | ||
relative_path = scsi_path[:scsi_path.rfind('/') + 1] | ||
|
||
with open(os.path.join(dir_path, scsi_path), 'r', encoding='utf-8') as scsi_file: | ||
buffer_file_list = remove_file_mentions(scsi_file, relative_path, buffer_file_list, tabulation_string) | ||
|
||
buffer_file_list.append("\n*];;\n") | ||
os.remove(os.path.join(dir_path, scsi_path)) | ||
return buffer_file_list | ||
|
||
|
||
def main(work_directory: str) -> None: | ||
list_of_files = list() | ||
# Recursively walk through working directory and list all files | ||
for (dir_path, _, file_names) in os.walk(work_directory): | ||
list_of_files += [os.path.join(dir_path, file) for file in file_names] | ||
|
||
# Process every file in list | ||
for file in list_of_files: | ||
if file.endswith(".scs"): | ||
is_file_processed = False | ||
# List of strings for cleared file | ||
buffer_file_list = [] | ||
with open(file, 'r', encoding='utf-8') as scs_file: | ||
dir_path = os.path.split(file)[0] | ||
for scs_file_line in scs_file: | ||
# Get the list of files with scsi | ||
scsi_file_paths = re.findall(r"((\w*\s*=\s*)?\[\*\^\"file:\/\/.*\.scsi\"\*];;)", scs_file_line) | ||
if len(scsi_file_paths) > 0: | ||
buffer_file_list = process_file(scsi_file_paths, dir_path, buffer_file_list) | ||
is_file_processed = True | ||
else: | ||
buffer_file_list.append(scs_file_line) | ||
if is_file_processed: | ||
# If were changes write them to file | ||
with open(file, "w", encoding="utf_8") as scs_file: | ||
for scs_file_line in buffer_file_list: | ||
scs_file.write(scs_file_line) | ||
|
||
|
||
if __name__ == '__main__': | ||
if len(sys.argv) == 3: | ||
main(sys.argv[1]) | ||
else: | ||
print("invalid number of arguments, Please specify only the work directory") |