文件描述符泄漏示例?

有没有好的例子来演示Android中的文件描述符泄漏?我在某处读到,如果我们不关闭流,就会发生这种情况,或者我找不到任何好的参考示例来证明它。FileInputStreamFileOutputStream

请分享一些博客/代码片段。谢谢!


答案 1

由于Dalvik的FileInputStream垃圾回收时会自行关闭(对于OpenJDK / Oracle也是如此),因此实际泄漏文件描述符的情况比您想象的要少。当然,文件描述符将被“泄漏”,直到GC运行,因此根据您的程序,可能需要一段时间才能回收它们。

要完成更永久的泄漏,您必须通过在内存中的某个位置保留对流的引用来防止对流进行垃圾回收。

下面是一个简短的示例,它每 1 秒加载一个属性文件,并跟踪每次更改时:

public class StreamLeak {

    /**
     * A revision of the properties.
     */
    public static class Revision {

        final ZonedDateTime time = ZonedDateTime.now();
        final PropertiesFile file;

        Revision(PropertiesFile file) {
            this.file = file;
        }
    }

    /*
     * Container for {@link Properties} that implements lazy loading.
     */
    public static class PropertiesFile {

        private final InputStream stream;
        private Properties properties;

        PropertiesFile(InputStream stream) {
            this.stream = stream;
        }

        Properties getProperties() {
            if(this.properties == null) {
                properties = new Properties();
                try {
                    properties.load(stream);
                } catch(IOException e) {
                    e.printStackTrace();
                }
            }
            return properties;
        }

        @Override
        public boolean equals(Object o) {
            if(o instanceof PropertiesFile) {
                return ((PropertiesFile)o).getProperties().equals(getProperties());
            }
            return false;
        }
    }

    public static void main(String[] args) throws IOException, InterruptedException {
        URL url = new URL(args[0]);
        LinkedList<Revision> revisions = new LinkedList<>();
        // Loop indefinitely
        while(true) {
            // Load the file
            PropertiesFile pf = new PropertiesFile(url.openStream());
            // See if the file has changed
            if(revisions.isEmpty() || !revisions.getLast().file.equals(pf)) {
                // Store the new revision
                revisions.add(new Revision(pf));
                System.out.println(url.toString() + " has changed, total revisions: " + revisions.size());
            }
            Thread.sleep(1000);
        }
    }
}

由于延迟加载,我们将 InputStream 保留在 PropertiesFile 中,每当我们创建新修订版时都会保留该配置文件,并且由于我们从未关闭流,因此我们将在此处泄漏文件描述符。

现在,当程序终止时,这些打开的文件描述符将作系统关闭,但只要程序正在运行,它就会继续泄漏文件描述符,如使用lsof所示:

$ lsof | grep pf.properties | head -n 3
java    6938   raniz   48r      REG    252,0    0    262694 /tmp/pf.properties
java    6938   raniz   49r      REG    252,0    0    262694 /tmp/pf.properties
java    6938   raniz   50r      REG    252,0    0    262694 /tmp/pf.properties
$ lsof | grep pf.properties | wc -l    
431

如果我们强制运行GC,我们可以看到其中大多数都返回:

$ jcmd 6938 GC.run
6938:
Command executed successfully
$ lsof | grep pf.properties | wc -l
2

其余两个描述符是存储在修订版s 中的描述符。

我在我的Ubuntu机器上运行了这个,但如果在Android上运行,输出看起来会相似。


答案 2
InputStream in;
try {
    in = new BufferedInputStream(socket.getInputStream());

    // Do your stuff with the input stream
} catch (Exception e) {
    // Handle your exception
} finally {
    // Close the stream here
    if (in != null) {
        try {
            in.close();
        } catch (IOException e) {
            Log.e(TAG, "Unable to close stream: " + e);
        }
    }
}

这个想法是关闭块中的文件描述符。无论成功完成还是发生异常,文件描述符都将正确关闭。finally

现在,如果你正在寻找一些东西来演示如何不正确地做到这一点,只需将此代码包装在一个循环中,注释掉该行,并在你的捕获块中放入一个,这样当它爆炸时,你就会打破你的无限循环。while(1)in.close()break;


推荐