Closing a C++ FILE pointer which uses a file descriptor from Java

508 Views Asked by At

When using a file descriptor in native code, which has been obtained from a ParcelFileDescriptor, should the native side use fclose after an fdopen?

The documentation states that the ParcelaleFileDescriptor instance owns the file descriptor, and it should be closed through it. I don't know the impact of closing the native FILE pointer before closing the file descriptor.

Pseudocode:

1) JAVA:
    // Obtain the file descriptor and pass it to the native method
    ParcelFileDescriptor descriptor  = contentResolver.openFileDescriptor(uri, "w");
    nativeMethod(descriptor.getFD());

2) C++:
    void nativeMethod(const int fd)
    {
        FILE* fp = fdopen(fd, "wb");    

        ..... // do something

        fclose(fp); // Close the file pointer <-- Is this valid?
    }

3) JAVA:
    // Back from the native method, close the file descriptor
    descriptor.close();
0

There are 0 best solutions below