Page MenuHomePhabricator

Make AphrontWriteGuard disposal more durable
ClosedPublic

Authored by epriestley on May 14 2015, 5:14 PM.
Tags
None
Referenced Files
F15465394: D12841.id30889.diff
Wed, Apr 2, 6:08 PM
F15459480: D12841.id.diff
Mon, Mar 31, 1:20 PM
F15456197: D12841.id30885.diff
Sun, Mar 30, 7:47 AM
F15450385: D12841.id30889.diff
Fri, Mar 28, 3:25 PM
F15446655: D12841.id.diff
Thu, Mar 27, 7:40 PM
F15429059: D12841.id30885.diff
Mon, Mar 24, 12:14 AM
F15413559: D12841.id30889.diff
Wed, Mar 19, 7:39 PM
F15402046: D12841.diff
Mon, Mar 17, 8:19 PM
Subscribers

Details

Summary

Ref T8198. Currently, if you swap a write guard like this:

$write_guard->dispose();
$write_guard = new AphrontWriteGuard('callback');

...the second line does this:

  • Creates a new WriteGuard object.
  • Assigns it to self::$instance.
  • Invokes __destroy() on the old object.

At this point, we'll throw an exception, even though we disposed of the write guard properly.

Instead, flag write guard disposal explicitly to prevent this issue.

Test Plan

See next diff.

Diff Detail

Repository
rPHU libphutil
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Make AphrontWriteGuard disposal more durable.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: btrahan.
btrahan edited edge metadata.
This revision is now accepted and ready to land.May 14 2015, 5:23 PM
This revision was automatically updated to reflect the committed changes.