Page MenuHomePhabricator

Reduce the amount of boilerplate that implementing FerretInterface requires
ClosedPublic

Authored by epriestley on Sep 7 2017, 6:20 PM.
Tags
None
Referenced Files
F13088858: D18559.diff
Thu, Apr 25, 1:35 AM
Unknown Object (File)
Tue, Apr 23, 6:55 AM
Unknown Object (File)
Sun, Apr 21, 5:06 PM
Unknown Object (File)
Fri, Apr 19, 2:39 AM
Unknown Object (File)
Fri, Apr 19, 2:39 AM
Unknown Object (File)
Fri, Apr 19, 2:39 AM
Unknown Object (File)
Tue, Apr 16, 6:34 PM
Unknown Object (File)
Thu, Apr 11, 9:11 AM
Subscribers
None

Details

Summary

See brief discussion in D18554. All the index tables are the same for every application (and, at this point, seem unlikely to change) and we never actually pass these objects around (they're only used internally).

In some other cases (like Transactions) not every application has the same tables (for example, Differential has extra field for inline comments), and/or we pass the objects around (lots of stuff uses $xactions directly).

However, in this case, and in Edges, we don't interact with any representation of the database state directly in much of the code, and it doesn't change from application to application.

Just automatically define document, field, and ngram tables for anything which implements FerretInterface. This makes the query and index logic a tiny bit messier but lets us delete a ton of boilerplate classes.

Test Plan

Indexed objects, searched for objects. Same results as before with much less code. Ran bin/storage upgrade, got a clean bill of health.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable