/EssentialsProtect/src/net/ess3/protect/data/ProtectedBlockJDBC.java

https://github.com/mbax/Essentials · Java · 434 lines · 411 code · 23 blank · 0 comment · 44 complexity · abf8c1af5a4764e1ea24e3cc6cdd1d9f MD5 · raw file

  1. package net.ess3.protect.data;
  2. import com.mchange.v2.c3p0.ComboPooledDataSource;
  3. import java.beans.PropertyVetoException;
  4. import java.sql.Connection;
  5. import java.sql.PreparedStatement;
  6. import java.sql.ResultSet;
  7. import java.sql.SQLException;
  8. import java.util.ArrayList;
  9. import java.util.List;
  10. import java.util.logging.Level;
  11. import java.util.logging.Logger;
  12. import org.bukkit.block.Block;
  13. public abstract class ProtectedBlockJDBC implements IProtectedBlock
  14. {
  15. protected static final Logger LOGGER = Logger.getLogger("Minecraft");
  16. protected final transient ComboPooledDataSource cpds;
  17. protected abstract PreparedStatement getStatementCreateTable(Connection conn) throws SQLException;
  18. protected abstract PreparedStatement getStatementUpdateFrom2_0Table(Connection conn) throws SQLException;
  19. protected abstract PreparedStatement getStatementDeleteAll(Connection conn) throws SQLException;
  20. protected abstract PreparedStatement getStatementInsert(Connection conn, String world, int x, int y, int z, String playerName) throws SQLException;
  21. protected abstract PreparedStatement getStatementPlayerCountByLocation(Connection conn, String world, int x, int y, int z, String playerName) throws SQLException;
  22. protected abstract PreparedStatement getStatementPlayersByLocation(Connection conn, String name, int x, int y, int z) throws SQLException;
  23. protected abstract PreparedStatement getStatementDeleteByLocation(Connection conn, String world, int x, int y, int z) throws SQLException;
  24. protected abstract PreparedStatement getStatementAllBlocks(Connection conn) throws SQLException;
  25. public ProtectedBlockJDBC(final String driver, final String url) throws PropertyVetoException
  26. {
  27. this(driver, url, null, null);
  28. }
  29. public ProtectedBlockJDBC(final String driver, final String url, final String username, final String password) throws PropertyVetoException
  30. {
  31. cpds = new ComboPooledDataSource();
  32. cpds.setDriverClass(driver);
  33. cpds.setJdbcUrl(url);
  34. if (username != null)
  35. {
  36. cpds.setUser(username);
  37. cpds.setPassword(password);
  38. }
  39. cpds.setMaxStatements(20);
  40. createAndConvertTable();
  41. }
  42. private void createAndConvertTable()
  43. {
  44. Connection conn = null;
  45. PreparedStatement ps = null;
  46. try
  47. {
  48. conn = cpds.getConnection();
  49. ps = getStatementCreateTable(conn);
  50. ps.execute();
  51. ps.close();
  52. ps = getStatementUpdateFrom2_0Table(conn);
  53. ps.execute();
  54. }
  55. catch (SQLException ex)
  56. {
  57. LOGGER.log(Level.SEVERE, null, ex);
  58. }
  59. finally
  60. {
  61. if (ps != null)
  62. {
  63. try
  64. {
  65. ps.close();
  66. }
  67. catch (SQLException ex)
  68. {
  69. LOGGER.log(Level.SEVERE, null, ex);
  70. }
  71. }
  72. if (conn != null)
  73. {
  74. try
  75. {
  76. conn.close();
  77. }
  78. catch (SQLException ex)
  79. {
  80. LOGGER.log(Level.SEVERE, null, ex);
  81. }
  82. }
  83. }
  84. }
  85. @Override
  86. public void clearProtections()
  87. {
  88. Connection conn = null;
  89. PreparedStatement ps = null;
  90. try
  91. {
  92. conn = cpds.getConnection();
  93. ps = getStatementDeleteAll(conn);
  94. ps.executeUpdate();
  95. }
  96. catch (SQLException ex)
  97. {
  98. LOGGER.log(Level.SEVERE, null, ex);
  99. }
  100. finally
  101. {
  102. if (ps != null)
  103. {
  104. try
  105. {
  106. ps.close();
  107. }
  108. catch (SQLException ex)
  109. {
  110. LOGGER.log(Level.SEVERE, null, ex);
  111. }
  112. }
  113. if (conn != null)
  114. {
  115. try
  116. {
  117. conn.close();
  118. }
  119. catch (SQLException ex)
  120. {
  121. LOGGER.log(Level.SEVERE, null, ex);
  122. }
  123. }
  124. }
  125. }
  126. @Override
  127. public void importProtections(final List<OwnedBlock> blocks)
  128. {
  129. for (OwnedBlock ownedBlock : blocks)
  130. {
  131. if (ownedBlock.playerName == null)
  132. {
  133. continue;
  134. }
  135. protectBlock(ownedBlock.world, ownedBlock.x, ownedBlock.y, ownedBlock.z, ownedBlock.playerName);
  136. }
  137. }
  138. @Override
  139. public List<OwnedBlock> exportProtections()
  140. {
  141. Connection conn = null;
  142. PreparedStatement ps = null;
  143. ResultSet rs = null;
  144. List<OwnedBlock> blocks = new ArrayList<OwnedBlock>();
  145. try
  146. {
  147. conn = cpds.getConnection();
  148. ps = getStatementAllBlocks(conn);
  149. rs = ps.executeQuery();
  150. while (rs.next())
  151. {
  152. OwnedBlock ob = new OwnedBlock(
  153. rs.getInt(2),
  154. rs.getInt(3),
  155. rs.getInt(4),
  156. rs.getString(1),
  157. rs.getString(5));
  158. blocks.add(ob);
  159. }
  160. return blocks;
  161. }
  162. catch (SQLException ex)
  163. {
  164. LOGGER.log(Level.SEVERE, null, ex);
  165. return blocks;
  166. }
  167. finally
  168. {
  169. if (rs != null)
  170. {
  171. try
  172. {
  173. rs.close();
  174. }
  175. catch (SQLException ex)
  176. {
  177. LOGGER.log(Level.SEVERE, null, ex);
  178. }
  179. }
  180. if (ps != null)
  181. {
  182. try
  183. {
  184. ps.close();
  185. }
  186. catch (SQLException ex)
  187. {
  188. LOGGER.log(Level.SEVERE, null, ex);
  189. }
  190. }
  191. if (conn != null)
  192. {
  193. try
  194. {
  195. conn.close();
  196. }
  197. catch (SQLException ex)
  198. {
  199. LOGGER.log(Level.SEVERE, null, ex);
  200. }
  201. }
  202. }
  203. }
  204. @Override
  205. public void protectBlock(final Block block, final String playerName)
  206. {
  207. protectBlock(block.getWorld().getName(), block.getX(), block.getY(), block.getZ(), playerName);
  208. }
  209. private void protectBlock(final String world, final int x, final int y, final int z, final String playerName)
  210. {
  211. Connection conn = null;
  212. PreparedStatement ps = null;
  213. try
  214. {
  215. conn = cpds.getConnection();
  216. ps = getStatementInsert(conn, world, x, y, z, playerName);
  217. ps.executeUpdate();
  218. }
  219. catch (SQLException ex)
  220. {
  221. LOGGER.log(Level.SEVERE, null, ex);
  222. }
  223. finally
  224. {
  225. if (ps != null)
  226. {
  227. try
  228. {
  229. ps.close();
  230. }
  231. catch (SQLException ex)
  232. {
  233. LOGGER.log(Level.SEVERE, null, ex);
  234. }
  235. }
  236. if (conn != null)
  237. {
  238. try
  239. {
  240. conn.close();
  241. }
  242. catch (SQLException ex)
  243. {
  244. LOGGER.log(Level.SEVERE, null, ex);
  245. }
  246. }
  247. }
  248. }
  249. @Override
  250. public boolean isProtected(final Block block, final String playerName)
  251. {
  252. Connection conn = null;
  253. PreparedStatement ps = null;
  254. ResultSet rs = null;
  255. try
  256. {
  257. conn = cpds.getConnection();
  258. ps = getStatementPlayerCountByLocation(conn, block.getWorld().getName(), block.getX(), block.getY(), block.getZ(), playerName);
  259. rs = ps.executeQuery();
  260. return rs.next() && rs.getInt(1) > 0 && rs.getInt(2) == 0;
  261. }
  262. catch (SQLException ex)
  263. {
  264. LOGGER.log(Level.SEVERE, null, ex);
  265. return true;
  266. }
  267. finally
  268. {
  269. if (rs != null)
  270. {
  271. try
  272. {
  273. rs.close();
  274. }
  275. catch (SQLException ex)
  276. {
  277. LOGGER.log(Level.SEVERE, null, ex);
  278. }
  279. }
  280. if (ps != null)
  281. {
  282. try
  283. {
  284. ps.close();
  285. }
  286. catch (SQLException ex)
  287. {
  288. LOGGER.log(Level.SEVERE, null, ex);
  289. }
  290. }
  291. if (conn != null)
  292. {
  293. try
  294. {
  295. conn.close();
  296. }
  297. catch (SQLException ex)
  298. {
  299. LOGGER.log(Level.SEVERE, null, ex);
  300. }
  301. }
  302. }
  303. }
  304. @Override
  305. public List<String> getOwners(final Block block)
  306. {
  307. Connection conn = null;
  308. PreparedStatement ps = null;
  309. ResultSet rs = null;
  310. List<String> owners = new ArrayList<String>();
  311. try
  312. {
  313. conn = cpds.getConnection();
  314. ps = getStatementPlayersByLocation(conn, block.getWorld().getName(), block.getX(), block.getY(), block.getZ());
  315. rs = ps.executeQuery();
  316. while (rs.next())
  317. {
  318. owners.add(rs.getString(1));
  319. }
  320. return owners;
  321. }
  322. catch (SQLException ex)
  323. {
  324. LOGGER.log(Level.SEVERE, null, ex);
  325. return owners;
  326. }
  327. finally
  328. {
  329. if (rs != null)
  330. {
  331. try
  332. {
  333. rs.close();
  334. }
  335. catch (SQLException ex)
  336. {
  337. LOGGER.log(Level.SEVERE, null, ex);
  338. }
  339. }
  340. if (ps != null)
  341. {
  342. try
  343. {
  344. ps.close();
  345. }
  346. catch (SQLException ex)
  347. {
  348. LOGGER.log(Level.SEVERE, null, ex);
  349. }
  350. }
  351. if (conn != null)
  352. {
  353. try
  354. {
  355. conn.close();
  356. }
  357. catch (SQLException ex)
  358. {
  359. LOGGER.log(Level.SEVERE, null, ex);
  360. }
  361. }
  362. }
  363. }
  364. @Override
  365. public int unprotectBlock(final Block block)
  366. {
  367. Connection conn = null;
  368. PreparedStatement ps = null;
  369. try
  370. {
  371. conn = cpds.getConnection();
  372. ps = getStatementDeleteByLocation(conn, block.getWorld().getName(), block.getX(), block.getY(), block.getZ());
  373. return ps.executeUpdate();
  374. }
  375. catch (SQLException ex)
  376. {
  377. LOGGER.log(Level.SEVERE, null, ex);
  378. return 0;
  379. }
  380. finally
  381. {
  382. if (ps != null)
  383. {
  384. try
  385. {
  386. ps.close();
  387. }
  388. catch (SQLException ex)
  389. {
  390. LOGGER.log(Level.SEVERE, null, ex);
  391. }
  392. }
  393. if (conn != null)
  394. {
  395. try
  396. {
  397. conn.close();
  398. }
  399. catch (SQLException ex)
  400. {
  401. LOGGER.log(Level.SEVERE, null, ex);
  402. }
  403. }
  404. }
  405. }
  406. @Override
  407. public void onPluginDeactivation()
  408. {
  409. cpds.close();
  410. }
  411. }