2016-08-29 13 views
1

phonegap-plugin-barcodescanner(v6.0.1)を使用しているコードバ(現在5.3.3)プロジェクトがあります。最近、私は、iOS 10で大量のメモリリークが発生したと考えています。アプリケーションがiOS 10で動作しているときは、スキャナに接続されているリソースを決して割り当て解除しないようです。しかし、iOS 7または9では、すべて正常に動作します。これは、以下のメモリレポートで見ることができます。iOS 10のスキャナプラグインでのメモリリーク

iOSの10 ios10

のiOS 7 ios7

私は楽器にリークチェッカーを使用してリークを追跡しようとしましたが、私はテストの大幅な何かを見つけるように見えることはできません。このツールを使用して見つけられるのは、1スキャンあたり約1KBのリークオブジェクトです。

私の主な質問は、このスキャナに接続されているように見えるメモリの問題を追跡する良い方法があると思いますか?このような劇的な変化を引き起こすiOS 10での割り当て解除/再カウントが発生する方法に何らかの変化があったのでしょうか?

私は、上記のプラグインを使用してベアボーンコードワープロジェクトを作成し、このコードに示すように基本的なスキャナ呼び出しをボタンに実装しました。これは再現可能なテストを提供するはずです。

<!DOCTYPE html> 
<!-- 
Licensed to the Apache Software Foundation (ASF) under one 
or more contributor license agreements. See the NOTICE file 
distributed with this work for additional information 
regarding copyright ownership. The ASF licenses this file 
to you under the Apache License, Version 2.0 (the 
"License"); you may not use this file except in compliance 
with the License. You may obtain a copy of the License at 

http://www.apache.org/licenses/LICENSE-2.0 

Unless required by applicable law or agreed to in writing, 
software distributed under the License is distributed on an 
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
KIND, either express or implied. See the License for the 
specific language governing permissions and limitations 
under the License. 
--> 
<html> 
<head> 
    <!-- 
    Customize this policy to fit your own app's needs. For more guidance, see: 
     https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy 
    Some notes: 
     * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication 
     * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly 
     * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this: 
      * Enable inline JS: add 'unsafe-inline' to default-src 
    --> 

    <meta name="format-detection" content="telephone=no"> 
    <meta name="msapplication-tap-highlight" content="no"> 
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"> 
    <link rel="stylesheet" type="text/css" href="css/index.css"> 
    <title>Hello World</title> 
</head> 
<body> 
    <div class="app"> 
     <script type="text/javascript"> 
      function scanTest(field) { 
       try { 
        debugger 
        var scanner = window.cordova.require("phonegap-plugin-barcodescanner.BarcodeScanner"); 
        scanner.scan(
           function (result) { 
           if (document.getElementById(field)) { 
           document.getElementById(field).innerHTML = result.text; 
           } else { 
           alert("ScannerCouldntIdentifyMessage"); 
           } 
           }); 
       } catch (e) { 
        alert("ErrorDescription: " + e); 
       } 
      } 
     </script> 
     <h1>Apache Cordova</h1> 
     <div id="deviceready" class="blink"> 
      <p class="event listening">Connecting to Device</p> 
      <p class="event received">Device is Ready</p> 
      <p id="scan">Test scan</p> 
      <a href="#" onclick="scanTest('scan')" id="scantest">Scan</a> 
     </div> 
    </div> 
    <script type="text/javascript" src="cordova.js"></script> 
    <script type="text/javascript" src="js/index.js"></script> 
</body> 
</html> 

EDIT:さらに調査した後、私はそれから来るのどこか分からないVMでかなり大きなIOKitの割り当てがあるように見えることに気づきました。ここでは、iPadの場合、100 MiBのチャンクを割り当てていないが、iOS 10の場合はVMのサマリーから見ることができます。これはどこから来ているのか、余分な呼び出しを強制するのかはまだ分かりません。

iOSの10 ios10

のiOS 7 ios7

答えて

0

githubとさらに調査したところ、問題はAVCaptureVideoDataOutputSampleBufferDelegateを使用しているプラ​​グインに起因することが判明しました。ビデオ出力の設定がIOKitレベルでいくつかのリークを引き起こしていたようです。

この解決策は、AVCaptureMetadataOutputObjectsDelegateを使用するようにプラグインを更新し、AVCaptureMetadataOutput型を使用するように出力を更新することでした。方法(void)captureOutput:(AVCaptureOutput*)captureOutput didOutputMetadataObjects:(NSArray*)metadataObjects fromConnection:(AVCaptureConnection*)connection

のこの必須の実装では、この方法では、前のものと非常に類似していたが、代わりにデコーディングを行うにはzxingライブラリを使用しての、デコードがループとAVMetadataクラスで行った:

for (AVMetadataObject *metaData in metadataObjects) { 
    AVMetadataMachineReadableCodeObject* code = (AVMetadataMachineReadableCodeObject*) 
[self.previewLayer transformedMetadataObjectForMetadataObject: 
(AVMetadataMachineReadableCodeObject*)metaData]; 

    if ([self checkResult:code.stringValue]) { 
    [self barcodeScanSucceeded:code.stringValue format:[self formatStringFromMetadata:code]]; 
    } 

これらの変更はv 6.0.3のプラグインの一部としてリリースされました。

0

私は同じ問題を持っていたが、私は今それを解決しました。あなたのプラグインファイルCDVBarcodeScanner.mmを次のように置き換えてください。https://github.com/phonegap/phonegap-plugin-barcodescanner/blob/master/src/ios/CDVBarcodeScanner.mm

+2

潜在的な解決策へのリンクは常に歓迎しますが、スタックオーバーフローに関する答えは、回答本体の中に常にソリューションの主要な部分/点を含める必要があります。単に解説のない解へのリンクは、受け入れ可能な答えとはみなされません。適切な答えを策定する方法については、[ask]を参照してください。 – Magisch

関連する問題