Update.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. #include "../../Global/Initialisierung.h"
  2. #include <MausEreignis.h>
  3. #include "../../Global/Variablen.h"
  4. // Inhalt der UpdateGUI klasse aus UpdateGUI.h
  5. // Konstruktor
  6. Update::Update( Schrift *zSchrift, FBalken *fb, int dg, std::function< void(bool) > after )
  7. : Thread()
  8. {
  9. p = 0;
  10. this->fb = fb;
  11. updateAbbrechen = 0;
  12. this->dg = dg;
  13. this->after = after;
  14. }
  15. // Destruktor
  16. Update::~Update()
  17. {
  18. if( isRunning() )
  19. {
  20. updateAbbrechen = 1;
  21. warteAufThread( 5000 );
  22. if( isRunning() )
  23. {
  24. ende();
  25. after( 0 );
  26. }
  27. }
  28. if( fb )
  29. fb->release();
  30. if( p )
  31. p->release();
  32. }
  33. // nicht constant
  34. void Update::setPatcher( Patcher *p )
  35. {
  36. this->p = p;
  37. }
  38. void Update::abbrechen()
  39. {
  40. updateAbbrechen = 1;
  41. }
  42. void Update::herunterladen()
  43. {
  44. if( isRunning() || !p )
  45. return;
  46. start();
  47. getThis();
  48. }
  49. void Update::thread()
  50. {
  51. int dgId = dg;
  52. Text err;
  53. if( !p->update( dgId, &updateAbbrechen, (FBalken*)fb->getThis(), 0, &err ) )
  54. {
  55. updateAbbrechen = 1;
  56. if( nachLogin && nachLogin->zNachrichtenListe() )
  57. nachLogin->zNachrichtenListe()->addNachricht( new Text( "Fehler" ), err.getThis(), new Text( "Ok" ) );
  58. }
  59. run = 0;
  60. }
  61. void Update::threadEnd()
  62. {
  63. __super::threadEnd();
  64. after( !updateAbbrechen );
  65. release();
  66. }
  67. // constant
  68. int Update::getDateiGruppe() const
  69. {
  70. return dg;
  71. }
  72. // inhalt der UpdateHandler Klasse aus UpdateGUI.h
  73. // Konstruktor
  74. UpdateHandler::UpdateHandler()
  75. {
  76. patcher = new Patcher();
  77. updates = new RCArray< Update >();
  78. ref = 1;
  79. }
  80. // Destruktor
  81. UpdateHandler::~UpdateHandler()
  82. {
  83. updates->release();
  84. patcher->release();
  85. }
  86. // privat
  87. void UpdateHandler::lock()
  88. {
  89. cs.lock();
  90. }
  91. void UpdateHandler::unlock()
  92. {
  93. cs.unlock();
  94. }
  95. // nicht constant
  96. bool UpdateHandler::add( Update *update )
  97. {
  98. lock();
  99. if( hat( update->getDateiGruppe() ) )
  100. {
  101. update->release();
  102. unlock();
  103. return 0;
  104. }
  105. int anz = updates->getEintragAnzahl();
  106. update->setPatcher( patcher->getThis() );
  107. updates->add( update );
  108. unlock();
  109. return 1;
  110. }
  111. void UpdateHandler::remove( int dg )
  112. {
  113. lock();
  114. int anz = updates->getEintragAnzahl();
  115. for( int i = 0; i < anz; i++ )
  116. {
  117. if( updates->z( i )->getDateiGruppe() == dg )
  118. {
  119. updates->remove( i );
  120. break;
  121. }
  122. }
  123. unlock();
  124. }
  125. bool UpdateHandler::hat( int dg )
  126. {
  127. lock();
  128. bool ret = 0;
  129. int anz = updates->getEintragAnzahl();
  130. for( int i = 0; i < anz; i++ )
  131. {
  132. if( updates->z( i )->getDateiGruppe() == dg )
  133. {
  134. ret = 1;
  135. break;
  136. }
  137. }
  138. unlock();
  139. return ret;
  140. }
  141. // Reference Counting
  142. UpdateHandler *UpdateHandler::getThis()
  143. {
  144. ref++;
  145. return this;
  146. }
  147. UpdateHandler *UpdateHandler::release()
  148. {
  149. ref--;
  150. if( !ref )
  151. delete this;
  152. return 0;
  153. }