CheatingOffensePersister.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.client.anticheat;
  19. import java.sql.Connection;
  20. import java.sql.PreparedStatement;
  21. import java.sql.ResultSet;
  22. import java.sql.SQLException;
  23. import java.sql.Timestamp;
  24. import java.util.LinkedHashSet;
  25. import java.util.Set;
  26. import net.sf.odinms.database.DatabaseConnection;
  27. import net.sf.odinms.server.TimerManager;
  28. public class CheatingOffensePersister {
  29.     private static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(CheatingOffensePersister.class);
  30.     private final static CheatingOffensePersister INSTANCE = new CheatingOffensePersister();
  31.     private Set<CheatingOffenseEntry> toPersist = new LinkedHashSet<CheatingOffenseEntry>();
  32.     private CheatingOffensePersister() {
  33.         TimerManager.getInstance().register(new PersistingTask(), 61000);
  34.     }
  35.     public static CheatingOffensePersister getInstance() {
  36.         return INSTANCE;
  37.     }
  38.     public void persistEntry(CheatingOffenseEntry coe) {
  39.         synchronized (toPersist) {
  40.             toPersist.remove(coe); //equal/hashCode h4x
  41.             toPersist.add(coe);
  42.         }
  43.     }
  44.     public class PersistingTask implements Runnable {
  45.         @Override
  46.         public void run() {
  47.             CheatingOffenseEntry[] offenses;
  48.             synchronized (toPersist) {
  49.                 offenses = toPersist.toArray(new CheatingOffenseEntry[toPersist.size()]);
  50.                 toPersist.clear();
  51.             }
  52.             Connection con = DatabaseConnection.getConnection();
  53.             try {
  54.                 PreparedStatement insertps = con.prepareStatement("INSERT INTO cheatlog (cid, offense, count, lastoffensetime, param) VALUES (?, ?, ?, ?, ?)");
  55.                 PreparedStatement updateps = con.prepareStatement("UPDATE cheatlog SET count = ?, lastoffensetime = ?, param = ? WHERE id = ?");
  56.                 for (CheatingOffenseEntry offense : offenses) {
  57.                     String parm = offense.getParam() == null ? "" : offense.getParam();
  58.                     if (offense.getDbId() == -1) {
  59.                         insertps.setInt(1, offense.getChrfor().getId());
  60.                         insertps.setString(2, offense.getOffense().name());
  61.                         insertps.setInt(3, offense.getCount());
  62.                         insertps.setTimestamp(4, new Timestamp(offense.getLastOffenseTime()));
  63.                         insertps.setString(5, parm);
  64.                         insertps.executeUpdate();
  65.                         ResultSet rs = insertps.getGeneratedKeys();
  66.                         if (rs.next()) {
  67.                             offense.setDbId(rs.getInt(1));
  68.                         }
  69.                         rs.close();
  70.                     } else {
  71.                         updateps.setInt(1, offense.getCount());
  72.                         updateps.setTimestamp(2, new Timestamp(offense.getLastOffenseTime()));
  73.                         updateps.setString(3, parm);
  74.                         updateps.setInt(4, offense.getDbId());
  75.                         updateps.executeUpdate();
  76.                     }
  77.                 }
  78.                 insertps.close();
  79.                 updateps.close();
  80.             } catch (SQLException e) {
  81.                 log.error("error persisting cheatlog", e);
  82.             }
  83.         }
  84.     }
  85. }