September 11, 2024

Fb for iOS (FBiOS) is the oldest cell codebase at Meta. For the reason that app was rewritten in 2012, it has been labored on by 1000’s of engineers and shipped to billions of customers, and it could actually assist tons of of engineers iterating on it at a time.

After years of iteration, the Fb codebase doesn’t resemble a typical iOS codebase:

  • It’s filled with C++, Goal-C(++), and Swift.
  • It has dozens of dynamically loaded libraries (dylibs), and so many courses that they’ll’t be loaded into Xcode without delay.
  • There may be virtually zero uncooked utilization of Apple’s SDK — every little thing has been wrapped or changed by an in-house abstraction.
  • The app makes heavy use of code era, spurred by Buck, our customized construct system.
  • With out heavy caching from our construct system, engineers must spend a whole workday ready for the app to construct.

FBiOS was by no means deliberately architected this manner. The app’s codebase displays 10 years of evolution, spurred by technical choices essential to assist the rising variety of engineers engaged on the app, its stability, and, above all, the consumer expertise.

Now, to rejoice the codebase’s 10-year anniversary, we’re shedding some gentle on the technical choices behind this evolution, in addition to their historic context.

2014: Establishing our personal cell frameworks

Two years after Meta launched the native rewrite of the Fb app, Information Feed’s codebase started to have reliability points. On the time, Information Feed’s knowledge fashions had been backed by Apple’s default framework for managing knowledge fashions: Core Data. Objects in Core Knowledge are mutable, and that didn’t lend itself properly to Information Feed’s multithreaded structure. To make issues worse, Information Feed utilized bidirectional knowledge stream, stemming from its use of Apple’s de facto design sample for Cocoa apps: Model View Controller.

Finally, this design exacerbated the creation of nondeterministic code that was very tough to debug or reproduce bugs. It was clear that this structure was not sustainable and it was time to rethink it.

Whereas contemplating new designs, one engineer investigated React, Fb’s (open supply) UI framework, which was turning into fairly in style within the Javascript group. React’s declarative design abstracted away the difficult crucial code that prompted points in Feed (on net), and leveraged a one-way knowledge stream, which made the code a lot simpler to motive about. These traits appeared properly fitted to the issues Information Feed was going through. There was just one downside.

There was no declarative UI in Apple’s SDK. 

Swift wouldn’t be announced for a few months, and SwiftUI (Apple’s declarative UI framework) wouldn’t be introduced till 2019. If Information Feed wished to have a declarative UI, the group must construct a brand new UI framework. 

Finally, that’s what they did.

After spending a couple of months constructing and migrating Information Feed to run on a brand new declarative UI and a brand new knowledge mannequin, FBiOS noticed a 50 % efficiency enchancment. A number of months later, they open-sourced their React-inspired UI framework for cell, ComponentKit

To today, ComponentKit remains to be the de facto alternative for constructing native UIs in Fb. It has supplied numerous efficiency enhancements to the app by way of view reuse swimming pools, view flattening, and background format computation. It additionally impressed its Android counterpart, Litho, and SwiftUI.

Finally, the selection to exchange the UI and knowledge layer with customized infra was a trade-off. To attain a pleasant consumer expertise that might be reliably maintained, new staff must shelve their business information of Apple APIs to study the customized in-house infra. 

This wouldn’t be the final time FBiOS must decide that balanced finish consumer expertise with developer expertise and pace. Going into 2015, the app’s success would set off what we confer with as a characteristic explosion. And that offered its personal set of distinctive challenges.

2015: An architectural inflection level

By 2015, Meta had doubled down on its “Mobile First” mantra, and the FBiOS codebase noticed a meteoric rise within the variety of every day contributors. As increasingly merchandise had been built-in into the app, its launch time started to degrade, and folks started to note. Towards the top of 2015, startup efficiency was so gradual (almost 30 seconds!) that it risked being killed by the cellphone’s OS.

Upon investigation, it was clear that there have been many contributing elements to degraded startup efficiency. For the sake of brevity, we’ll focus solely on those that had a long-term impact on the app’s structure:

  • The app’s ‘pre-main’ time was rising at an unbounded charge, because the app’s dimension grew with every product.
  • The app’s ‘module’ system gave every product ungoverned entry to all of the app’s resourcing. This led to a tragedy of the commons issue as every product leveraged its ‘hook’ into startup to carry out computationally costly operations in order that preliminary navigation to that product can be snappy.

The modifications that had been wanted to mitigate and enhance startup would essentially alter the best way product engineers wrote code for FBiOS.

2016: Dylibs and modularity

In response to Apple’s wiki about improving launch times, plenty of operations should be carried out earlier than an app’s ‘essential’ perform may be referred to as. Typically, the extra code an app has, the longer this may take.

Whereas ‘pre-main’ contributed solely a small subset of the 30 seconds being spent throughout launch, it was a selected concern as a result of it could proceed to develop at an unbounded charge as FBiOS continued to amass new options.

To assist mitigate the unbounded progress of the app’s launch time, our engineers started to maneuver giant swaths of product code right into a lazily loaded container often known as a dynamic library (dylib). When code is moved right into a dynamically loaded library, it isn’t required to load earlier than the app’s essential() perform.

Initially, the FBiOS dylib construction seemed like this:

Facebook iOS

Two product dylibs (FBCamera and NotOnStartup) had been created, and a 3rd dylib (FBShared) was used to share code between the assorted dylibs and the principle app’s binary.

The dylib resolution labored superbly. FBiOS was in a position to curb the unbounded progress of the app’s startup time. Because the years glided by, most code would find yourself in a dylib in order that startup efficiency stayed quick and was unaffected by the fixed fluctuation of added or eliminated merchandise within the app.

The addition of dylibs triggered a psychological shift in the best way Meta’s product engineers wrote code. With the addition of dylibs, runtime APIs like NSClassFromString() risked runtime failures as a result of the required class lived in unloaded dylibs. Since lots of the FBiOS core abstractions had been constructed on iterating by means of all of the courses in reminiscence, FBiOS needed to rethink what number of of its core programs labored.

Apart from the runtime failures, dylibs additionally launched a brand new class of linker errors. Within the occasion the code in Fb (the startup set) referenced code in a dylib, engineers would see a linker error like this:

Undefined symbols for structure arm64:
  "_OBJC_CLASS_$_SomeClass", referenced from:
      objc-class-ref in libFBSomeLibrary-9032370.a(FBSomeFile.mm.o)

To repair this, engineers had been required to wrap their code with a particular perform that would load a dylib if vital:

Instantly:

int essential() 
  DoSomething(context);


Would appear to be this:

int essential() 
  FBCallFunctionInDylib(
    NotOnStatupFramework,
    DoSomething,
    context
  );


The answer labored, however had fairly a couple of code smells:

  • The app-specific dylib enum was hard-coded into numerous callsites. All apps at Meta needed to share a dylib enum, and it was the reader’s accountability to find out whether or not that dylib was utilized by the app the code was working in.
  • If the fallacious dylib enum was used, the code would fail, however solely at runtime. Given the sheer quantity of code and options within the app, this late sign led to a variety of frustration throughout growth.

On high of all that, our solely system to safeguard towards the introduction of those calls throughout startup was runtime-based, and lots of releases had been delayed whereas last-minute regressions had been launched into the app.

Finally, the dylib optimization curbed the unbounded progress of the app’s launch time, however it signified an enormous inflection level in the best way the app was architected. FBiOS engineers would spend the subsequent few years re-architecting the app to easy a number of the tough edges launched by the dylibs, and we (ultimately) shipped an app structure that was extra strong than ever earlier than.

2017: Rethinking the FBiOS structure

With the introduction of dylibs, a couple of key parts of FBiOS needed to be rethought:

  • The ‘module registration system’ may not be runtime-based.
  • Engineers wanted a approach to know whether or not any codepath throughout startup may set off a dylib load.

To deal with these points, FBiOS turned to Meta’s open supply construct system, Buck.

Inside Buck, every ‘goal’ (app, dylib, library, and so forth.) is said with some configuration, like so:

apple_binary(
  identify = "Fb",
  ...
  deps = [
    ":NotOnStartup#shared",
    ":FBCamera#shared",
  ],
)

apple_library(
  identify = "NotOnStartup",
  srcs = [
    "SomeFile.mm",
  ],
  labels = ["special_label"],
  deps = [
    ":PokesModule",
    ...
  ],
)

Every ‘goal’ lists all data wanted to construct it (dependencies, compiler flags, sources, and so forth.), and when ‘buck construct’ known as, it builds all this data right into a graph that may be queried.

$ buck question “deps(:Fb)”
> :NotOnStartup
> :FBCamera

$ buck question “attrfilter(labels, special_label, deps(:Fb))”
> :NotOnStartup

Utilizing this core idea (and a few particular sauce), FBiOS started to provide some buck queries that would generate a holistic view of the courses and capabilities within the app throughout construct. This data can be the constructing block of the app’s subsequent era of structure.

2018: The proliferation of generated code

Now that FBiOS was in a position to leverage Buck to question for details about code within the dependency, it may create a mapping of “perform/courses -> dylibs” that might be generated on the fly.


  "capabilities": 
    "DoSomething": Dylib.NotOnStartup,
    ...
  ,
  "courses": 
    "FBSomeClass": Dylib.SomeOtherOne
  


Utilizing that mapping as enter, FBiOS used it to generate code that abstracted away the dylib enum from callsites:

static std::unordered_map<const char *, Dylib> functionToDylib 
   "DoSomething", Dylib.NotOnStartup ,
   "FBSomeClass", Dylib.SomeOtherOne ,
  ...
;

Utilizing code era was interesting for a couple of causes:

  • As a result of the code was regenerated primarily based on native enter, there was nothing to examine in, and there have been no extra merge conflicts! Provided that the engineering physique of FBiOS may double yearly, this was a giant growth effectivity win.
  • FBCallFunctionInDylib no-longer required an app-specific dylib (and thus might be renamed to ‘FBCallFunction’). As a substitute, the decision would learn from static mapping generated for every software throughout construct.

Combining Buck question with code era proved to be so profitable that FBiOS used it as bedrock for a brand new plugin system, which ultimately changed the runtime-based app-module system.

Transferring sign to the left

With the brand new Buck-powered plugin system. FBiOS was in a position to change most runtime failures with build-time warnings by migrating bits of infra to a plugin-based structure.

When FBiOS is constructed, Buck can produce a graph to indicate the placement of all of the plugins within the app, like so:

Facebook iOS

From this vantage level, the plugin system can floor build-time errors for engineers to warn: 

  • “Plugin D, E may set off a load of a dylib. This isn’t allowed, because the caller of those plugins lives within the app’s startup path.”
  • “There isn’t a plugin for rendering Profiles discovered within the app … which means navigating to that display is not going to work.”
  • “There are two plugins for rendering Teams (Plugin A, Plugin B). Certainly one of them needs to be eliminated.”

With the previous app module system, these errors can be “lazy” runtime assertions. Now, engineers are assured that when FBiOS is constructed efficiently, it gained’t fail due to lacking performance, dylibs loading throughout app startup, or invariants within the module runtime system.

The price of code era

Whereas migrating FBiOS to a plugin system has improved the app’s reliability, supplied sooner alerts to engineers, and made it attainable for the app to trivially share code with our different cell apps, it got here at a value:

  • Plugin errors will not be on Stack Overflow and may be complicated to debug.
  • A plugin system primarily based on code era and Buck is a far cry from conventional iOS growth. 
  • Plugins introduce a layer of indirection to the codebase. The place most apps would have a registry file with all options, these are generated in FBiOS and may be surprisingly tough to search out.

There isn’t a doubt that plugins led FBiOS farther away from idiomatic iOS growth, however the trade-offs appear to be value it. Our engineers can change code utilized in many apps at Meta and ensure that if the plugin system is completely satisfied, no app ought to crash due to lacking performance in a not often examined codepath. Groups like Information Feed and Teams can construct an extension level for plugins and ensure that product groups can combine into their floor with out touching the core code.

2020: Swift and language structure

Whereas most of this text has centered on architectural modifications stemming from scale points within the Fb app, modifications in Apple’s SDK have additionally compelled FBiOS to rethink a few of its architectural choices.

In 2020, FBiOS started to see an increase within the variety of Swift-only APIs from Apple and a rising sentiment for extra Swift within the codebase. It was lastly time to reconcile with the truth that Swift was an inevitable tenant in FB apps. 

Traditionally, FBiOS had used C++ as a lever to construct abstraction, which saved on code dimension due to C++’s zero overhead principle. However C++ doesn’t interop with Swift (but). For most FBiOS APIs (like ComponentKit), some form of shim must be created to make use of in Swift — creating code bloat.

Right here’s a diagram outlining the problems within the codebase:

Facebook iOS

With this in thoughts, we started to kind a language technique about when and the place numerous bits of code needs to be used:

Facebook iOS

Finally, the FBiOS group started to advise that product-facing APIs/code mustn’t include C++ in order that we may freely use Swift and future Swift APIs from Apple. Utilizing plugins, FBiOS may summary away C++ implementations in order that they nonetheless powered the app however had been hidden from most engineers.

Such a workstream signified a little bit of shift in the best way FBiOS engineers considered constructing abstractions. Since 2014, a number of the largest elements in framework constructing have been contributions to app dimension and expressiveness (which is why ComponentKit selected Goal-C++ over Goal-C).

The addition of Swift was the primary time these would take a backseat to developer effectivity, and we count on to see extra of that sooner or later.

2022: The journey is 1 %  completed

Since 2014, FBiOS structure has shifted fairly a bit:

  • It launched numerous in-house abstractions, like ComponentKit and GraphQL.
  • It makes use of dylibs to maintain ‘pre-main’ instances minimal and contribute to a blazing-fast app startup.
  • It launched a plugin system (powered by Buck) in order that dylibs are abstracted away from engineers, and so code is definitely shareable between apps.
  • It launched language pointers about when and the place numerous languages needs to be used and started to shift the codebase to replicate these language pointers.

In the meantime, Apple has launched thrilling enhancements to their telephones, OS, and SDK:

  • Their new telephones are quick. The price of loading is far smaller than it was earlier than.
  • OS enhancements like dyld3 and chain fixups present software program to make code loading even sooner.
  • They’ve launched SwiftUI,  a declarative API for UI that shares a variety of ideas with ComponentKit.
  • They’ve supplied improved SDKs, in addition to APIs (like interruptible animations in iOS8) that we may have constructed customized frameworks for.

As extra experiences are shared throughout Fb, Messenger, Instagram, and WhatsApp, FBiOS is revisiting all these optimizations to see the place it could actually transfer nearer to platform orthodoxy. Finally, we’ve seen that the simplest methods to share code are to make use of one thing that the app offers you totally free or construct one thing that’s nearly dependency-free and may combine between all of the apps.

We’ll see you again right here in 2032 for the recap of the codebase’s 20-year anniversary!