Commit 9bcbcb29 by xxlv

Fix typo

parent 932182e8
...@@ -4,16 +4,22 @@ ...@@ -4,16 +4,22 @@
import os import os
import shutil import shutil
import argparse import argparse
import xml.etree.ElementTree as ET
DIR = "./template" DIR = "./template"
TMP = "./tmp" TMP = "./tmp"
JAR_PATH = "./jar"
def parse_ydl_project(path): def parse_ydl_project(path):
# target_path """
# target_pathtarget-path-intf target_path
# target_path/target-pathr-service target_pathtarget-path-intf
# 如果满足当前的目录结构 就认为是YDL project target_path/target-pathr-service
如果满足当前的目录结构 就认为是YDL project
:param path:
:return:
"""
name = os.path.realpath(path) name = os.path.realpath(path)
abs_path = name.split("/")[0:-1] abs_path = name.split("/")[0:-1]
identity = name.split("/")[-1] identity = name.split("/")[-1]
...@@ -22,9 +28,11 @@ def parse_ydl_project(path): ...@@ -22,9 +28,11 @@ def parse_ydl_project(path):
package2 = project_prefix.split("-")[1] package2 = project_prefix.split("-")[1]
interface_path = "/".join(abs_path + [identity, project_prefix, "{}-intf".format(project_prefix)]) interface_path = "/".join(abs_path + [identity, project_prefix, "{}-intf".format(project_prefix)])
service_path = "/".join(abs_path + [identity, project_prefix, "{}-service".format(project_prefix)]) service_path = "/".join(abs_path + [identity, project_prefix, "{}-service".format(project_prefix)])
intf_facade_path = "{}/{}".format(interface_path, "src/main/java/com/{}/{}/intf/facade".format(package1, package2)) intf_facade_path = "{}/{}".format(interface_path, "src/main/java/com/{}/{}/intf/facade".format(package1, package2))
intf_req_dto_path = "{}/{}".format(interface_path, intf_req_dto_path = "{}/{}".format(interface_path,
"src/main/java/com/{}/{}/intf/dto/request".format(package1, package2)) "src/main/java/com/{}/{}/intf/dto/request".format(package1, package2))
intf_resp_dto_path = "{}/{}".format(interface_path, intf_resp_dto_path = "{}/{}".format(interface_path,
...@@ -38,30 +46,23 @@ def parse_ydl_project(path): ...@@ -38,30 +46,23 @@ def parse_ydl_project(path):
service_biz_impl_path = "{}/{}".format(service_path, service_biz_impl_path = "{}/{}".format(service_path,
"src/main/java/com/{}/{}/service/biz/impl".format(package1, package2)) "src/main/java/com/{}/{}/service/biz/impl".format(package1, package2))
service_dao_path = "{}/{}".format(service_path, "src/main/java/com/{}/{}/service/dao".format(package1, package2)) service_dao_path = "{}/{}".format(service_path, "src/main/java/com/{}/{}/service/dao".format(package1, package2))
service_sql_xml_path = "{}/{}".format(service_path, "src/main/resources/sqlmap") service_sql_xml_path = "{}/{}".format(service_path, "src/main/resources/sqlmap")
# print("Interface facade path is {}".format(intf_facade_path)) service_sql_mybatis_generator_config_path = "{}/{}".format(service_path,
# print("Interface req dto path is {}".format(intf_req_dto_path)) "src/main/resources/mybatis/generatorConfig.xml")
# print("Interface resp dto path is {}".format(intf_resp_dto_path))
# print("Interface po path is {}".format(intf_po_path))
# print("Service facade impl path is {}".format(service_facade_impl_path))
# print("Service biz intf path is {}".format(service_intf_biz_path))
# print("Service biz impl path is {}".format(service_biz_impl_path))
# print("Service dao path is {}".format(service_dao_path))
# print("Service sql xml path is {}".format(service_sql_xml_path))
d = dict() d = dict()
d["intf_facade_path"] = intf_facade_path d["intf_facade_path"] = intf_facade_path
d["intf_req_dto_path"] = intf_req_dto_path d["intf_req_dto_path"] = intf_req_dto_path
d["intf_resp_dto_path"] = intf_resp_dto_path d["intf_resp_dto_path"] = intf_resp_dto_path
d["intf_po_path"] = intf_po_path d["intf_po_path"] = intf_po_path
d["service_intf_biz_path"] = service_intf_biz_path d["service_intf_biz_path"] = service_intf_biz_path
d["service_facade_impl_path"] = service_facade_impl_path d["service_facade_impl_path"] = service_facade_impl_path
d["service_biz_impl_path"] = service_biz_impl_path d["service_biz_impl_path"] = service_biz_impl_path
d["service_sql_xml_path"] = service_sql_xml_path d["service_sql_xml_path"] = service_sql_xml_path
d["service_dao_path"] = service_dao_path d["service_dao_path"] = service_dao_path
d["mybatis_config_path"] = service_sql_mybatis_generator_config_path
for id, path in d.iteritems(): for id, path in d.iteritems():
if (not os.path.exists(path)): if (not os.path.exists(path)):
...@@ -83,7 +84,6 @@ def safe_cpfile(f, target_path_map, res_name): ...@@ -83,7 +84,6 @@ def safe_cpfile(f, target_path_map, res_name):
print("开始copy 文件{}".format(f)) print("开始copy 文件{}".format(f))
print("-------------------------------------") print("-------------------------------------")
identity = f.split("/")[-1] identity = f.split("/")[-1]
categories_map = dict() categories_map = dict()
categories_map["{}Facade.java".format(res_name)] = "intf_facade_path" categories_map["{}Facade.java".format(res_name)] = "intf_facade_path"
...@@ -102,7 +102,6 @@ def safe_cpfile(f, target_path_map, res_name): ...@@ -102,7 +102,6 @@ def safe_cpfile(f, target_path_map, res_name):
print("目标 {} 不存在".format(target_path)) print("目标 {} 不存在".format(target_path))
exit(-1) exit(-1)
try: try:
shutil.move(f, target_path) shutil.move(f, target_path)
except Exception as e: except Exception as e:
...@@ -110,13 +109,93 @@ def safe_cpfile(f, target_path_map, res_name): ...@@ -110,13 +109,93 @@ def safe_cpfile(f, target_path_map, res_name):
print("无法移动 [{}] -_-".format(e.message)) print("无法移动 [{}] -_-".format(e.message))
exit(-1) exit(-1)
print("move 当前的文件{} 到 {}".format(f, target_path)) print("move 当前的文件{} 到 {}".format(f, target_path))
# 编译内容 def is_po(res_name, identity):
def compile_content(compile_table, origin, tmp): print("检测po {} {}".format(res_name, identity.split("/")[-1]))
return "{}.java".format(res_name) == identity.split("/")[-1]
def config_mybatis(res_name, table_name, mybatis_config_path):
"""
重写mybatis generatorConfig
:param res_name:
:param table_name:
:param mybatis_config_path:
:return:
"""
print("-----------------------------------------------")
print("修改 {}".format(mybatis_config_path))
print("-----------------------------------------------")
head = """
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
"""
root = ET.parse(mybatis_config_path)
e = ET.Element("table", tableName=table_name, domainObjectName=res_name, enableCountByExample="false",
enableDeleteByExample="false", enableSelectByExample="false", enableUpdateByExample="false",
selectByExampleQueryId="false")
context = root.find("context")
context.append(e)
tmp_mybatis_path = os.path.join(TMP, "generatorConfig.xml")
root.write(tmp_mybatis_path,encoding="utf-8")
return tmp_mybatis_path
def gen_po(res_name, project_target_path):
"""
生成po 调用mybatis 的generator
:param res_name:
:param project_target_path:
:return:
"""
mybatis_config_path = project_target_path['mybatis_config_path']
if (not os.path.exists(mybatis_config_path)):
print("Mybatis 路径有误")
exit(-1)
tables_name = res_name
local_mybatis_config=config_mybatis(res_name, tables_name, mybatis_config_path)
gen_po_cmd = """
java -jar {}/mybatis-generator-core-1.3.6.jar -configfile {} -overwrite
""".format(JAR_PATH, local_mybatis_config)
print("----------------------------------------")
print(gen_po_cmd)
print("----------------------------------------")
# os.system(gen_po_cmd)
return "PO"
def rewrite_mybatis_config():
pass
# 编译内容
def compile_content(res_name, compile_table, origin, tmp, project_target_path):
"""
编译内容
:param res_name:
:param compile_table:
:param origin:
:param tmp:
:param project_target_path:
:return:
"""
if not os.path.isdir(tmp): if not os.path.isdir(tmp):
os.mkdir(tmp) os.mkdir(tmp)
...@@ -129,9 +208,16 @@ def compile_content(compile_table, origin, tmp): ...@@ -129,9 +208,16 @@ def compile_content(compile_table, origin, tmp):
with open(identity, "w+") as f: with open(identity, "w+") as f:
f.write(compile(body, compile_table)) f.write(compile(body, compile_table))
# 检测如果当前的文件是PO的话,使用mybatis 生成po
if is_po(res_name, identity):
print("发现po {}".format(identity))
with open(identity, "w+") as f:
f.write(gen_po(res_name, project_target_path))
print("--------------------------------") print("--------------------------------")
print("成功编译文件 {} [{}]".format(identity, len(body))) print("成功编译文件 {} [{}]".format(identity, len(body)))
print("--------------------------------") print("--------------------------------")
return identity return identity
...@@ -143,13 +229,31 @@ def compile(body, compile_table): ...@@ -143,13 +229,31 @@ def compile(body, compile_table):
return body return body
# clean tmp dir
def clean_tmp():
"""
清空临时目录
:return:
"""
for root, dirs, files in os.walk(TMP, False):
for file in files:
os.remove(os.path.join(root, file))
print("清空目录 {}".format(TMP))
# gen # gen
def gen(res_name, look_path): def gen(res_name, look_path):
"""
核心逻辑
:param res_name:
:param look_path:
:return:
"""
clean_tmp() clean_tmp()
res_name = res_name[0].upper() + res_name[1:] res_name = res_name[0].upper() + res_name[1:]
print("----------------------------------") print("----------------------------------")
print("你的资源名称为 {}".format(res_name)) print("你的资源名称为 {}".format(res_name))
print("----------------------------------") print("----------------------------------")
...@@ -165,7 +269,6 @@ def gen(res_name, look_path): ...@@ -165,7 +269,6 @@ def gen(res_name, look_path):
compile_table = dict() compile_table = dict()
compile_table['${PLACE}'] = "{}{}".format(res_name[0].upper(), res_name[1:]) compile_table['${PLACE}'] = "{}{}".format(res_name[0].upper(), res_name[1:])
compile_table['${PLACE_VAR}'] = "{}{}".format(res_name[0].lower(), res_name[1:]) compile_table['${PLACE_VAR}'] = "{}{}".format(res_name[0].lower(), res_name[1:])
print("--------------------------------------") print("--------------------------------------")
print("编译常量表") print("编译常量表")
print("--------------------------------------") print("--------------------------------------")
...@@ -174,21 +277,19 @@ def gen(res_name, look_path): ...@@ -174,21 +277,19 @@ def gen(res_name, look_path):
for root, dirs, files in os.walk(DIR, False): for root, dirs, files in os.walk(DIR, False):
for file in files: for file in files:
if (file[0] == "$"): if (file[0] == "$"):
compiled_file = compile_content(compile_table, os.path.join(root, file), TMP) compiled_file = compile_content(res_name, compile_table, os.path.join(root, file), TMP,
safe_cpfile(compiled_file, PROJECT_TARGET_PATH, res_name) PROJECT_TARGET_PATH)
# safe_cpfile(compiled_file, PROJECT_TARGET_PATH, res_name)
def clean_tmp():
for root, dirs, files in os.walk(TMP, False):
for file in files:
os.remove(os.path.join(root, file))
print("清空目录 {}".format(TMP))
if __name__ == "__main__": if __name__ == "__main__":
print("-------------------------")
print("Start Building your Resource")
print("Draw by ghost ")
print("-------------------------")
parser = argparse.ArgumentParser(description="Auto create Resource for ydl java project") parser = argparse.ArgumentParser(description="Auto create Resource for ydl java project")
parser.add_argument('--verbose', '-v', action='store_true', help='verbose mode') parser.add_argument('--verbose', '-v', action='store_true', help='verbose mode')
parser.add_argument("resource_name") parser.add_argument("resource_name")
parser.add_argument("project_path") parser.add_argument("project_path")
args = parser.parse_args() args = parser.parse_args()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment