Return-Path: X-Original-To: apmail-incubator-callback-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D4AC09585 for ; Thu, 8 Dec 2011 07:52:09 +0000 (UTC) Received: (qmail 84751 invoked by uid 500); 8 Dec 2011 07:52:08 -0000 Delivered-To: apmail-incubator-callback-dev-archive@incubator.apache.org Received: (qmail 84725 invoked by uid 500); 8 Dec 2011 07:52:07 -0000 Mailing-List: contact callback-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-dev@incubator.apache.org Received: (qmail 84708 invoked by uid 99); 8 Dec 2011 07:52:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2011 07:52:05 +0000 X-ASF-Spam-Status: No, hits=-2001.2 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2011 07:52:04 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 1F9DA107093 for ; Thu, 8 Dec 2011 07:51:44 +0000 (UTC) Date: Thu, 8 Dec 2011 07:51:43 +0000 (UTC) From: "Brian LeRoux (Commented) (JIRA)" To: callback-dev@incubator.apache.org Message-ID: <545137977.52775.1323330704131.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <863880628.49570.1323271600161.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (CB-107) Possible socket leaking in CallbackServer MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13165074#comment-13165074 ] Brian LeRoux commented on CB-107: --------------------------------- Appears error thrown on 2787 is valid, file still open for writing. [1] For fun, I cranked it up to try writing every millisecond. Still works. [1] https://github.com/callback/callback-android/blob/master/framework/assets/js/file.js#L480-482 > Possible socket leaking in CallbackServer > ----------------------------------------- > > Key: CB-107 > URL: https://issues.apache.org/jira/browse/CB-107 > Project: Apache Callback > Issue Type: Bug > Components: Android > Affects Versions: 1.2.0 > Reporter: Simon MacDonald > Priority: Critical > > I think we may be leaking a socket in CallbackServer. On line 216 of the CallbackServer we create a new Socket but I can't see anywhere in CallbackServer where the Socket is closed. Over time this could cause the problem described below. The user is probably running into it much sooner than usual as he's making a file write every second. > Here is the original bug report from the Google Groups: > I'm trying to write approx every second to a file. This for writing a > geolocation to this file. > So I make a filewriter when I start tracking, then start a > watchposition en in the successfunction I write to this file. > In my first tests everything went well, but with some more intensive > testing we found out that after more than 900 points (or > filewritervar.write() callings) the app fails. In the logcat the next > error is vissible: > [code] > W/System.err(27919): java.net.SocketException: Too many open files > W/System.err(27919): at > org.apache.harmony.luni.platform.OSNetworkSystem.acceptSocketImpl(Native > Method) > W/System.err(27919): at > org.apache.harmony.luni.platform.OSNetworkSystem.accept(OSNetworkSystem.java: > 69) > W/System.err(27919): at > org.apache.harmony.luni.net.PlainSocketImpl.accept(PlainSocketImpl.java: > 126) > W/System.err(27919): at > java.net.ServerSocket.implAccept(ServerSocket.java:281) > W/System.err(27919): at > java.net.ServerSocket.accept(ServerSocket.java:165) > W/System.err(27919): at > com.phonegap.CallbackServer.run(CallbackServer.java:216) > W/System.err(27919): at java.lang.Thread.run(Thread.java:1102) > [/code] > I looked in the FileUtils.java file and the filestream is everytime > correctly closed, so I dont see the problem. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira