vote up 6 vote down star

Since there is no finally clause to the try-catch block in MATLAB, I find myself writing lots of code like the following:

fid = fopen(filename);
if fid==-1
    error('Couldn''t open file');
end
try
   line = getl(fid);
catch ME
   fclose(fid);
   rethrow ME;
end
fclose(fid);

I find having the fclose function in two places ugly and error prone.

Is there a better way for doing this?

flag

67% accept rate
1  
This is just a minor point, but I would suggest not using the variable name "line" in your code. It could end up causing some confusion since there is already a built-in function called LINE. – gnovice Jul 8 at 14:16

1 Answer

vote up 9 vote down check

I would suggest checking out ONCLEANUP objects. They allow you to automatically run code on exit from a function (more specifically, when the ONCLEANUP object is cleared from memory). Loren from The MathWorks discusses this in one of her blog posts here. If you place your above code in a function, it might look something like this:

function data = load_line(filename)
  data = [];
  fid = fopen(filename);
  if fid == -1
      error('Couldn''t open file');
  end
  c = onCleanup(@()fclose(fid));
  data = getl(fid);
end

Even if the call to GETL throws an exception, the ONCLEANUP object will still be cleared from memory on return from the function load_line, thus ensuring the file gets closed.

link|flag
Thanks. That's exactly what I was looking for. I've done some more reading around the onCleanup and new style classes in Matlab in general, and it seems to me that now with handle classes you can practise proper RAII in Matlab which is great. – snth Jul 10 at 6:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.