-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement: import filtering #543
Comments
Would a new filter flag for imports be less prone to the confusion you described in the "Rational restricrions"? |
Thanks for the detailed explanation, it makes it quite clear why this will be useful. No objections at all from my side to the principle of the feature or the proposed restriction removal. |
What would the semantics of this be? |
I updated the rationale section a bit to try to make it clearer following an offline discussion with @marc-hb . |
I wish this comment had been at the top so I had read it first. I don't know if a new Please let me rephrase and try to summarize too and correct me. After a lot of time getting familiar again with these features I came to the same conclusion: I think what is desired here could be called "import filtering". Correct? Up to now filtering has allowed the distribution of manifests that include private ("opt-in") repos, however the current implementation still forces the disclosure of the location and name of ALL repos; active or not. Hence the desire to filter not just "leaf" repos but higher level imports too. HOWEVER the current filter resolution is based on a complete view of the entire, resolved manifest that includes ALL imports! So no surprise a paradox arises! So the proposal in the description is to add a new, first and dynamic import filtering pass performed at import time. Then keep the older and now second repo filtering pass working after imports as before with just some additional sanity checks added. This is effectively overloading the |
The current proposal seems to gloss over the fact that a "project" combines two very different things in one:
The current I also think these two types of filters should be better separated to reduce confusion enough and make documentation possible. But I'd like to suggest a different angle. Instead of sharing Unlike filtering repo groups, filtering import groups is distinct and "dynamic" meaning it does NOT require importing everything first which would obviously defeat its own purpose. It obviously happens before repo filtering. This should remove any paradox. For instance: # manifest-repo/west.yml
manifest:
projects:
- name: submanifest-repo
groups: [foo]
import:
- groups: [foo] # NEW !
- ...
# submanifest-repo/west.yml
manifest:
group-filter: [-foo]
projects:
- name: proj1
- name: proj2 With With With No paradox because git repos and imports don't share groups. |
marc-hb more or less already explained what I meant, but will do so as well, as I'm looking at this more from the user / CI side. Variant A: # manifest-repo/west.yml
manifest:
projects:
[ ... ]
self:
import: submanifests
# submanifests/test_repo.yml
manifest:
import-filter: [-test_repo, -test_repo2]
projects:
- name: test-repo
[ ... ]
import-group: test_repo
- name: test-repo2
[ ... ]
import-group: test_repo2 Here the import would be done on a project level. Variant B: # manifest-repo/west.yml
manifest:
projects:
[ ... ]
self:
import: submanifests
# submanifests/test_repo.yml
manifest:
import-group: test_repo
import-filter: [-test_repo]
projects:
[ ... ] In this variant all the information is given by the yml file in the submanifests folder, which means that individual files in the submanifests folder can be selected. Variant C: # manifest-repo/west.yml
manifest:
import-filter: [-test_repos]
projects:
[ ... ]
self:
import:
path: submanifests
import-group: test_repos In this setup you can select if the whole submanifests folder should be imported. The selection via cmd-line would be similar to the group-filter west update --import-filter=+test_repos |
Thanks for great feedback! I agree with the general idea that we are dealing with two different things and it is probably worth writing them down separately in the manifest file.
@marc-hb Unfortunately, I don't think this addresses the motivating use case. Relevant snippet from the description: - name: my-main-test-repo
url: https://git.mycompany.com/my-main-test-repo
revision: SOME-SHA
groups: [proprietary-tests]
import: true We cannot perform the import with an empty/missing group filter (i.e. the default group filter for a fresh workspace) because git.mycompany.com is a private server. That breaks all the external users who will never have access to this server.
@DatGizmo I agree with your assessment that we should not go with this one.
What I find interesting about this variant is that it seems to allow each submanifest to declare the groups it would like to be in. But I think this may have a similar problem around access control. The self:
import: submanifests So 'submanifests' is a directory in the same repository and we definitely have access to it. But if manifest:
projects:
- name: my-private-repository
url: https://git.mycompany.com/my-private-repository
import: true then this variant would seem not to work for similar reasons as @marc-hb 's.
I think this is the best proposal so far, because it seems to allow each manifest to put imports into groups, and also allows it to define a filter on what imports should be performed, by group. I wonder how it would work across imports, though. Like if three different manifest files each define the same import group, are these shared? Just trying to mentally work through some more details. |
This is just another example of a global namespace that must be managed across the entire extended Zephyr ecosystem (along with Kconfig symbols, C preprocessor symbols, include pathnames, linker symbols, shell commands, settings IDs, testcase tags, ...). |
I think I have a similar use case and wanted to see if there are any known fixes/workarounds. I have a project that uses west and uses Zephyr RTOS as an optional example use case. To enable the Zephyr example, the best option seems to 'import' the zephyrproject. But this forces me to always include Zephyr, even for users that do not know and understand Zephyr. My current solution is to optionally add the zephyr import via a local submanifest folder. Another complication is that west import always seems to look at the declared git revision and ignores any local modifications. This makes it hard to customize imported manifests, and to test changes to a manifest. |
Note it's never required to download/clone everything in the manifest. On that topic see
Yes this is documented here:
I believe (@mbolivar-nordic ?) this is to keep a reasonable level of complexity. Here's a somewhat related example that shows how complexity can spiral out of control really fast: |
Could you elaborate? I see a proposal and discussion here but no implementation and nothing in west update --help. (edit: to clarify - I know about groups and "west update $project" option, but my question here is specifically on projects that have an import line. In this case west complains that I cannot use group and import commands on same project.)
I don't see how this would get more complex when taking the local worktree status. I would argue it is a lot less surprising if results actually match the files I see and modified.. |
It's very simple: never ever use |
This is not about the least surprise for the user. It's about the complexity of the internal implementation meaning bugs, corner cases and maybe... even more surprising behaviors in the end. I think @mbolivar-nordic explained this once somewhere but I couldn't find it sorry. |
That's a different example. Your example has |
I forgot to say: @mbolivar-nordic submitted |
As of west 0.11.x, you cannot combine
groups
withimport
in a single project definition. The documentation says:If you try, you'll hit the error handling block that begins here:
west/src/west/manifest.py
Line 2027 in 38e656b
This issue describes:
Use case
Consider a CI maintainer for a downstream Zephyr-based software distribution that provides additional platform support on top of the base OS.
As that CI maintainer, I (the hypothetical CI maintainer, not necessarily @mbolivar-nordic) would like to associate a set of test repositories with the manifest repository for my Zephyr distribution. I would like to do this by including some repositories containing test cases in my west manifest.
This will allow me to conveniently version the test repository revisions alongside the revisions of the code being tested. That allows me to maintain different branches of the same test case repositories to exercise different branches of the accompanying downstream distribution. Furthermore, putting my test repositories into west allows my platform developers to more easily reproduce results such as build errors in my test applications by running
west update
to get the test code.I would like to adapt the continuous integration overrides pattern from the west documentation for my use case. This will also allow me to exercise changes that have to go into my test and platform repositories at the same time, which may occur for example if a Zephyr API used by both types of repository changes. I would like to adapt the documented pattern as follows.
First, I do not want developers to have to clone these test repositories by default into the workspace for several potential reasons:
I therefore would like the test repositories to be inactive projects by default.
Second, I do not want the names or locations of the test repositories to be made public as they are also considered proprietary. (This is not incompatible with an open source platform, e.g. sqlite is another OSS project that has a proprietary test suite.)
I therefore would like to organize my manifests like this:
This would accomplish my goals:
revision
fields formy-main-test-repo
in different release branches of my platform to keep parallel test branches alive at the same timemy-manifest-repo/submanifests/00-test-overrides.yml
for individual pull requests to selectively override any test repository or platform repository, allowing me to test workspaces where changes to test and platform repositories must be exercised in concertwest update
usingmy-manifest-repo
without getting the testsmy-main-test-repo
has a generic name and is access controlledproprietary-tests
group and runwest update
to get an environment that matches my CI, in order to reproduce errors that require test repositories to build and runHowever, I can't do this because west won't let me do this snippet which combines groups and import:
This is a showstopper for me.
Rationale for the restriction
For context, I (@mbolivar-nordic this time) was the main designer and the implementer for both the
import:
andgroups:
features;import:
came first.When working on
groups:
, I found that specifying the semantics for the combination of the two ran into some edge cases that I found difficult to specify without a good motivating use case that would help guide the design. I therefore decided to simply forbid it for convenience, and wait to see if anything would come along that would light the way forward.Here's an example I cooked up that shows the seemingly paradoxical results that can arise from naive interpretations of what to do:
I might say "
submanifest-repo
is obviously active becausefoo
is enabled inmanifest-repo/west.yml
." But then if west importssubmanifest-repo/west.yml
, I end up withfoo
disabled in the resolved manifest, becausegroup-filter
values from imported manifests affect the resolved manifest. This makessubmanifest-repo
inactive, because its only group is disabled.A paradox:
submanifest-repo
is considered active and we import from it, then it's inactive, for reasons described above[-foo]
group filter, so then... it's active, actually?What about
proj1
andproj2
then? Should they be "deleted" from the resolved manifest somehow, or are they still OK to include as active projects in situations like this?Proposal for removing the restriction
I think the above use case is a valid one and I would like to propose that west enables it. However, we have to figure out how to resolve the above difficulties.
I think we should go ahead and perform the
import:
, even if the project hasgroups:
, as long as the available information indicates that the project is active. So in the example from the above rationale, we should importsubmanifest-repo
unless the workspace'smanifest.group-filter
configuration option has disabled groupfoo
, becausemanifest-repo/west.yml
on its own would treatsubmanifest-repo
as an active project since not all its groups are disabled by default.Then, after resolving the complete manifest, we should do a postprocessing check that all projects with an
import:
remain active projects after all the imports are done. (A project with no groups is active by definition, which is why forbidding the combination of the two sidestepped these difficulties.) If so, the resulting resolved manifest seems to be internally consistent to me. If not, we skip the paradox by throwing an exception from thewest.manifest.Manifest
constructor, preventing users from constructing this type of self-contradictory (even Rusellian)Manifest
object.This behavior would handle the main use case just fine, since the CI maintainer is not going to do something strange like disable the
proprietary-tests
group frommy-main-test-repo/west.yml
. So the workspace works as intended with and without that group enabled: if it's enabled, the test projects are active. If it's disabled (the default), they are inactive, and that includesmy-main-test-repo
itself. Users and developers get what they want by default (i.e. no test repositories), but it's easy to make test repositories into active projects by enabling a single group.The above error handling might force
west update
to clone some additional projects that it would ordinarily not have in order to compute the resolved manifest, especially in the case of multiple levels of imports. That in turn could lead to permissions errors if the repositories are access controlled. So be it.Chicken bit
The above proposal is a bit risky since we only have one use case, so I think this should be an experimental behavior we can rip out later. Furthermore, I think it should require explicit "opt-in" support. So I am also proposing a new boolean
manifest.experimental-group-import
configuration option that must be enabled to turn on this new behavior.Therefore the CI environment would have to do something like this in order to opt in:
If
manifest.experimental-group-import
is disabled, the restriction remains in place andwest update
fails with the existing error message. Otherwise we proceed as above.The maintainers of CI environments have many options available for controlling exactly the version of west used for testing and their setup scripts, so this allows us to get some real world experience without fully committing to the above behavior if we run into unanticipated consequences.
The text was updated successfully, but these errors were encountered: