Namespaces
Variants
Actions
Revision as of 07:40, 1 August 2012 by hamishwillee (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Garbage collection in platform services in the WRT 1.1 environment

Jump to: navigation, search
Article Metadata

Tested with
Devices(s): All devices using Browser 7.1

Compatibility
Platform(s): S60 5th Edition

Article
Keywords: device.getServiceObject
Created: User:Kbwiki (02 Nov 2009)
Last edited: hamishwillee (01 Aug 2012)


Contents

Overview

The garbage collection of JavaScript service objects has recently changed. This change was done to improve performance and memory efficiency. Even though JavaScript objects have a small memory footprint, the memory consumed by underlaying native objects must be released.

Description

Previously, bindings to native code protected the JavaScript objects obtained through platform services. The current implementation does not protect objects anymore, and one must be careful not to let them fall out of the scope.

How to reproduce

The following code shows the situation that must be avoided. The correct way is included in the code comments.

 var media=null;  
var garbage=null;
 
function init(){
var so = device.getServiceObject("Service.MediaManagement", "IDataSource");
 
//the right way
//this.media = so;
 
//this worked on previous releases
this.media = so.IDataSource;
 
garbage = new Array();
}
 
function getImages(){
//ensure that garbage collector runs and invalidates so
for(var i=0; i< 50000; i++){
garbage[i]= new Object();
}
 
try {
//getList() is no longer defined
alert("Media: "+ typeof media +" Media.getList(): "+typeof media.GetList);
 
//the right way
//var result = media.IDataSource.GetList(criteria, callback);
 
//does not work anymore since so falls out of scope and becomes invalid
//var result = media.GetList(criteria, callback);
}
catch (e) {
alert ("getImages: " + e);
}
}

Solution

Make sure that reusable service objects and their parents do not fall out of the scope. If they fall out of the scope, the garbage collector will clean them up.

91 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved