SpaceAndPartitionServiceImpl.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package com.example.sqlrun.service.impl;
  2. import com.baomidou.mybatisplus.core.toolkit.Wrappers;
  3. import com.example.sqlrun.entity.TablespacePartitionRule;
  4. import com.example.sqlrun.fixSql.MakePartitionSql;
  5. import com.example.sqlrun.fixSql.MakeTableSpace;
  6. import com.example.sqlrun.myEnum.SpaceEnum;
  7. import com.example.sqlrun.service.SpaceAndPartitionService;
  8. import com.example.sqlrun.service.TablespacePartitionRuleService;
  9. import com.shanghaigeography.Util.DateUtils;
  10. import java.sql.SQLException;
  11. import java.text.ParseException;
  12. import java.time.YearMonth;
  13. import java.util.Calendar;
  14. import java.util.Date;
  15. import java.util.List;
  16. import java.util.Map;
  17. import javax.annotation.Resource;
  18. import org.apache.commons.lang3.StringUtils;
  19. import org.springframework.beans.factory.annotation.Autowired;
  20. import org.springframework.stereotype.Service;
  21. import java.sql.Statement;
  22. /**
  23. * @ClassName: SpaceAndPartitionServiceImpl
  24. *
  25. * @description: TODO
  26. * @author: sbj
  27. * @time: 2023/12/5 15:55 @Version: 1.0
  28. */
  29. @Service
  30. public class SpaceAndPartitionServiceImpl implements SpaceAndPartitionService {
  31. @Resource(name = "statement")
  32. private Statement statement;
  33. @Override
  34. public void runSQL(TablespacePartitionRule rule) throws ParseException, SQLException {
  35. // 获取需要创建表空间的sql
  36. List<Map> tableSpaces = null;
  37. if ("MONTH".equals(rule.getTableSpaceType())){
  38. tableSpaces = MakeTableSpace.makeTableSpaceSqlByMonth(
  39. rule.getTablespacePrefix(),
  40. rule.getDatafilePrefix(),
  41. rule.getDatafilePath(),
  42. rule.getInitSize(),
  43. rule.getNextSize(),
  44. rule.getMaxSize(),
  45. rule.getLastAddTablespaceTime(),
  46. rule.getWanted());
  47. }else if ("YEAR".equals(rule.getTableSpaceType())){
  48. tableSpaces = MakeTableSpace.makeTableSpaceSqlByYear(
  49. rule.getTablespacePrefix(),
  50. rule.getDatafilePrefix(),
  51. rule.getDatafilePath(),
  52. rule.getInitSize(),
  53. rule.getNextSize(),
  54. rule.getMaxSize(),
  55. rule.getLastAddTablespaceTime(),
  56. rule.getWanted());
  57. }else if ("QUARTER".equals(rule.getTableSpaceType())){
  58. tableSpaces = MakeTableSpace.makeTableSpaceSqlByQuarter(
  59. rule.getTablespacePrefix(),
  60. rule.getDatafilePrefix(),
  61. rule.getDatafilePath(),
  62. rule.getInitSize(),
  63. rule.getNextSize(),
  64. rule.getMaxSize(),
  65. rule.getLastAddTablespaceTime(),
  66. rule.getWanted());
  67. }
  68. if (tableSpaces == null || tableSpaces.isEmpty()){
  69. return;
  70. }
  71. for (Map tableSpace : tableSpaces) {
  72. List<String> partitionSql = null;
  73. if ("DAY".equals(rule.getPartitionType()) && "MONTH".equals(rule.getTableSpaceType())){
  74. Date date = (Date) tableSpace.get(SpaceEnum.DATE.getName());
  75. partitionSql =
  76. MakePartitionSql.makePartitionSqlByDay(
  77. rule.getTableName(),
  78. rule.getPartitionPrefix(),
  79. tableSpace.get(SpaceEnum.TABLESPACENAME.getName()).toString(),
  80. date,
  81. YearMonth.of(date.getYear() + 1900, date.getMonth() + 1).lengthOfMonth());
  82. }else if ("MONTH".equals(rule.getPartitionType()) && "YEAR".equals(rule.getTableSpaceType())){
  83. partitionSql = MakePartitionSql.makePartitionSqlByMonth(rule.getTableName(),
  84. rule.getPartitionPrefix(),
  85. tableSpace.get(SpaceEnum.TABLESPACENAME.getName()).toString(),(Date) tableSpace.get(SpaceEnum.DATE.getName()));
  86. }else if("DAY".equals(rule.getPartitionType()) && "QUARTER".equals(rule.getTableSpaceType())){
  87. partitionSql = MakePartitionSql.makePartitionSqlByDayForQuarter(rule.getTableName(),rule.getPartitionPrefix(),tableSpace.get(SpaceEnum.TABLESPACENAME.getName()).toString(),(Date) tableSpace.get(SpaceEnum.DATE.getName()));
  88. }
  89. System.out.println(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString() + ";");
  90. // statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
  91. // partitionSql.forEach(
  92. // i -> {
  93. // try {
  94. // statement.addBatch(i);
  95. // } catch (SQLException throwables) {
  96. // throwables.printStackTrace();
  97. // }
  98. // });
  99. // statement.executeBatch();
  100. // statement.clearBatch();
  101. assert partitionSql != null;
  102. partitionSql.forEach(i -> System.out.println(i + ";"));
  103. }
  104. Date lastDate = (Date) tableSpaces.get(tableSpaces.size() - 1).get(SpaceEnum.DATE.getName());
  105. rule.setLastAddTablespaceTime(DateUtils.monthAddNum(lastDate, 1));
  106. rule.setLastAddPartitionTime(DateUtils.dayAddNum(DateUtils.monthAddNum(lastDate, 1), -1));
  107. //ruleService.updateById(rule);
  108. }
  109. @Autowired private TablespacePartitionRuleService ruleService;
  110. @Override
  111. public List<TablespacePartitionRule> getSqlNeed() {
  112. return ruleService.list(
  113. Wrappers.<TablespacePartitionRule>lambdaQuery()
  114. .eq(TablespacePartitionRule::getIsDeleted, 0));
  115. }
  116. @Override
  117. public String createTableSpace(Map<String, String> paramBody) {
  118. try {
  119. String tableSpaceNamePrefix = paramBody.get("tableSpaceName");
  120. String tableSpaceFileNamePrefix = paramBody.get("tableSpaceFileName");
  121. String tableSpacePath = paramBody.get("tableSpacePath");
  122. Integer initSize = Integer.valueOf(paramBody.get("initSize"));
  123. Integer nextSize = Integer.valueOf(paramBody.get("nextSize"));
  124. Integer maxSize = Integer.valueOf(paramBody.get("maxSize"));
  125. Date startDate = DateUtils.stringToDate(paramBody.get("startDate"), "yyyy-MM-dd");
  126. Integer wanted = Integer.valueOf(paramBody.get("wanted"));
  127. List<Map> maps =
  128. MakeTableSpace.makeTableSpaceSqlByMonth(
  129. tableSpaceNamePrefix,
  130. tableSpaceFileNamePrefix,
  131. tableSpacePath,
  132. initSize,
  133. nextSize,
  134. maxSize,
  135. startDate,
  136. wanted);
  137. for (Map map : maps) {
  138. statement.execute(map.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
  139. }
  140. Map map = maps.get(maps.size() - 1);
  141. return "最后一个表空间时间"
  142. + map.get(SpaceEnum.DATE.getName())
  143. + "\n"
  144. + "最后一个表空间名称"
  145. + map.get(SpaceEnum.TABLESPACENAME.getName());
  146. } catch (Exception e) {
  147. return "error" + e.getMessage();
  148. }
  149. }
  150. @Override
  151. public String createTablePartition(Map<String, String> param) {
  152. try {
  153. String tableName = param.get("tableName");
  154. String partitionNamePrefix = param.get("partitionNamePrefix");
  155. String tableSpaceName = param.get("tableSpaceName");
  156. Date startDate = DateUtils.stringToDate(param.get("startDate"), "yyyy-MM-dd");
  157. Integer wantedDay = null;
  158. if (StringUtils.isBlank(param.get("wantedDay"))) {
  159. Calendar instance = Calendar.getInstance();
  160. instance.setTime(startDate);
  161. wantedDay =
  162. instance.getActualMaximum(Calendar.DAY_OF_MONTH)
  163. - instance.get(Calendar.DAY_OF_MONTH)
  164. + 1;
  165. } else {
  166. wantedDay = Integer.valueOf(param.get("wantedDay"));
  167. }
  168. List<String> partitionSql =
  169. MakePartitionSql.makePartitionSqlByDay(
  170. tableName, partitionNamePrefix, tableSpaceName, startDate, wantedDay);
  171. for (String s : partitionSql) {
  172. statement.addBatch(s);
  173. }
  174. statement.executeBatch();
  175. statement.clearBatch();
  176. // h
  177. return "success";
  178. } catch (Exception e) {
  179. return "error" + e.getMessage();
  180. }
  181. }
  182. }