अतुल्यकालिक नेटवर्क अनुरोधों के साथ लूप के लिए स्विफ्ट होने तक प्रतीक्षा करें


159

मैं चाहूंगा कि लूप के लिए फायरबेस को नेटवर्क अनुरोधों का एक समूह भेजें, फिर विधि को निष्पादित करने के बाद एक नए व्यू कंट्रोलर को डेटा पास करें। यहाँ मेरा कोड है:

var datesArray = [String: AnyObject]()

for key in locationsArray {       
    let ref = Firebase(url: "http://myfirebase.com/" + "\(key.0)")
    ref.observeSingleEventOfType(.Value, withBlock: { snapshot in

        datesArray["\(key.0)"] = snapshot.value
    })
}
// Segue to new view controller here and pass datesArray once it is complete 

मुझे कुछ चिंताएं हैं। सबसे पहले, मैं कैसे इंतजार कर सकता हूं जब तक कि लूप समाप्त नहीं हो जाता है और सभी नेटवर्क अनुरोध पूरे हो जाते हैं? मैं ObsSingleEventOfType फ़ंक्शन को संशोधित नहीं कर सकता, यह फायरबेस SDK का हिस्सा है। इसके अलावा, क्या मैं तारीखों को एक्सेस करने की कोशिश करके किसी तरह की दौड़ की स्थिति पैदा करूंगा। लूप के लिए अलग-अलग पुनरावृत्तियों से उम्मीद करें (आशा है कि समझ में आता है)? मैं GCD और NSOperation के बारे में पढ़ रहा हूं, लेकिन मैं थोड़ा खो गया हूं क्योंकि यह पहला ऐप है जिसे मैंने बनाया है।

नोट: स्थान सरणी एक सरणी है जिसमें मुझे फायरबेस में पहुंचने की कुंजी है। इसके अलावा, यह महत्वपूर्ण है कि नेटवर्क अनुरोधों को अतुल्यकालिक रूप से निकाल दिया जाए। मैं बस तारीखों को पास करने से पहले सभी अतुल्यकालिक अनुरोधों को पूरा होने तक इंतजार करना चाहता हूं।

जवाबों:


338

जब आपके सभी अनुरोध समाप्त हो जाते हैं तो आप एक अतुल्यकालिक कॉलबैक को आग लगाने के लिए प्रेषण समूहों का उपयोग कर सकते हैं ।

यहां एक उदाहरण के लिए प्रेषण समूहों का उपयोग करके एक कॉलबैक को अतुल्यकालिक रूप से निष्पादित करने के लिए किया जाता है जब कई नेटवर्किंग अनुरोध सभी समाप्त हो जाते हैं।

override func viewDidLoad() {
    super.viewDidLoad()

    let myGroup = DispatchGroup()

    for i in 0 ..< 5 {
        myGroup.enter()

        Alamofire.request("https://httpbin.org/get", parameters: ["foo": "bar"]).responseJSON { response in
            print("Finished request \(i)")
            myGroup.leave()
        }
    }

    myGroup.notify(queue: .main) {
        print("Finished all requests.")
    }
}

उत्पादन

Finished request 1
Finished request 0
Finished request 2
Finished request 3
Finished request 4
Finished all requests.

यह महान काम किया! धन्यवाद! यदि आपके पास किसी भी दौड़ की स्थिति में भाग लेंगे, तो क्या आपके पास कोई विचार है जब मैं तारीखों को अपडेट करने की कोशिश कर रहा हूं?
जोश

मुझे नहीं लगता कि यहां एक दौड़ की स्थिति है क्योंकि सभी अनुरोध datesArrayएक अलग कुंजी का उपयोग करने के लिए मान जोड़ते हैं ।
पॉलव्स

1
@ जोश दौड़ की स्थिति के बारे में: एक दौड़ की स्थिति होती है, यदि एक ही मेमोरी स्थान को विभिन्न थ्रेड्स से एक्सेस किया जाएगा, जहां कम से कम एक एक्सेस एक लेखन है - बिना सिंक्रोनाइज़ेशन का उपयोग किए। एक ही धारावाहिक प्रेषण कतार के भीतर सभी एक्सेस सिंक्रनाइज़ हैं, हालांकि। सिंक्रनाइज़ेशन भी प्रेषण कतार A पर होने वाले मेमोरी ऑपरेशन के साथ होता है, जो एक और डिस्पैच कतार बी को सबमिट करता है। कतार A में सभी ऑपरेशन तब कतार B में सिंक्रनाइज़ किए जाते हैं। इसलिए, यदि आप समाधान को देखते हैं, तो यह स्वचालित रूप से गारंटी नहीं है कि एक्सेस सिंक्रनाइज़ किया गया है। ;)
काउचडॉलर

@ जोश, ध्यान रखें कि "रेसट्रैक प्रोग्रामिंग" एक शब्द में, मूर्खतापूर्ण रूप से कठिन है। यह केवल तुरंत कहने के लिए संभव नहीं है "आप करते हैं / वहाँ कोई समस्या नहीं है।" शौक़ीन प्रोग्रामर के लिए: "बस" हमेशा एक तरह से काम करते हैं जिसका मतलब है कि रेसट्रैक समस्याएँ बस, असंभव हैं। (उदाहरण के लिए, "केवल एक ही बार में एक काम करना" आदि जैसी चीजें) यहां तक ​​कि ऐसा करना एक बहुत बड़ी प्रोग्रामिंग चुनौती है।
फेटी

बेहद कूल। लेकिन मेरे पास एक प्रश्न है। मान लीजिए अनुरोध 3 और अनुरोध 4 विफल (जैसे सर्वर त्रुटि, प्राधिकरण त्रुटि, कुछ भी), तो केवल शेष अनुरोधों के लिए फिर से लूप कैसे कॉल करें (अनुरोध 3 और अनुरोध 4)?
जद।

43

Xcode 8.3.1 - स्विफ्ट 3

यह स्विफ्ट 3 में परिवर्तित होने वाले पॉलव्स का स्वीकृत उत्तर है:

let myGroup = DispatchGroup()

override func viewDidLoad() {
    super.viewDidLoad()

    for i in 0 ..< 5 {
        myGroup.enter()
        Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]).responseJSON { response in
            print("Finished request \(i)")
            myGroup.leave()
        }
    }

    myGroup.notify(queue: DispatchQueue.main, execute: {
        print("Finished all requests.")
    })
}

1
नमस्ते, क्या यह काम 100 अनुरोधों के लिए कहता है? या 1000? क्योंकि मैं लगभग 100 अनुरोधों के साथ ऐसा करने की कोशिश कर रहा हूं और अनुरोध पूरा होने पर दुर्घटनाग्रस्त हो रहा है।
लोप्स .१०

I दूसरा @ lopes710-- यह सभी अनुरोधों को समानांतर, सही में संचालित करने की अनुमति देता है?
क्रिस प्रिंस

अगर मेरे पास 2 नेटवर्क अनुरोध हैं, तो एक लूप के लिए, दूसरे के साथ नेस्टेड है, तो यह कैसे सुनिश्चित करें कि लूप के लिए प्रत्येक पुनरावृत्ति के लिए, दोनों अनुरोध पूरा हो गए हैं। ?
आवा फय्याज

@ चैनल, कृपया ऐसा कोई तरीका है जिससे मुझे यह ऑर्डर मिल सके?
इज़राइल मेशिलेया

41

स्विफ्ट 3 या 4

यदि आप आदेशों की परवाह नहीं करते हैं , तो @ paulvs के उत्तर का उपयोग करें , यह पूरी तरह से काम करता है।

यदि किसी को समवर्ती रूप से आग लगाने के बजाय परिणाम प्राप्त करना है तो बस यहां , कोड है।

let dispatchGroup = DispatchGroup()
let dispatchQueue = DispatchQueue(label: "any-label-name")
let dispatchSemaphore = DispatchSemaphore(value: 0)

dispatchQueue.async {

    // use array categories as an example.
    for c in self.categories {

        if let id = c.categoryId {

            dispatchGroup.enter()

            self.downloadProductsByCategory(categoryId: id) { success, data in

                if success, let products = data {

                    self.products.append(products)
                }

                dispatchSemaphore.signal()
                dispatchGroup.leave()
            }

            dispatchSemaphore.wait()
        }
    }
}

dispatchGroup.notify(queue: dispatchQueue) {

    DispatchQueue.main.async {

        self.refreshOrderTable { _ in

            self.productCollectionView.reloadData()
        }
    }
}

मेरे ऐप को एक एफ़टीपी सर्वर पर कई फाइलें भेजनी हैं, जिसमें पहले लॉगिंग भी शामिल है। यह दृष्टिकोण यह गारंटी देता है कि ऐप केवल एक बार (पहली फ़ाइल अपलोड करने से पहले) में लॉग इन करता है, बजाय इसे कई बार करने की कोशिश करने के, सभी मूल रूप से एक ही समय (जैसे "अनियंत्रित" दृष्टिकोण के साथ), जो त्रुटियों को ट्रिगर करेगा। धन्यवाद!
नेफ

हालांकि मुझे एक सवाल मिला है: क्या dispatchSemaphore.signal()इससे पहले कि आप या छोड़ने के बाद कोई फर्क पड़ता है dispatchGroup? आपको लगता है कि यह सबसे अच्छा है कि जितनी जल्दी हो सके सेमीफ़ायर को अनब्लॉक करना सबसे अच्छा है, लेकिन मुझे यकीन नहीं है कि समूह कैसे और कैसे छोड़ रहा है। मैंने दोनों आदेशों का परीक्षण किया और इससे कोई फर्क नहीं पड़ा।
नेफ

16

विवरण

  • Xcode 10.2.1 (10E1001), स्विफ्ट 5

उपाय

import Foundation

class SimultaneousOperationsQueue {
    typealias CompleteClosure = ()->()

    private let dispatchQueue: DispatchQueue
    private lazy var tasksCompletionQueue = DispatchQueue.main
    private let semaphore: DispatchSemaphore
    var whenCompleteAll: (()->())?
    private lazy var numberOfPendingActionsSemaphore = DispatchSemaphore(value: 1)
    private lazy var _numberOfPendingActions = 0

    var numberOfPendingTasks: Int {
        get {
            numberOfPendingActionsSemaphore.wait()
            defer { numberOfPendingActionsSemaphore.signal() }
            return _numberOfPendingActions
        }
        set(value) {
            numberOfPendingActionsSemaphore.wait()
            defer { numberOfPendingActionsSemaphore.signal() }
            _numberOfPendingActions = value
        }
    }

    init(numberOfSimultaneousActions: Int, dispatchQueueLabel: String) {
        dispatchQueue = DispatchQueue(label: dispatchQueueLabel)
        semaphore = DispatchSemaphore(value: numberOfSimultaneousActions)
    }

    func run(closure: ((@escaping CompleteClosure) -> Void)?) {
        numberOfPendingTasks += 1
        dispatchQueue.async { [weak self] in
            guard   let self = self,
                    let closure = closure else { return }
            self.semaphore.wait()
            closure {
                defer { self.semaphore.signal() }
                self.numberOfPendingTasks -= 1
                if self.numberOfPendingTasks == 0, let closure = self.whenCompleteAll {
                    self.tasksCompletionQueue.async { closure() }
                }
            }
        }
    }

    func run(closure: (() -> Void)?) {
        numberOfPendingTasks += 1
        dispatchQueue.async { [weak self] in
            guard   let self = self,
                    let closure = closure else { return }
            self.semaphore.wait(); defer { self.semaphore.signal() }
            closure()
            self.numberOfPendingTasks -= 1
            if self.numberOfPendingTasks == 0, let closure = self.whenCompleteAll {
                self.tasksCompletionQueue.async { closure() }
            }
        }
    }
}

प्रयोग

let queue = SimultaneousOperationsQueue(numberOfSimultaneousActions: 1, dispatchQueueLabel: "AnyString")
queue.whenCompleteAll = { print("All Done") }

 // add task with sync/async code
queue.run { completeClosure in
    // your code here...

    // Make signal that this closure finished
    completeClosure()
}

 // add task only with sync code
queue.run {
    // your code here...
}

पूरा नमूना

import UIKit

class ViewController: UIViewController {

    private lazy var queue = { SimultaneousOperationsQueue(numberOfSimultaneousActions: 1,
                                                           dispatchQueueLabel: "AnyString") }()
    private weak var button: UIButton!
    private weak var label: UILabel!

    override func viewDidLoad() {
        super.viewDidLoad()
        let button = UIButton(frame: CGRect(x: 50, y: 80, width: 100, height: 100))
        button.setTitleColor(.blue, for: .normal)
        button.titleLabel?.numberOfLines = 0
        view.addSubview(button)
        self.button = button

        let label = UILabel(frame: CGRect(x: 180, y: 50, width: 100, height: 100))
        label.text = ""
        label.numberOfLines = 0
        label.textAlignment = .natural
        view.addSubview(label)
        self.label = label

        queue.whenCompleteAll = { [weak self] in self?.label.text = "All tasks completed" }

        //sample1()
        sample2()
    }

    func sample1() {
        button.setTitle("Run 2 task", for: .normal)
        button.addTarget(self, action: #selector(sample1Action), for: .touchUpInside)
    }

    func sample2() {
        button.setTitle("Run 10 tasks", for: .normal)
        button.addTarget(self, action: #selector(sample2Action), for: .touchUpInside)
    }

    private func add2Tasks() {
        queue.run { completeTask in
            DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + .seconds(1)) {
                DispatchQueue.main.async { [weak self] in
                    guard let self = self else { return }
                    self.label.text = "pending tasks \(self.queue.numberOfPendingTasks)"
                }
                completeTask()
            }
        }
        queue.run {
            sleep(1)
            DispatchQueue.main.async { [weak self] in
                guard let self = self else { return }
                self.label.text = "pending tasks \(self.queue.numberOfPendingTasks)"
            }
        }
    }

    @objc func sample1Action() {
        label.text = "pending tasks \(queue.numberOfPendingTasks)"
        add2Tasks()
    }

    @objc func sample2Action() {
        label.text = "pending tasks \(queue.numberOfPendingTasks)"
        for _ in 0..<5 { add2Tasks() }
    }
}

5

आपको इस उद्देश्य के लिए सेमाफोर का उपयोग करने की आवश्यकता होगी।

 //Create the semaphore with count equal to the number of requests that will be made.
let semaphore = dispatch_semaphore_create(locationsArray.count)

        for key in locationsArray {       
            let ref = Firebase(url: "http://myfirebase.com/" + "\(key.0)")
            ref.observeSingleEventOfType(.Value, withBlock: { snapshot in

                datesArray["\(key.0)"] = snapshot.value

               //For each request completed, signal the semaphore
               dispatch_semaphore_signal(semaphore)


            })
        }

       //Wait on the semaphore until all requests are completed
      let timeoutLengthInNanoSeconds: Int64 = 10000000000  //Adjust the timeout to suit your case
      let timeout = dispatch_time(DISPATCH_TIME_NOW, timeoutLengthInNanoSeconds)

      dispatch_semaphore_wait(semaphore, timeout)

     //When you reach here all request would have been completed or timeout would have occurred.

3

स्विफ्ट 3: आप इस तरह से सेमाफोर का उपयोग भी कर सकते हैं। यह बहुत मददगार होता है, इसके अलावा आप कब और क्या प्रक्रियाएं पूरी करते हैं, इस पर सटीक नज़र रख सकते हैं। यह मेरे कोड से निकाला गया है:

    //You have to create your own queue or if you need the Default queue
    let persons = persistentContainer.viewContext.persons
    print("How many persons on database: \(persons.count())")
    let numberOfPersons = persons.count()

    for eachPerson in persons{
        queuePersonDetail.async {
            self.getPersonDetailAndSave(personId: eachPerson.personId){person2, error in
                print("Person detail: \(person2?.fullName)")
                //When we get the completionHandler we send the signal
                semaphorePersonDetailAndSave.signal()
            }
        }
    }

    //Here we will wait
    for i in 0..<numberOfPersons{
        semaphorePersonDetailAndSave.wait()
        NSLog("\(i + 1)/\(persons.count()) completed")
    }
    //And here the flow continues...

1

हम इसे पुनरावृत्ति के साथ कर सकते हैं। नीचे दिए गए कोड से विचार प्राप्त करें:

var count = 0

func uploadImages(){

    if count < viewModel.uploadImageModelArray.count {
        let item = viewModel.uploadImageModelArray[count]
        self.viewModel.uploadImageExpense(filePath: item.imagePath, docType: "image/png", fileName: item.fileName ?? "", title: item.imageName ?? "", notes: item.notes ?? "", location: item.location ?? "") { (status) in

            if status ?? false {
                // successfully uploaded
            }else{
                // failed
            }
            self.count += 1
            self.uploadImages()
        }
    }
}

-1

डिस्पैच समूह अच्छा है लेकिन भेजे गए अनुरोधों का क्रम यादृच्छिक है।

Finished request 1
Finished request 0
Finished request 2

मेरी परियोजना के मामले में, लॉन्च करने के लिए आवश्यक प्रत्येक अनुरोध सही क्रम है। अगर यह किसी की मदद कर सकता है:

public class RequestItem: NSObject {
    public var urlToCall: String = ""
    public var method: HTTPMethod = .get
    public var params: [String: String] = [:]
    public var headers: [String: String] = [:]
}


public func trySendRequestsNotSent (trySendRequestsNotSentCompletionHandler: @escaping ([Error]) -> () = { _ in }) {

    // If there is requests
    if !requestItemsToSend.isEmpty {
        let requestItemsToSendCopy = requestItemsToSend

        NSLog("Send list started")
        launchRequestsInOrder(requestItemsToSendCopy, 0, [], launchRequestsInOrderCompletionBlock: { index, errors in
            trySendRequestsNotSentCompletionHandler(errors)
        })
    }
    else {
        trySendRequestsNotSentCompletionHandler([])
    }
}

private func launchRequestsInOrder (_ requestItemsToSend: [RequestItem], _ index: Int, _ errors: [Error], launchRequestsInOrderCompletionBlock: @escaping (_ index: Int, _ errors: [Error] ) -> Void) {

    executeRequest(requestItemsToSend, index, errors, executeRequestCompletionBlock: { currentIndex, errors in
        if currentIndex < requestItemsToSend.count {
            // We didn't reach last request, launch next request
            self.launchRequestsInOrder(requestItemsToSend, currentIndex, errors, launchRequestsInOrderCompletionBlock: { index, errors in

                launchRequestsInOrderCompletionBlock(currentIndex, errors)
            })
        }
        else {
            // We parse and send all requests
            NSLog("Send list finished")
            launchRequestsInOrderCompletionBlock(currentIndex, errors)
        }
    })
}

private func executeRequest (_ requestItemsToSend: [RequestItem], _ index: Int, _ errors: [Error], executeRequestCompletionBlock: @escaping (_ index: Int, _ errors: [Error]) -> Void) {
    NSLog("Send request %d", index)
    Alamofire.request(requestItemsToSend[index].urlToCall, method: requestItemsToSend[index].method, parameters: requestItemsToSend[index].params, headers: requestItemsToSend[index].headers).responseJSON { response in

        var errors: [Error] = errors
        switch response.result {
        case .success:
            // Request sended successfully, we can remove it from not sended request array
            self.requestItemsToSend.remove(at: index)
            break
        case .failure:
            // Still not send we append arror
            errors.append(response.result.error!)
            break
        }
        NSLog("Receive request %d", index)
        executeRequestCompletionBlock(index+1, errors)
    }
}

कॉल करें:

trySendRequestsNotSent()

परिणाम :

Send list started
Send request 0
Receive request 0
Send request 1
Receive request 1
Send request 2
Receive request 2
...
Send list finished

अधिक infos के लिए देखें: Gist

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.