To migrate your system component, follow these steps:
- Migrate the component manifest
- Add to the component topology
- Migrate component features
- Verify the migrated component
Migrate the component manifest
Create a minimal CML file and configure it with GN so that it gets compiled and installed in your package.
Determine where your CMX file is located in the source tree (for example,
fonts.cmx
). Create a file in the same directory that has the same filename but with a.cml
extension, with the following contents:// fonts.cml { include: [ // Enable system logging "syslog/client.shard.cml", ], }
Find the build rule that defines your component. Normally, this is a
fuchsia_component
rule. For example, see the fontsBUILD.gn
.fuchsia_component("fonts") { manifest = "meta/fonts.cmx" deps = [ ":font_provider" ] }
Update the
manifest
element of the associatedfuchsia_component
rule to point to your new.cml
file instead:fuchsia_component("fonts") { manifest = "meta/fonts.cml" deps = [ ":font_provider" ] }
Adding the executable
Add the program
section of your CML file along with the
appropriate runner declaration.
// fonts.cmx
{
"include": [
"syslog/client.shard.cmx"
],
"program": {
"binary": "bin/font_provider"
},
...
}
// fonts.cml
{
include: [
// Enable system logging
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/font_provider",
},
}
Declaring required services
Add use
declarations to your CML file. These are the
approximate equivalent of the services
list in CMX.
// fonts.cmx
{
"include": [
"syslog/client.shard.cmx"
],
"program": {
"binary": "bin/font_provider"
},
"sandbox": {
"services": [
"fuchsia.logger.LogSink",
"fuchsia.pkg.FontResolver"
]
...
}
}
Convert each element of the services
list to a use
declaration for the
corresponding service protocol
.
// fonts.cml
{
include: [
// Enable system logging
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/font_provider",
},
use: [
{
protocol: [ "fuchsia.pkg.FontResolver" ],
},
],
}
Exposing available services
In Components v1, you typically declare information
about services exposed by a component in a
sysmgr configuration file. These files are referenced by
config_data
targets in the build, and specify mappings of services to
components in the sys
environment
.
Identify all service mappings, if any, for your component. You can use CodeSearch to find service mappings. Here is a sample search.
// services.config { "services": { ... "fuchsia.fonts.Provider": "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cmx", ... } }
For each service mapping, add an
expose
declaration and a correspondingcapabilities
entry with the serviceprotocol
.// fonts.cml { include: [ // Enable system logging "syslog/client.shard.cml", ], program: { runner: "elf", binary: "bin/font_provider", }, capabilities: [ { protocol: [ "fuchsia.fonts.Provider" ], }, ], use: [ { protocol: [ "fuchsia.pkg.FontResolver" ], }, ], expose: [ { protocol: "fuchsia.fonts.Provider", from: "self", }, ], }
Build your updated package:
fx build
Add the new component
Now you're ready to add your new component to the v2 component topology. This defines the relationship between your component and the rest of the system.
Take another look at any sysmgr configuration file(s) that defines service mappings to your component, which you identified while migrating the component manifest. The steps below refer to the collection of all these services as your component’s "exposed services".
// services.config
{
"services": {
...
"fuchsia.fonts.Provider": "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cmx",
...
}
}
Add the component to core
- Add a core realm shard: Your component is not present in all products (eg. maybe it is present on Workstation, but not terminal). Using a core realm shard allows the component to be safely excluded where it isn't available.
- Add directly to core: Your component is present on all
product and test build configurations. In this case you can add the
component directly to
core.cml
.
Add a core realm shard
Create a manifest shard. A manifest shard uses generally the syntax as a manifest, but may reference objects that don't exist within the manifest itself. In this case we reference the
session-manager
child which is not defined here, but we know is defined incore
's manifest.// component.core_shard.cml { children: [ { name: "font_provider", url: "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cm", }, ], offer: [ { protocol: "fuchsia.fonts.Provider", from: "#font_provider", to: [ "#session-manager" ], }, ], }
Create a target in your
BUILD.gn
that defines thecore_shard
.# font_provider/BUILD.gn import("//src/sys/core/build/core_shard.gni") core_shard("font_provider_shard") { shard_file = "component.core_shard.cml" }
Add the core realm shard to the appropriate products. For example, you can add the component to the Workstation product by modifying
//products/workstation_eng.gni
by adding the build target path to thecore_realm_shards
array. If your component is present on all products that derive from core and you are adding it via a shard, modify//products/core.gni
.# //products/workstation_eng.gni ... core_realm_shards += [ ... "//path/to/font_provider:font_provider_shard", ] ...
Add directly to core
Add your component as a child instance of the core.cml
component, and offer its exposed services to dependent components. You need to choose a name
for your component instance and identify its component URL (you should be able
to get this from the config mapping).
// core.cml
{
children: [
...
{
name: "font_provider",
url: "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cm",
},
],
offer: [
...
{
protocol: "fuchsia.fonts.Provider",
from: "#font_provider",
to: [ "#session-manager" ],
},
],
}
Make your component's services available to v1 components
It is very common for there to be components in the v1 sys
realm that depend
on your component's exposed services. Make your component's services available
to the v1 sys
realm by adding a declaration like the following to your core
realm shard, or if you've added your component directly to core
, add the
declaration to appmgr.core_shard.cml
.
// appmgr.core_shard.cml / component.core_shard.cml
{
use: [
{
protocol: "fuchsia.fonts.FontProvider",
from: "#font_provider",
},
],
}
Offer services to your component
To work properly, your component must be offered all services that appear in its
use
declarations. These services may be provided by v1 or v2
components. Look in the sysmgr config files and core.cml
to find the
originating components (example search).
There are three possible cases:
- v1 component provides service: The provider of the service is a v1 component.
- v2 component in
core.cml
provides service: The provider of the service is a v2 component that's a child ofcore.cml
. - The provider of the service is a v2 component that's not child of
core.cml
. If this is the case, reach out to component-framework-dev for assistance.
v1 component provides service
You’ll reach this case if a mapping for the service exists in a sysmgr config file. To make the service available to your component, do the following.
Make sure a declaration like the following is present in
appmgr.core_shard.cml
(if the service is configured in fuchsia.git) or your core realm shard (if it's configured outside fuchsia.git):// appmgr.core_shard.cml / component.core_shard.cml { capabilities: [ ... { protocol: "fuchsia.pkg.FontResolver" }, ... ], }
Add the following to your component's core realm shard or
appmgr.core_shard.cml
:// appmgr.core_shard.cml / component.core_shard.cml { offer: [ ... { protocol: "fuchsia.pkg.FontResolver", from: "self", to: [ "#font_provider" ], }, ... ], }
v2 component in core.cml provides service
Route the service from the component in core
that exposes it to your component
in core.cml
:
// core.cml
{
offer: [
...
{
protocol: [ "fuchsia.pkg.FontResolver" ],
from: "#font_resolver",
to: [ "#font_provider" ],
},
...
],
}
Resolve dependency cycles
In Components v1, appmgr
represents a collection of multiple components with
many capabilities. This increases the chance that a v2 component routes multiple
capabilities into and out of appmgr
for a given component. Components that
both offer services to appmgr
and consume services offered by appmgr
create
a dependency cycle that you may need to resolve during the migration.
Strong dependency cycles were found. Break the cycle by removing a dependency or
marking an offer as weak. Cycles: { { ... }, { ... } }
To avoid build-time errors resulting from dependency cycles, apply the
weak_for_migration
tag to one of the capability routes. For example:
// core.cml / component.core_shard.cml
{
offer: [
{
protocol: [ "fuchsia.pkg.FontResolver" ],
from: "#appmgr",
to: [ "#font_provider" ],
dependency: "weak_for_migration",
},
{
protocol: "fuchsia.fonts.Provider",
from: "#font_provider",
to: [ "#appmgr" ],
},
]
}
You can apply weak_for_migration
to either capability in a dependency cycle.
Determine which side is most appropriate for your component. In most cases, the
convention is to apply weak_for_migration
on the capability offered from
appmgr
until everything is migrated out of Components v1.
Remove sysmgr configuration entries
Before you test your component, remove the service mappings in the sysmgr configuration files you identified previously.
Without this step, sysmgr will report errors attempting to load services from
your v1 component instead of using the new capabilities routed to it through
core.cml
.
// services.config
{
"services": {
...
// Delete these lines
"fuchsia.fonts.Provider": "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cmx",
...
}
}
Considerations for out-of-tree components
This section covers the tactical considerations of performing a soft migration from using sysmgr configs to core shards when products defined outside fuchsia.git ("out-of-tree" or "OOT") use your component. This type of migration requires special consideration because it is not possible to change both repositories simulateneously. Some of this section duplicates some other content in this guide to avoid needing to jump back and forth. Follow the five steps below to complete the soft migration.
Define an empty core shard
Define an empty core shard by creating a file with an empty object. Note this means that the file itself is not empty.
// font_provider/meta/component.core_shard.cml { }
Then define this as a core shard build target.
# font_provider/BUILD.gn import("//src/sys/core/build/core_shard.gni") core_shard("font_provider_shard") { shard_file = "meta/component.core_shard.cml" }
Update OOT products to depend on new shard
In the OOT repository, update the product definitions to depend on the new shard in fuchsia.git.
# //vendor/products/product.gni core_realm_shards += [ "//path/to/font_provider:font_provider_shard" ]
Populate the core shard and empty out the sysmgr config
This step is effectively the swap operation where products will start to use the v2 component and stop using the v1 component.
First, populate the core shard created in the first step.
// font_provider/meta/component.core_shard.cml { children: [ { name: "font_provider", url: "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cm", }, ], // if appmgr components use this protocol use: [ { protocol: "fuchsia.fonts.Provider", from: "#font_provider", }, ], offer: [ { protocol: "fuchsia.logger.LogSink", from: "parent", to: [ "#font_provider" ], }, { protocol: "fuchsia.fonts.Provider", from: "#font_provider", to: [ "#session-manager" ], }, ], }
Now remove any entries from sysmgr config files where the v1 component appeared. If your component had its own sysmgr config this means the config file will now contain an empty JSON object.
// font_provider/config/services.config { }
Update any fuchsia.git products so they depend on the core shard. The procedure is the same as for OOT products, except make the changes to the product definitions in fuchsia.git.
If your component's sysmgr config was specific to your component, remove any dependencies that fuchsia.git products have on that sysmgr config. If the sysmgr config has a build target called
//path/to/font_provider:sysmgr_config
then an effective way to locate these dependencies is searching the codebase for "font_provider:sysmgr_config" using CodeSearch.Remove OOT dependencies on the v1 sysmgr config
If your component's sysmgr service config was part of a larger sysmgr config file you can skip this section. Otherwise, remove the dependencies on your component's dedicated v1 sysmgr config. This dependency is expressed as an addition to the
base_package_labels
in a product's .gni. If the sysmgr config has a build target called//path/to/font_provider:sysmgr_config
then an effective way to locate these dependencies is searching the codebase for "font_provider:sysmgr_config" using CodeSearch.Remove any empty sysmgr config files and build targets
If the sysmgr config file that contained your component's entry or entries is empty, delete the build target for the config file. The build target might look something like the following.
# //path/to/font_provider/BUILD.gn { ... config_data("sysmgr_config") { sources = [ "config/services.config" ] for_pkg = "sysmgr" ... }
In the same change, delete the sysmgr config file itself, for example
//path/to/font_provider/config/services.config
.
Migrate component features
Explore the following sections for additional migration guidance on specific features your system components may support:
Launching components
Components v1 supports launching components explicitly using their component
URL with fx shell run
. This instantiates the component in the common sys
environment
where it has full access to the capabilities
available there.
In Components v2, system components interact through the capabilities that are explicitly routed to them. This means that where a component is instantiated within the component topology affects what a component can accomplish.
If your component is currently invoked using fx run
or fx shell
,
consider migrating the functionality to a plugin for ffx
.
Shell binaries
Your project may contain a fuchsia_shell_package()
build target designed to
execute in a shell environment. Many of these packages also contain a CMX file
to support invoking the binary as a v1 component. When
routing your services to the sys
environment,
include any services required by shell binaries.
Shell binaries are run in the sys
environment
, and
have access to all the capabilities provided there. Capabilities are not defined
by the CMX manifest file unless shell binaries are invoked as a component using
the fx shell run
command.
When working with shell binaries, consider the following:
- If you only need access to the binary through a shell interface, remove the unused CMX file entirely. Do not replace it with a corresponding CML file.
- If you need to access the binary from somewhere else in the v2 component topology (such as tests), migrate the functionality into a new v2 component instead.
Verify the migrated component
Verify that your migrated component and its dependencies behave as expected using Components v2.
Build the target for your package:
fx build
Manually verify your component's behavior. You can use the complete set of
ffx component
tools to interact with your component and its capabilities at runtime. For additional details on running components in the v2 component topology, see Run components.
If your component or one of the components that depends on it isn't working correctly, try following the advice in Troubleshooting components.