top of page

Concurrency and Parallelism in Swift


Concurrency and Parallelism in Swift

Concurrency and parallelism are two important concepts in modern software development, and Swift provides several ways to achieve them in your code. In this blog, we'll explore what concurrency and parallelism mean, why they are important, and how you can achieve them in your Swift code.


Concurrency and Parallelism


Concurrency is the ability of a system to perform multiple tasks simultaneously, without necessarily executing them in parallel. For example, a web server might handle multiple incoming requests at the same time, even if it can only execute one request at a time. Concurrency is achieved through techniques such as multitasking, where the system switches between tasks, and asynchronous programming, where tasks are executed in the background while the main thread continues to execute other tasks.


Parallelism, on the other hand, is the ability of a system to perform multiple tasks simultaneously by executing them in parallel. Parallelism is achieved through techniques such as multithreading, where multiple threads execute different tasks simultaneously, and multiprocessing, where multiple processes execute different tasks simultaneously.

Both concurrency and parallelism are important because they allow programs to make better use of available resources, such as CPU cycles, memory, and I/O. By executing multiple tasks simultaneously, programs can achieve higher performance and responsiveness, and can better handle complex, resource-intensive tasks.


Achieving Concurrency in Swift


Swift provides several ways to achieve concurrency in your code, including:


Grand Central Dispatch (GCD)


Grand Central Dispatch (GCD) is a C-based API that provides a simple and efficient way to perform asynchronous operations in your Swift code. GCD provides a pool of threads that can be used to execute tasks concurrently, and allows you to easily dispatch tasks to these threads using various dispatch queues.


Here's an example of how to use GCD to perform a task asynchronously:


let queue = DispatchQueue(label: "com.example.myqueue")
queue.async {
    // perform task asynchronously
}

In this example, we create a new dispatch queue with the label "com.example.myqueue", and then use the async method to dispatch a task to that queue. The task will be executed asynchronously in the background, and the main thread will continue to execute other tasks.


GCD also provides other types of dispatch queues, such as serial queues, concurrent queues, and main queues, which allow you to control the order and concurrency of tasks. GCD also provides several other features, such as dispatch groups, semaphores, and barriers, that allow you to synchronize and coordinate the execution of tasks.


Async/Await


Swift 5.5 introduced support for async/await, a new language feature that allows you to write asynchronous code in a more natural and intuitive way. Async/await allows you to define asynchronous functions that can be called in a synchronous way, and allows you to use await to wait for the result of an asynchronous operation without blocking the main thread.


Here's an example of how to use async/await to perform a task asynchronously:



func fetchData() async throws -> Data {
    let url = URL(string: "https://example.com/data.json")!
    let (data, _) = try await URLSession.shared.data(from: url)
    return data
}

do {
    let data = try await fetchData()
    // handle data
} catch {
    // handle error
}

n this example, we define an asynchronous function fetchData that fetches data from a remote URL using URLSession. We use the await keyword to wait for the data to be fetched, and we use a try block to handle any errors that might occur.


Async/await makes it easier to write and read asynchronous code, and makes it easier to handle errors and manage concurrency. Async/await is built on top of GCD and async/await:


Operation and OperationQueue


Swift also provides the Operation and OperationQueue classes, which allow you to define complex, multistep tasks that can be executed concurrently. Operation represents a single unit of work, and OperationQueue represents a queue of operations that can be executed concurrently or sequentially.


Here's an example of how to use Operation and OperationQueue to perform a complex, multistep task:


class MyOperation: Operation {
    override func main() {
        // perform task
    }
}

let queue = OperationQueue()
let op1 = MyOperation()
let op2 = MyOperation()
let op3 = MyOperation()
op2.addDependency(op1)
op3.addDependency(op2)
queue.addOperations([op1, op2, op3], waitUntilFinished: false)

In this example, we define a custom MyOperation class that performs a single unit of work, and then create a new OperationQueue. We create three instances of MyOperation, and use addDependency to specify their dependencies, so that op1 must be executed before op2, and op2 must be executed before op3. Finally, we add all three operations to the queue using addOperations, and set waitUntilFinished to false to ensure that the main thread continues to execute other tasks while the operations are running.

Operation and OperationQueue provide several other features, such as cancellation, priority, and maximum concurrency, that allow you to control the execution of tasks.


Achieving Parallelism in Swift


Swift also provides several ways to achieve parallelism in your code, including:


Threading


Swift supports multithreading, which allows you to execute multiple threads of code simultaneously on multiple cores of a CPU. Multithreading can be achieved using the Thread class, which represents a single thread of execution, and the pthread library, which provides low-level access to POSIX threads.


Here's an example of how to use Thread to perform a task in a separate thread:


let thread = Thread {
    // perform task in separate thread
}
thread.start()

In this example, we create a new Thread object and pass a closure that performs a task in a separate thread. We then use start to start the thread and execute the task.

pthread provides similar functionality to Thread, but with lower-level control over threads and synchronization.


DispatchQueue.concurrentPerform


GCD also provides a way to achieve parallelism using DispatchQueue.concurrentPerform, which allows you to execute a loop in parallel across multiple CPU cores.


Here's an example of how to use DispatchQueue.concurrentPerform to perform a loop in parallel:


let count = 1000000
var results = [Int](repeating: 0, count: count)
DispatchQueue.concurrentPerform(iterations: count) { index in
    results[index] = index * 2
}

In this example, we create an array of count integers and use DispatchQueue.concurrentPerform to execute a loop in parallel across multiple CPU cores. Each iteration of the loop calculates the value of index * 2 and stores it in the corresponding element of results.


DispatchQueue.concurrentPerform can be used to parallelize any loop that can be executed independently and without side effects.


Conclusion


Concurrency and parallelism are important concepts in modern software development, and Swift provides several ways to achieve them in your code. Grand Central Dispatch (GCD) and async/await are the most common ways to achieve concurrency in Swift, while threading and DispatchQueue.concurrentPerform are the most common ways to achieve parallelism. Operation and OperationQueue provide a higher-level abstraction for defining complex, multistep tasks that can be executed concurrently or sequentially.


When working with concurrency and parallelism, it's important to keep in mind the potential issues that can arise, such as race conditions, deadlocks, and performance issues. You should always use synchronization mechanisms, such as locks, semaphores, and barriers, to ensure that multiple threads or tasks don't access shared resources simultaneously.


In addition, you should always test your code under different conditions and loads to ensure that it performs well and doesn't introduce any issues or bugs.


In conclusion, Swift provides powerful tools for achieving concurrency and parallelism in your code, including Grand Central Dispatch, async/await, Operation and OperationQueue, threading, and DispatchQueue.concurrentPerform. By using these tools wisely and with care, you can write more efficient, responsive, and scalable applications.


Blog for Mobile App Developers, Testers and App Owners

 

This blog is from Finotes Team. Finotes is a lightweight mobile APM and bug detection tool for iOS and Android apps.

In this blog we talk about iOS and Android app development technologies, languages and frameworks like Java, Kotlin, Swift, Objective-C, Dart and Flutter that are used to build mobile apps. Read articles from Finotes team about good programming and software engineering practices, testing and QA practices, performance issues and bugs, concepts and techniques. 

bottom of page