diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-03 23:24:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-03 23:24:52 +0900 |
| commit | dd19bda86582e9f6a4ba1879112d9ab3ba8432f6 (patch) | |
| tree | 9d953ae1e832c499909b37a3df1c94d004ca640e /crates/shirabe/src/downloader/perforce_downloader.rs | |
| parent | 60bfd667e4a98f5463a5bd5f2d0259bd0eeb0a5e (diff) | |
| download | php-shirabe-dd19bda86582e9f6a4ba1879112d9ab3ba8432f6.tar.gz php-shirabe-dd19bda86582e9f6a4ba1879112d9ab3ba8432f6.tar.zst php-shirabe-dd19bda86582e9f6a4ba1879112d9ab3ba8432f6.zip | |
Git/Svn/Hg/Fossil/Perforce now implement ChangeReportInterface and
VcsCapableDownloaderInterface and override the as_* downcasts, so PHP-style
instanceof checks on a DownloaderInterface resolve to these sub-interfaces.
get_local_changes lives directly in the ChangeReportInterface impl
(returning anyhow::Result; GitDownloader now surfaces a RuntimeException
instead of panicking on a failed git status). get_vcs_reference is shared
via a new VcsDownloaderBase helper that each downloader delegates to.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/downloader/perforce_downloader.rs')
| -rw-r--r-- | crates/shirabe/src/downloader/perforce_downloader.rs | 44 |
1 files changed, 32 insertions, 12 deletions
diff --git a/crates/shirabe/src/downloader/perforce_downloader.rs b/crates/shirabe/src/downloader/perforce_downloader.rs index fcea57c..e33b159 100644 --- a/crates/shirabe/src/downloader/perforce_downloader.rs +++ b/crates/shirabe/src/downloader/perforce_downloader.rs @@ -1,7 +1,9 @@ //! ref: composer/src/Composer/Downloader/PerforceDownloader.php use crate::config::Config; +use crate::downloader::ChangeReportInterface; use crate::downloader::DownloaderInterface; +use crate::downloader::VcsCapableDownloaderInterface; use crate::downloader::VcsDownloaderBase; use crate::io::IOInterface; use crate::io::IOInterfaceImmutable; @@ -124,18 +126,6 @@ impl PerforceDownloader { self.do_install(target, path, url).await } - pub fn get_local_changes( - &self, - _package: PackageInterfaceHandle, - _path: String, - ) -> Option<String> { - self.inner - .io - .write_error("Perforce driver does not check for local changes before overriding"); - - None - } - pub(crate) fn get_commit_logs( &mut self, from_reference: String, @@ -159,11 +149,41 @@ impl PerforceDownloader { } } +impl ChangeReportInterface for PerforceDownloader { + fn get_local_changes( + &self, + _package: PackageInterfaceHandle, + _path: &str, + ) -> Result<Option<String>> { + self.inner + .io + .write_error("Perforce driver does not check for local changes before overriding"); + + Ok(None) + } +} + +impl VcsCapableDownloaderInterface for PerforceDownloader { + fn get_vcs_reference(&self, package: PackageInterfaceHandle, path: String) -> Option<String> { + self.inner.get_vcs_reference(package, &path) + } +} + // TODO(phase-b): wire up VcsDownloader trait properly. PerforceDownloader extends VcsDownloader // which implements DownloaderInterface in PHP. Delegating each trait method to todo!() until the // inner VcsDownloaderBase exposes the matching impl surface. #[async_trait::async_trait(?Send)] impl DownloaderInterface for PerforceDownloader { + fn as_change_report_interface(&self) -> Option<&dyn crate::downloader::ChangeReportInterface> { + Some(self) + } + + fn as_vcs_capable_downloader_interface( + &self, + ) -> Option<&dyn crate::downloader::VcsCapableDownloaderInterface> { + Some(self) + } + fn get_installation_source(&self) -> String { todo!() } |
