/server/src/org/atomojo/app/sync/FeedSynchronizer.java

http://atomojo.googlecode.com/ · Java · 123 lines · 100 code · 9 blank · 14 comment · 5 complexity · e68dce88ba959da4f28d41efe4a60f35 MD5 · raw file

  1. /*
  2. * FeedSyncronizer.java
  3. *
  4. * Created on April 11, 2007, 8:13 AM
  5. *
  6. * To change this template, choose Tools | Template Manager
  7. * and open the template in the editor.
  8. */
  9. package org.atomojo.app.sync;
  10. import java.sql.SQLException;
  11. import java.sql.Timestamp;
  12. import java.util.Date;
  13. import java.util.Iterator;
  14. import java.util.logging.Level;
  15. import java.util.logging.Logger;
  16. import org.atomojo.app.Storage;
  17. import org.atomojo.app.client.XMLRepresentationParser;
  18. import org.atomojo.app.db.DB;
  19. import org.atomojo.app.db.SyncProcess;
  20. import org.atomojo.app.util.Slot;
  21. import org.infoset.xml.XMLException;
  22. /**
  23. *
  24. * @author alex
  25. */
  26. public class FeedSynchronizer implements Runnable
  27. {
  28. static int defaultSyncPeriod = 1000*60;
  29. static {
  30. String value = System.getProperty("org.atomojo.sync.period");
  31. if (value!=null) {
  32. defaultSyncPeriod = Integer.parseInt(value);
  33. }
  34. }
  35. DB db;
  36. Storage storage;
  37. int pausePeriod;
  38. boolean running;
  39. Logger log;
  40. String username;
  41. String password;
  42. XMLRepresentationParser parser = new XMLRepresentationParser();
  43. /** Creates a new instance of FeedSyncronizer */
  44. public FeedSynchronizer(Logger log,DB db,Storage storage)
  45. {
  46. this.db = db;
  47. this.storage = storage;
  48. this.pausePeriod = defaultSyncPeriod;
  49. this.running = true;
  50. this.log = log;
  51. this.username = "admin";
  52. this.password = "admin";
  53. }
  54. public void stop() {
  55. this.running = false;
  56. }
  57. public void run() {
  58. while (running) {
  59. try {
  60. Thread.currentThread().sleep(pausePeriod);
  61. } catch (InterruptedException ex) {
  62. log.warning("Sleep interrupted on sync.");
  63. }
  64. sync();
  65. }
  66. }
  67. public void sync()
  68. {
  69. final Slot<Boolean> allOK = new Slot<Boolean>(Boolean.TRUE);
  70. log.fine("Checking for targets to synchronize...");
  71. final Date thisSync = new Date();
  72. try {
  73. Iterator<SyncProcess> procs = db.getSyncProcesses();
  74. while (procs.hasNext()) {
  75. SyncProcess proc = procs.next();
  76. try {
  77. proc.unmarshall();
  78. if (proc.isPullSynchronization()) {
  79. continue;
  80. }
  81. proc.getSyncTarget().unmarshall();
  82. proc.getRemoteApp().unmarshall();
  83. log.info("Synchronizing process "+proc.getName()+": target="+proc.getSyncTarget().getName()+", app="+proc.getRemoteApp().getName());
  84. PushSynchronizer push = new PushSynchronizer(log,db,storage,proc);
  85. push.setSynchronizationAt(thisSync);
  86. try {
  87. push.sync();
  88. } catch (TargetNotAvailableException ex) {
  89. allOK.set(false);
  90. log.warning(ex.getMessage());
  91. } catch (SyncException ex) {
  92. log.log(Level.SEVERE,"Failure to sync process "+proc.getName(),ex);
  93. allOK.set(false);
  94. }
  95. log.info("Finished sync process "+proc.getName());
  96. } catch (Exception ex) {
  97. // No error should happen.. but hey...
  98. log.log(Level.SEVERE,"Cannot unmarshall document.",ex);
  99. continue;
  100. }
  101. }
  102. if (allOK.get()) {
  103. try {
  104. db.getJournal().truncate(new Timestamp(thisSync.getTime()));
  105. } catch (SQLException ex) {
  106. log.log(Level.SEVERE,"Exception while truncating journal: "+ex.getMessage(),ex);
  107. }
  108. }
  109. } catch (XMLException ex) {
  110. log.log(Level.SEVERE,"Exception when getting push sync process list: "+ex.getMessage(),ex);
  111. }
  112. log.fine("Finished synchronization.");
  113. }
  114. }