@ -742,7 +742,7 @@ public final class JobRunner: JobRunnerType {
) -> ( Int64 , Job ) ? {
) -> ( Int64 , Job ) ? {
switch job ? . behaviour {
switch job ? . behaviour {
case . recurringOnActive , . recurringOnLaunch , . runOnceNextLaunch :
case . recurringOnActive , . recurringOnLaunch , . runOnceNextLaunch :
SNLog ( " [JobRunner] Attempted to insert \( job ? . variant ) job before the current one even though it's behaviour is \( job ? . behaviour ) " )
SNLog ( " [JobRunner] Attempted to insert \( job ) before the current one even though it's behaviour is \( job ? . behaviour ) " )
return nil
return nil
default : break
default : break
@ -843,7 +843,7 @@ public final class JobRunner: JobRunnerType {
case ( . enqueueOnly , . some ( let uniqueHashValue ) ) :
case ( . enqueueOnly , . some ( let uniqueHashValue ) ) :
// N o t h i n g c u r r e n t l y r u n n i n g o r s i t t i n g i n a J o b Q u e u e
// N o t h i n g c u r r e n t l y r u n n i n g o r s i t t i n g i n a J o b Q u e u e
guard ! allJobInfo ( ) . contains ( where : { _ , info -> Bool in info . uniqueHashValue = = uniqueHashValue } ) else {
guard ! allJobInfo ( ) . contains ( where : { _ , info -> Bool in info . uniqueHashValue = = uniqueHashValue } ) else {
SNLog ( " [JobRunner] Unable to add \( job . variant ) job due to unique constraint" )
SNLog ( " [JobRunner] Unable to add \( job ) due to unique constraint" )
return nil
return nil
}
}
@ -856,7 +856,7 @@ public final class JobRunner: JobRunnerType {
// N o t h i n g i n t h e d a t a b a s e
// N o t h i n g i n t h e d a t a b a s e
! Job . filter ( Job . Columns . uniqueHashValue = = uniqueHashValue ) . isNotEmpty ( db )
! Job . filter ( Job . Columns . uniqueHashValue = = uniqueHashValue ) . isNotEmpty ( db )
else {
else {
SNLog ( " [JobRunner] Unable to add \( job . variant ) job due to unique constraint" )
SNLog ( " [JobRunner] Unable to add \( job ) due to unique constraint" )
return nil
return nil
}
}
@ -864,7 +864,7 @@ public final class JobRunner: JobRunnerType {
case ( . persist , . none ) :
case ( . persist , . none ) :
guard let updatedJob : Job = try ? job . inserted ( db ) , updatedJob . id != nil else {
guard let updatedJob : Job = try ? job . inserted ( db ) , updatedJob . id != nil else {
SNLog ( " [JobRunner] Unable to add \( job . variant ) job \( job . id = = nil ? " due to missing id " : " " ) " )
SNLog ( " [JobRunner] Unable to add \( job ) \( job . id = = nil ? " due to missing id " : " " ) " )
return nil
return nil
}
}
@ -1062,7 +1062,7 @@ public final class JobQueue: Hashable {
job . nextRunTimestamp <= dependencies . dateNow . timeIntervalSince1970
job . nextRunTimestamp <= dependencies . dateNow . timeIntervalSince1970
else { return }
else { return }
guard job . id != nil else {
guard job . id != nil else {
SNLog ( " [JobRunner] Prevented attempt to add \( job . variant ) job without id to queue" )
SNLog ( " [JobRunner] Prevented attempt to add \( job ) without id to queue" )
return
return
}
}
@ -1090,7 +1090,7 @@ public final class JobQueue: Hashable {
using dependencies : Dependencies
using dependencies : Dependencies
) {
) {
guard let jobId : Int64 = job . id else {
guard let jobId : Int64 = job . id else {
SNLog ( " [JobRunner] Prevented attempt to upsert \( job . variant ) job without id to queue" )
SNLog ( " [JobRunner] Prevented attempt to upsert \( job ) without id to queue" )
return
return
}
}
@ -1116,7 +1116,7 @@ public final class JobQueue: Hashable {
fileprivate func insert ( _ job : Job , before otherJob : Job ) {
fileprivate func insert ( _ job : Job , before otherJob : Job ) {
guard job . id != nil else {
guard job . id != nil else {
SNLog ( " [JobRunner] Prevented attempt to insert \( job . variant ) job without id to queue" )
SNLog ( " [JobRunner] Prevented attempt to insert \( job ) without id to queue" )
return
return
}
}
@ -1323,7 +1323,7 @@ public final class JobQueue: Hashable {
// R u n t h e f i r s t j o b i n t h e p e n d i n g J o b s Q u e u e
// R u n t h e f i r s t j o b i n t h e p e n d i n g J o b s Q u e u e
if ! wasAlreadyRunning {
if ! wasAlreadyRunning {
Log . info ( " [JobRunner] Starting \( queueContext ) with ( \( jobCount ) job \( jobCount != 1 ? " s" : " " ) ) " )
Log . info ( " [JobRunner] Starting \( queueContext ) with \( jobCount ) job s" )
}
}
runNextJob ( using : dependencies )
runNextJob ( using : dependencies )
}
}
@ -1360,7 +1360,7 @@ public final class JobQueue: Hashable {
return
return
}
}
guard let jobExecutor : JobExecutor . Type = executorMap . wrappedValue [ nextJob . variant ] else {
guard let jobExecutor : JobExecutor . Type = executorMap . wrappedValue [ nextJob . variant ] else {
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob . variant ) job due to missing executor" )
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob ) due to missing executor" )
handleJobFailed (
handleJobFailed (
nextJob ,
nextJob ,
error : JobRunnerError . executorMissing ,
error : JobRunnerError . executorMissing ,
@ -1370,7 +1370,7 @@ public final class JobQueue: Hashable {
return
return
}
}
guard ! jobExecutor . requiresThreadId || nextJob . threadId != nil else {
guard ! jobExecutor . requiresThreadId || nextJob . threadId != nil else {
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob . variant ) job due to missing required threadId" )
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob ) due to missing required threadId" )
handleJobFailed (
handleJobFailed (
nextJob ,
nextJob ,
error : JobRunnerError . requiredThreadIdMissing ,
error : JobRunnerError . requiredThreadIdMissing ,
@ -1380,7 +1380,7 @@ public final class JobQueue: Hashable {
return
return
}
}
guard ! jobExecutor . requiresInteractionId || nextJob . interactionId != nil else {
guard ! jobExecutor . requiresInteractionId || nextJob . interactionId != nil else {
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob . variant ) job due to missing required interactionId" )
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob ) due to missing required interactionId" )
handleJobFailed (
handleJobFailed (
nextJob ,
nextJob ,
error : JobRunnerError . requiredInteractionIdMissing ,
error : JobRunnerError . requiredInteractionIdMissing ,
@ -1390,7 +1390,7 @@ public final class JobQueue: Hashable {
return
return
}
}
guard nextJob . id != nil else {
guard nextJob . id != nil else {
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob . variant ) job due to missing id" )
SNLog ( " [JobRunner] \( queueContext ) Unable to run \( nextJob ) due to missing id" )
handleJobFailed (
handleJobFailed (
nextJob ,
nextJob ,
error : JobRunnerError . jobIdMissing ,
error : JobRunnerError . jobIdMissing ,
@ -1420,7 +1420,7 @@ public final class JobQueue: Hashable {
. defaulting ( to : ( 0 , [ ] ) )
. defaulting ( to : ( 0 , [ ] ) )
guard dependencyInfo . jobs . count = = dependencyInfo . expectedCount else {
guard dependencyInfo . jobs . count = = dependencyInfo . expectedCount else {
SNLog ( " [JobRunner] \( queueContext ) Removing \( nextJob . variant ) job due to missing dependencies" )
SNLog ( " [JobRunner] \( queueContext ) Removing \( nextJob ) due to missing dependencies" )
handleJobFailed (
handleJobFailed (
nextJob ,
nextJob ,
error : JobRunnerError . missingDependencies ,
error : JobRunnerError . missingDependencies ,
@ -1430,7 +1430,7 @@ public final class JobQueue: Hashable {
return
return
}
}
guard dependencyInfo . jobs . isEmpty else {
guard dependencyInfo . jobs . isEmpty else {
SNLog ( " [JobRunner] \( queueContext ) Deferring \( nextJob . variant ) job until \( dependencyInfo . jobs . count ) dependenc \( dependencyInfo . jobs . count = = 1 ? " y " : " ies" ) are completed" )
SNLog ( " [JobRunner] \( queueContext ) Deferring \( nextJob ) until \( dependencyInfo . jobs . count ) dependenc ies are completed" )
// E n q u e u e t h e d e p e n d e n c i e s t h e n d e f e r t h e c u r r e n t j o b
// E n q u e u e t h e d e p e n d e n c i e s t h e n d e f e r t h e c u r r e n t j o b
dependencies . jobRunner . enqueueDependenciesIfNeeded (
dependencies . jobRunner . enqueueDependenciesIfNeeded (
@ -1467,7 +1467,7 @@ public final class JobQueue: Hashable {
)
)
)
)
}
}
SNLog ( " [JobRunner] \( queueContext ) started \( nextJob . variant ) job (\( executionType = = . concurrent ? " \( numJobsRunning ) currently running, " : " " ) \( numJobsRemaining ) remaining) " )
SNLog ( " [JobRunner] \( queueContext ) started \( nextJob ) (\( executionType = = . concurrent ? " \( numJobsRunning ) currently running, " : " " ) \( numJobsRemaining ) remaining) " )
jobExecutor . run (
jobExecutor . run (
nextJob ,
nextJob ,
@ -1642,7 +1642,7 @@ public final class JobQueue: Hashable {
using dependencies : Dependencies
using dependencies : Dependencies
) {
) {
guard dependencies . storage . read ( using : dependencies , { db in try Job . exists ( db , id : job . id ? ? - 1 ) } ) = = true else {
guard dependencies . storage . read ( using : dependencies , { db in try Job . exists ( db , id : job . id ? ? - 1 ) } ) = = true else {
SNLog ( " [JobRunner] \( queueContext ) \( job . variant ) job canceled" )
SNLog ( " [JobRunner] \( queueContext ) \( job ) canceled" )
performCleanUp ( for : job , result : . failed ( error , permanentFailure ) , using : dependencies )
performCleanUp ( for : job , result : . failed ( error , permanentFailure ) , using : dependencies )
internalQueue . async ( using : dependencies ) { [ weak self ] in
internalQueue . async ( using : dependencies ) { [ weak self ] in
@ -1655,7 +1655,7 @@ public final class JobQueue: Hashable {
// i m m e d i a t e l y ( i n t h i s c a s e w e d o n ' t t r i g g e r a n y j o b c a l l b a c k s b e c a u s e t h e
// i m m e d i a t e l y ( i n t h i s c a s e w e d o n ' t t r i g g e r a n y j o b c a l l b a c k s b e c a u s e t h e
// j o b i s n ' t a c t u a l l y d o n e , i t ' s g o i n g t o t r y a g a i n i m m e d i a t e l y )
// j o b i s n ' t a c t u a l l y d o n e , i t ' s g o i n g t o t r y a g a i n i m m e d i a t e l y )
if self . type = = . blocking && job . shouldBlock {
if self . type = = . blocking && job . shouldBlock {
SNLog ( " [JobRunner] \( queueContext ) \( job . variant ) job failed due to error: \( " \( error ? ? JobRunnerError . unknown ) " . noPeriod ) ; retrying immediately " )
SNLog ( " [JobRunner] \( queueContext ) \( job ) failed due to error: \( error ? ? JobRunnerError . unknown ) ; retrying immediately " )
// I f i t w a s a p o s s i b l e d e f e r r a l l o o p t h e n w e d o n ' t a c t u a l l y w a n t t o
// I f i t w a s a p o s s i b l e d e f e r r a l l o o p t h e n w e d o n ' t a c t u a l l y w a n t t o
// r e t r y t h e j o b ( e v e n i f i t ' s a b l o c k i n g o n e , t h i s g i v e s a s m a l l c h a n c e
// r e t r y t h e j o b ( e v e n i f i t ' s a b l o c k i n g o n e , t h i s g i v e s a s m a l l c h a n c e
@ -1747,7 +1747,7 @@ public final class JobQueue: Hashable {
}
}
}
}
SNLog ( " [JobRunner] \( queueContext ) \( job . variant ) job \( failureText ) " )
SNLog ( " [JobRunner] \( queueContext ) \( job ) \( failureText ) " )
performCleanUp ( for : job , result : . failed ( error , permanentFailure ) , using : dependencies )
performCleanUp ( for : job , result : . failed ( error , permanentFailure ) , using : dependencies )
internalQueue . async ( using : dependencies ) { [ weak self ] in
internalQueue . async ( using : dependencies ) { [ weak self ] in
self ? . runNextJob ( using : dependencies )
self ? . runNextJob ( using : dependencies )
@ -1840,6 +1840,19 @@ public final class JobQueue: Hashable {
// MARK: - F o r m a t t i n g
// MARK: - F o r m a t t i n g
private extension String . StringInterpolation {
mutating func appendInterpolation ( _ job : Job ) {
appendLiteral ( " \( job . variant ) job (id: \( job . id ? ? - 1 ) ) " ) // s t r i n g l i n t : d i s a b l e
}
mutating func appendInterpolation ( _ job : Job ? ) {
switch job {
case . some ( let job ) : appendInterpolation ( job )
case . none : appendLiteral ( " null job " ) // s t r i n g l i n t : d i s a b l e
}
}
}
extension String . StringInterpolation {
extension String . StringInterpolation {
mutating func appendInterpolation ( _ variant : Job . Variant ? ) {
mutating func appendInterpolation ( _ variant : Job . Variant ? ) {
appendLiteral ( variant . map { " \( $0 ) " } ? ? " unknown " ) // s t r i n g l i n t : d i s a b l e
appendLiteral ( variant . map { " \( $0 ) " } ? ? " unknown " ) // s t r i n g l i n t : d i s a b l e