On Thu, 2025-02-20 at 18:37 +0100, Stefan Herbrechtsmeier wrote: > > Am 20.02.2025 um 13:21 schrieb Richard Purdie: > > On Thu, 2025-02-20 at 12:45 +0100, Stefan Herbrechtsmeier via > > lists.openembedded.org wrote: > > > Am 20.02.2025 um 11:22 schrieb Richard Purdie via > > > lists.openembedded.org: > > > > On Wed, 2025-02-05 at 13:12 +0100, Stefan Herbrechtsmeier wrote: > > > > >  Am 05.02.2025 um 11:34 schrieb Richard Purdie: > > > > > > > > > >  On Wed, 2025-02-05 at 08:15 +0100, Stefan Herbrechtsmeier via lists.openembedded.org wrote: > > > > > > > > > > I’m open for suggestions. Even ARCHIVE or TARBALL are hard to > > > > > > > > > > understand because it is only a relative path on the download mirror. > > > > > > > > > > Alternative we can mark the lines as upstream or download mirror and > > > > > > > > > > give the replacement different meanings. The path could be the > > > > > > > > > > original PATH for an upstream mirror or the relative path of the > > > > > > > > > > downloaded file for the download mirror. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I've been giving this topic some thought. One idea I wondered about was > > > > > > > > to instead markup the mirror urls with how they're expected to work > > > > > > > > with a new parameter. For example: > > > > > > > > git://.*/.* http://downloads.yoctoproject.org/mirror/sources/?mirrorformat=mirrortarball > > > > > > > > > > > > > > > > > > The ? could be problematic because it is the separator for the > > > query. It is unlikely that the user really use this query > > > parameter but it could complicate the code because we have to > > > handle additional query parameters. > > > What does the "?mirrorformat=mirrortarball" mean? Will it work > > > like a MIRRORTARBALL replacement? > > > > > > > > > > > > > The mirrorformat parameter would be used by the mirroring code > > itself to understand how to handle the url. > > > > What is the different to a MIRRORTARBALL replacement? The code will > replace the word with the content. Think about this from a usability perspective. We're struggling to even work out good names for your proposal. Even if we work out the names, I still don't think users are going to understand how to convert urls into the new syntax. The difference with my proposed format is that we're specifying it in a way which I suspect users will better understand without needing to go and read the docs every time. We're saying what we're configuring with the "mirrorformat" key and then the value should be able to describe the format.  My proposal also gives us both a way to clearly detect when obsolete formatting is used and a namespace mechanism to extend, with both being in a way we can easily and clearly describe in the docs. I appreciate with your proposal we can add more strings and we can add docs about how to migrate but I suspect users aren't going to be as readily/easily able to understand it. > > It would be dropped from the modified url so is only therefore our > > code's use. If there are additional parameters they would be passed > > through as they are now. > > > > > > > > > > > > > > How does a simple replacement should look like? > > > > > > http://  https:// > > > > > > Because of the backward compatible this will replace the basename > > > of the path. > > > > > > > > > > > > > It would depend how the mirror is laid out. Some mirrors flatten > > the urls like DL_DIR is laid out, some potentially don't. The > > standard usage would likely have a mirrorformat=dldir parameter > > added. > > > > How does the user specify an entry that replace the http scheme with > https and keeps everything else like it is (upstream mirror)? http://.*/.* https://.*/.*?mirrorformat=upstream We need to determine the best value for "upstream". I'd also like to review whether the .* formatting is the best way to handle this if we are going to change the format. > > > > The possible options would be something like: > > > > > > > > mirrortarball - mirror tarballs taken from DL_DIR > > > > > > > > flattened - copy of DL_DIR so DL_DIR layout (maybe call it dldir?) > > > > > > > > upstream - layout is the same as the upstream directory structure so a direct url replacement > > > > > > > > > > > > > > > > > > Do you think we have to handle the mirror tarball explicit? The > > > mirror tarball is required for a scheme change. > > > > > > > > > > > > > If we do that, we can avoid having to guess at too many urls to > > test to figure out a mirror format so I think it would be an > > improvement on where we are today. > > > > Do you mean we will test if the URL have a mirrortarball and if not > skip the entry? Correct. > > > > If using a mirrortarball mirror url, we'd know to use the values from > > > > > > > > urldata.mirrortarballs. We could add parameters to the fetcher to have > > > > > > > > two parameters, one will be the DL_DIR path and the other would be the > > > > > > > > upstream url path. > > > > > > > > > > > > > > > > > > I don't understand where this is needed, because the mirror > > > tarball and downloadfilename are used by different fetchers. > > > > > > > > > > > > > Please keep in mind that downloadfilename is pretty much a > > misfeature. It was added as we couldn't control collisions inside > > dl_dir but it creates all kind of other problems. I think we do > > need to handle that problem case but it does then mean we have to > > indicate whether any given mirror uses "dldir" or "upstream" names > > and paths. > > > > I don't understand the problem. The download mirror will use the > downloadfilename or its default the basename of the localpath. The > upstream mirror will use the path. The mirrortarball will use the > mirrortarball. Why the fetcher need two parameters? You are trying to make downloadfilename a supported parameter of every fetcher. I'm arguing that I wish we'd never added it at all and that I'd rather not use it or encourage its use. I don't think you understand the way the fetcher API was written/used and this is why some of the patches are still on hold in master-next until I can convince myself they are actually the right thing to do. There have been too many other misunderstandings to give me confidence they're going to do the right thing :(. Sadly, I just don't have the time do the right level of review and everything else being asked of me. > > > > One key question I have is how we might need to > > > > > > > > shorted the url path for some mirror urls to add/remove a path prefix > > > > > > > > in the mirroring. > > > > > > > > > > > > > > > > > > What do you mean by this? The downloadfilename could contain a > > > path without any problem after my change. > > > > > > > > > > > > > See above, downloadfilename is not something I'm keen to promote > > and is creating several of the problems we have by badly trying to > > hack extra functionality onto the fetcher without thinking through > > all the issues like mirroring. > > > > What is the desired way to avoid name clashes? The package manager > fetcher need an generic way to override the basename. Why does it need that? Usually we've used the directory layout to avoid problems where we can for example. I've been hoping we could do similar here rather than use downloadfilename, which causes so many mirroring issues in the first place. > > > Alternative we could make some replacement mandatory if a > > > wildcard is used to detect obsolete entries. > > > > > > > > > > > > > I don't understand that. > > > > If we have a wildcard .* in the path we need to know how to replace > it. This could be the PATH, BASENAME, DOWNLOADFILENAME, MIRRORARCHIVE > or re group. But in case of the re group this could still be an old > entry. I'm not entirely sure we want to keep all the different syntax. One frustration I have with the current code is the way pattern matches are restricted to that url component for example and I've wondered if we could/should do something different instead, if we can make it simpler. > Do support all cases we need a fix prefix or delimiter: > > r:http https > > http#https > http|https > > http?://.*/.*| > http://downloads.yoctoproject.org/mirror/sources/DOWNLOADARCHIVE > git://.*/.*| > http://downloads.yoctoproject.org/mirror/sources/MIRRORARCHIVE > > > > > > I do think we have too many problems in the existing mirroring url > > mapping and we probably need to rework this rather than try and > > pile more patches into it and complicate it further. > > > I have already rework it. If I can remove the backward compatibility > and replace it with an error this would simplify the code. I only > need a better name for the DOWNLOADFILENAME (DOWNLOADARCHIVE) and add > the MIRRORARCHIV. > > > > > The question is whether the proposal fixes the issues it needs to > > and has enough simplification and benefit to justify making the > > change. > > > My patches support folders in the downloadfilename, upstream mirrors > and renames. I have to rework the MIRROR strings but therefore the > commented out tests work. > You've created a patch, yes. I don't think it improves usability though and I think you're also pushing concepts like downloadfilename into places we might not want to use them too. For me to merge patches like these, there needs to be a sense of trust and shared understanding. This simply isn't there, you're just saying your patches are fine as they are, I disagree. I therefore worry we're at an impasse and are going to struggle to move beyond this. That does make me quite sad. Regards, Richard