2017-03-07 15 views
2

私は、比較的短時間でマルチプル接続をアプリで使用しようとしています。ほとんどのことはかなりスムーズに進んでいますが、私たちは本当に困惑している問題に直面しました。マルチプル接続性IOS:didFinishReceivingResourceWithNameエラー処理(クラッシュ)

エラーハンドリング... WIFI中旬転送..私のコードをオフにして行われている実装しようとしたときに、その後幸せなパスを以下のが、ときに我々は、すべてのデータが正常に転送されてきた...:

共有者:

func sendResource(data: Data?, name: String, fileName: String, peerId: MCPeerID){ 
     if data != nil{ 
      let url = createTransferFile(jsonData: data!, name: fileName) 

      if url != nil{ 
       session.sendResource(at: url!, withName: name, toPeer: peerId, withCompletionHandler: { (error) -> Void in 
        if error != nil{ 
         NSLog("Error in sending resource send resource: \(error!.localizedDescription)") 
        } 
       }) 

      } 
     } 
    } 

受信機:

func session(_ session: MCSession, didFinishReceivingResourceWithName resourceName: String, fromPeer peerID: MCPeerID, at localURL: URL, withError error: Error?) { 
     NSLog("%@", "didFinishReceivingResourceWithName: \(resourceName)") 
     if error != nil{ 
      NSLog("error in receiving") 
     } 
     if resourceName.contains("clinicDetails"){ 
      if error == nil{ 
       if let data = self.readClinicJsonFromFile(path: localURL){ 
        NSLog("passing to broadcast delegate") 
        sendDelegate?.addClinicDetails(self, clinicDetailsJSON: data) 

       }else{ 
        NSLog("there was an error in finding the retrieved file in clinic retrieve finished") 
        _ = Util.showAlert(retrievePatientDelegate as! UIViewController, code: 3021, actions: nil, isCustom: true) as! AlertController 
       } 
      }else{ 
       _ = Util.showAlert(retrievePatientDelegate as! UIViewController, code: 3021, actions: nil, isCustom: true) as! AlertController 
      } 
     }else if resourceName.contains("patients"){ 
      //NSLog("clinicId in retrievePatient: \(json["clinicId"])") 
      if error == nil{ 
       if let data = self.readPatientJsonFromFile(path: localURL){ 
        NSLog("passing to retrieve patients delegate") 
        retrievePatientDelegate?.addPatients(self, patientJSON: data , clinicId: resourceName.components(separatedBy: "/")[1]) 
       }else{ 
        NSLog("there was an error in finding the retrieved file in patient retrieve finished") 
        _ = Util.showAlert(retrievePatientDelegate as! UIViewController, code: 3021, actions: nil, isCustom: true) as! AlertController 

       } 
      }else{ 
       _ = Util.showAlert(retrievePatientDelegate as! UIViewController, code: 3021, actions: nil, isCustom: true) as! AlertController 
      } 
     }else if resourceName == "clinicList"{ 
      if error == nil{ 
       if let data = self.readClinicListJsonFromFile(path: localURL){ 
        NSLog("passing to retrieve retrieveDelegate") 
        retrieveDelegate?.addClinics(self, clinicsJSON: data["jsonData"] as! [[String:Any]], passcode: data["passcode"] as! String) 
       }else{ 
        NSLog("there was an error in finding the retrieved file in patient retrieve finished") 
        _ = Util.showAlert(retrievePatientDelegate as! UIViewController, code: 3021, actions: nil, isCustom: true) as! AlertController 
       } 
      }else{ 
       _ = Util.showAlert(retrievePatientDelegate as! UIViewController, code: 3021, actions: nil, isCustom: true) as! AlertController 
      } 
     } 
    } 

我々は受信エラー:

2017-03-06 16:52:54.416352 DC[2445:1444277] [GCKSession] Failed to send a DTLS packet with 78 bytes; sendmsg error: Can't assign requested address (49). 
2017-03-06 16:52:54.416560 DC[2445:1444277] [GCKSession] SSLWrite failed, packet was not sent for participant [05280B9E] channelID [4] DTLS context [0x103043ea0] pCList [0x10e94f960]; osStatus = -9803: errno = Can't assign requested address (49). 

これらの行は、進捗状況に応じてさらに印刷されます。

Then we also get the following stack in xcode(私はまだ、直接私の投稿に画像を追加することはできません。<)

Stack Frame from the thread causing the errorこのバグが原因didFinishReceivingResourceWithName機能では、localUrlにリンゴのフレームワークのバグにリンクされているように思え

+1

トレースからスタックフレームを共有できますか?スレッドがクラッシュしたときに、そのスレッドが実行していたコードは何ですか? –

+0

大丈夫ですか? – JoellyR

+0

スタックフレームはどういう意味ですか?あなたは私にデバッガセッションのスクリーンショットを送ってほしいですか?それを送るより良い方法がありますか? @DaveWeston – JoellyR

答えて

1

オプションではありません。エラーまたは進捗状況の値はゼロです。私はこの結論に至りました。クラッシュしているスレッドの各呼び出しを調べてから関連を見つけました。SO Post

関連する問題