Page MenuHomePhabricator

Don't compute intraline diffs if the input fails a coarse check for being huge
ClosedPublic

Authored by epriestley on Oct 7 2016, 2:32 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 25, 1:44 AM
Unknown Object (File)
Fri, Apr 19, 5:27 PM
Unknown Object (File)
Sun, Mar 31, 12:01 PM
Unknown Object (File)
Mar 5 2024, 1:23 PM
Unknown Object (File)
Feb 29 2024, 3:42 PM
Unknown Object (File)
Jan 5 2024, 8:46 PM
Unknown Object (File)
Jan 5 2024, 8:18 PM
Unknown Object (File)
Dec 27 2023, 9:27 AM
Subscribers
None

Details

Summary

Fixes T11744. Because intraline diffs are expensive to generate, we already bail out and decline to generate them for very long lines.

However, we currently split the inputs into lists of characters first, then check how long they are and make a decision to bail. For huge inputs (e.g., 1MB+), this is too late: just splitting them has a large CPU/RAM cost.

(These inputs are rare in normal source, but can appear in, e.g., JSON files written without newlines.)

Instead, add an extra "are the inputs really huge?" check first, and bail early if they are.

Test Plan
  • Generated a 1MB "change a file full of Q to a file full of R" diff.
  • Before change: purged changeset cache; took about 7 seconds to load.
  • After change: purged changeset cache; took about 1 second to load.
  • Viewed some normal diffs to make sure intraline edits still displayed correctly.

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable