Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

Rev 1 | Rev 17 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 15
Línea 11... Línea 11...
11
import Alamofire
11
import Alamofire
12
import SwiftyJSON
12
import SwiftyJSON
Línea 13... Línea 13...
13
 
13
 
14
class SyncAdapter
14
class SyncAdapter
15
{
-
 
-
 
15
{
Línea 16... Línea -...
16
  
-
 
17
    
-
 
18
    private let syncDao = SyncDao.sharedInstance
16
    private let database = Database.sharedInstance
Línea -... Línea 17...
-
 
17
    
-
 
18
    private var appData = AppData.sharedInstance
-
 
19
    
-
 
20
    
-
 
21
    private var syncDao : SyncDao
19
    private var inProgress = false;
22
    private var inProgress = false;
20
    private var appData = AppData.sharedInstance
23
 
21
    
24
    
22
    @objc func updateTimerForeground() {
25
    @objc func updateTimerForeground() {
Línea 23... Línea 26...
23
        if inProgress   {
26
        if inProgress   {
Línea 24... Línea 27...
24
            return
27
            return
25
        }
28
        }
26
        
29
        
Línea 27... Línea 30...
27
        
30
 
28
        
31
        
29
        inProgress = true
32
        inProgress = true
30
        let myQue = DispatchQueue(label: "syncQuueForeground")
33
        let myQue = DispatchQueue(label: "syncQuueForeground")
31
        myQue.async {
34
        myQue.async {
32
            
35
            
33
            if self.isCheckChangesRequired()  {
36
            if self.isCheckChangesRequired()  {
34
                self.checkChanges(isForeground:true) { success in
37
                self.checkChanges(isForeground:true) { success in
35
                    self.inProgress = false;
38
                    self.inProgress = false;
36
                }
39
                }
37
            } else {
40
            } else {
Línea 78... Línea 81...
78
        return false
81
        return false
79
    }
82
    }
Línea 80... Línea 83...
80
    
83
    
Línea -... Línea 84...
-
 
84
    func checkChanges(isForeground : Bool,  completionHandler : @escaping (_ success : Bool) -> Void) {
-
 
85
        
-
 
86
        database.open()
-
 
87
        syncDao = SyncDao(db: db)
81
    func checkChanges(isForeground : Bool,  completionHandler : @escaping (_ success : Bool) -> Void) {
88
        
82
        
89
        
83
        if syncDao.countPendingRecords() > 0 {
90
        if syncDao.countPendingRecords() > 0 {
Línea 160... Línea 167...
160
                            }
167
                            }
Línea 161... Línea 168...
161
                            
168
                            
162
                            
169
                            
163
                            
170
                            
Línea 164... Línea 171...
164
                            if result?["data"]["rating_and_comments"]  ?? "" != ""  {
171
                            if result?["data"]["rating_and_comments"]  ?? "" != ""  {
Línea 165... Línea 172...
165
                                let capsuleDao = CapsuleDao.sharedInstance
172
                                let capsuleDao = CapsuleDao(db: database)
Línea 183... Línea 190...
183
                        }
190
                        }
184
                    }
191
                    }
185
                break
192
                break
186
                case .failure:
193
                case .failure:
187
                   // print("JSON = \(String(describing: Error.self))")
194
                   // print("JSON = \(String(describing: Error.self))")
-
 
195
                    
188
                break
196
                break
189
            }
197
            }
-
 
198
            database.close()
190
        }
199
        }
Línea -... Línea 200...
-
 
200
    
191
    
201
 
192
        completionHandler(true)
202
        completionHandler(true)
Línea 193... Línea 203...
193
    }
203
    }
194
    
204
    
-
 
205
    
195
    
206
    func sync(isForeground : Bool, completionHandler : @escaping (_ success : Bool) -> Void) {
Línea 196... Línea 207...
196
    func sync(completionHandler : @escaping (_ success : Bool) -> Void) {
207
        database.open()
Línea 197... Línea 208...
197
        //print("start sync")
208
        syncDao = SyncDao(db: db)
198
        let recordsSync = self.syncDao.selectBatch()
209
        let recordsSync = syncDao.selectBatch()
Línea 242... Línea 253...
242
                    
253
                    
Línea 243... Línea 254...
243
                }
254
                }
-
 
255
              
-
 
256
            
244
              
257
            }
-
 
258
            
-
 
259
            
245
            
260
        }
246
            }
261
        
Línea 247... Línea 262...
247
        }
262
        database.close()
248
        completionHandler(true)
263
        completionHandler(true)