File size: 14,350 Bytes
d90101d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::Arc;
use anyhow::{Context, Result};
use async_trait::async_trait;
use forge_app::{CommandInfra, EnvironmentInfra, FileReaderInfra, WalkerInfra, WorkspaceService};
use forge_domain::{
AuthCredential, AuthDetails, ProviderId, ProviderRepository, SyncProgress, UserId, WorkspaceId,
WorkspaceIndexRepository,
};
use forge_stream::MpscStream;
use futures::future::join_all;
use tracing::info;
use crate::fd::FileDiscovery;
use crate::sync::{WorkspaceSyncEngine, canonicalize_path};
/// Service for indexing workspaces and performing semantic search.
///
/// `F` provides infrastructure capabilities (file I/O, environment, etc.) and
/// `D` is the file-discovery strategy used to enumerate workspace files.
pub struct ForgeWorkspaceService<F, D> {
infra: Arc<F>,
discovery: Arc<D>,
}
impl<F, D> Clone for ForgeWorkspaceService<F, D> {
fn clone(&self) -> Self {
Self {
infra: Arc::clone(&self.infra),
discovery: Arc::clone(&self.discovery),
}
}
}
impl<F, D> ForgeWorkspaceService<F, D> {
/// Creates a new workspace service with the provided infrastructure and
/// file-discovery strategy.
pub fn new(infra: Arc<F>, discovery: Arc<D>) -> Self {
Self { infra, discovery }
}
}
impl<
F: 'static
+ ProviderRepository
+ WorkspaceIndexRepository
+ FileReaderInfra
+ EnvironmentInfra<Config = forge_config::ForgeConfig>
+ CommandInfra
+ WalkerInfra,
D: FileDiscovery + 'static,
> ForgeWorkspaceService<F, D>
{
/// Internal sync implementation that emits progress events.
async fn sync_codebase_internal<E, Fut>(&self, path: PathBuf, emit: E) -> Result<()>
where
E: Fn(SyncProgress) -> Fut + Send + Sync,
Fut: std::future::Future<Output = ()> + Send,
{
info!(path = %path.display(), "Starting workspace sync");
emit(SyncProgress::Starting).await;
let (token, user_id) = self.get_workspace_credentials().await?;
let batch_size = self.infra.get_config()?.max_file_read_batch_size;
let path = canonicalize_path(path)?;
// Find existing workspace - do NOT auto-create
let workspace = self.get_workspace_by_path(path, &token).await?;
let workspace_id = workspace.workspace_id.clone();
// Use the canonical root stored in the workspace record so that file
// discovery and remote-hash comparison are always relative to the same
// base, even when `path` is a subdirectory of an ancestor workspace.
let workspace_root = PathBuf::from(&workspace.working_dir);
WorkspaceSyncEngine::new(
Arc::clone(&self.infra),
Arc::clone(&self.discovery),
workspace_root,
workspace_id,
user_id,
token,
batch_size,
)
.run(emit)
.await
}
/// Gets the ForgeCode services credential and extracts workspace auth
/// components
///
/// # Errors
/// Returns an error if the credential is not found, if there's a database
/// error, or if the credential format is invalid
async fn get_workspace_credentials(&self) -> Result<(forge_domain::ApiKey, UserId)> {
let credential = self
.infra
.get_credential(&ProviderId::FORGE_SERVICES)
.await?
.context("No authentication credentials found. Please authenticate first.")?;
match &credential.auth_details {
AuthDetails::ApiKey(token) => {
// Extract user_id from URL params
let user_id_str = credential
.url_params
.get(&"user_id".to_string().into())
.ok_or_else(|| {
anyhow::anyhow!("Missing user_id in ForgeServices credential")
})?;
let user_id = UserId::from_string(user_id_str.as_str())?;
Ok((token.clone(), user_id))
}
_ => anyhow::bail!("ForgeServices credential must be an API key"),
}
}
/// Finds a workspace by path from remote server, checking for exact match
/// first, then ancestor workspaces.
///
/// Business logic:
/// 1. First tries to find an exact match for the given path
/// 2. If not found, searches for ancestor workspaces
/// 3. Returns the closest ancestor (longest matching path prefix)
///
/// # Errors
/// Returns an error if the path cannot be canonicalized or if there's a
/// server error. Returns Ok(None) if no workspace is found.
async fn find_workspace_by_path(
&self,
path: PathBuf,
token: &forge_domain::ApiKey,
) -> Result<Option<forge_domain::WorkspaceInfo>> {
let canonical_path = canonicalize_path(path)?;
// Get all workspaces from remote server
let workspaces = self.infra.list_workspaces(token).await?;
let canonical_str = canonical_path.to_string_lossy();
// Business logic: choose which workspace to use
// 1. First check for exact match
if let Some(exact_match) = workspaces.iter().find(|w| w.working_dir == canonical_str) {
return Ok(Some(exact_match.clone()));
}
// 2. Find closest ancestor (longest matching path prefix)
let mut best_match: Option<(&forge_domain::WorkspaceInfo, usize)> = None;
for workspace in &workspaces {
let workspace_path = PathBuf::from(&workspace.working_dir);
if canonical_path.starts_with(&workspace_path) {
let path_len = workspace.working_dir.len();
if best_match.is_none_or(|(_, len)| path_len > len) {
best_match = Some((workspace, path_len));
}
}
}
Ok(best_match.map(|(w, _)| w.clone()))
}
/// Looks up the workspace for `path` and returns it, or an error if no
/// workspace has been indexed for that path.
///
/// # Errors
///
/// Returns an error when the underlying repository lookup fails, or when no
/// matching workspace is found (i.e. the workspace has not been indexed
/// yet).
async fn get_workspace_by_path(
&self,
path: PathBuf,
token: &forge_domain::ApiKey,
) -> Result<forge_domain::WorkspaceInfo> {
self.find_workspace_by_path(path, token)
.await?
.context("Workspace not indexed. Please run `forge workspace init` first.")
}
async fn _init_workspace(&self, path: PathBuf) -> Result<(bool, WorkspaceId)> {
let (token, _user_id) = self.get_workspace_credentials().await?;
let path = canonicalize_path(path)?;
// Find workspace by exact match or ancestor from remote server
let workspace = self.find_workspace_by_path(path.clone(), &token).await?;
let (workspace_id, workspace_path, is_new_workspace) = match workspace {
Some(workspace_info) => {
// Found existing workspace - reuse it
(workspace_info.workspace_id, path.clone(), false)
}
None => {
// No workspace found - create new
(WorkspaceId::generate(), path.clone(), true)
}
};
let workspace_id = if is_new_workspace {
// Create workspace on server
self.infra
.create_workspace(&workspace_path, &token)
.await
.context("Failed to create workspace on server")?
} else {
workspace_id
};
Ok((is_new_workspace, workspace_id))
}
}
#[async_trait]
impl<
F: ProviderRepository
+ WorkspaceIndexRepository
+ FileReaderInfra
+ EnvironmentInfra<Config = forge_config::ForgeConfig>
+ CommandInfra
+ WalkerInfra
+ 'static,
D: FileDiscovery + 'static,
> WorkspaceService for ForgeWorkspaceService<F, D>
{
async fn sync_workspace(&self, path: PathBuf) -> Result<MpscStream<Result<SyncProgress>>> {
let service = Clone::clone(self);
let stream = MpscStream::spawn(move |tx| async move {
// Create emit closure that captures the sender
let emit = |progress: SyncProgress| {
let tx = tx.clone();
async move {
let _ = tx.send(Ok(progress)).await;
}
};
// Run the sync and emit progress events
let result = service.sync_codebase_internal(path, emit).await;
// If there was an error, send it through the channel
if let Err(e) = result {
let _ = tx.send(Err(e)).await;
}
});
Ok(stream)
}
/// Performs semantic code search on a workspace.
async fn query_workspace(
&self,
path: PathBuf,
params: forge_domain::SearchParams<'_>,
) -> Result<Vec<forge_domain::Node>> {
let (token, user_id) = self.get_workspace_credentials().await?;
let workspace = self
.find_workspace_by_path(path, &token)
.await?
.ok_or(forge_domain::Error::WorkspaceNotFound)?;
let search_query =
forge_domain::CodeBase::new(user_id, workspace.workspace_id.clone(), params);
let results = self
.infra
.search(&search_query, &token)
.await
.context("Failed to search")?;
Ok(results)
}
/// Lists all workspaces.
async fn list_workspaces(&self) -> Result<Vec<forge_domain::WorkspaceInfo>> {
let (token, _) = self.get_workspace_credentials().await?;
self.infra
.as_ref()
.list_workspaces(&token)
.await
.context("Failed to list workspaces")
}
/// Retrieves workspace information for a specific path.
async fn get_workspace_info(
&self,
path: PathBuf,
) -> Result<Option<forge_domain::WorkspaceInfo>> {
let (token, _user_id) = self.get_workspace_credentials().await?;
let workspace = self.find_workspace_by_path(path, &token).await?;
Ok(workspace)
}
/// Deletes a workspace from the server.
async fn delete_workspace(&self, workspace_id: &forge_domain::WorkspaceId) -> Result<()> {
let (token, _) = self.get_workspace_credentials().await?;
self.infra
.as_ref()
.delete_workspace(workspace_id, &token)
.await
.context("Failed to delete workspace from server")?;
Ok(())
}
/// Deletes multiple workspaces in parallel from both the server and local
/// database.
async fn delete_workspaces(&self, workspace_ids: &[forge_domain::WorkspaceId]) -> Result<()> {
// Delete all workspaces in parallel by calling delete_workspace for each
let delete_tasks: Vec<_> = workspace_ids
.iter()
.map(|workspace_id| self.delete_workspace(workspace_id))
.collect();
let results = join_all(delete_tasks).await;
// Collect all errors
let errors: Vec<_> = results.into_iter().filter_map(|r| r.err()).collect();
if !errors.is_empty() {
return Err(anyhow::anyhow!(
"Failed to delete {} workspace(s): [{}]",
errors.len(),
errors
.iter()
.map(|e| e.to_string())
.collect::<Vec<_>>()
.join(", ")
));
}
Ok(())
}
async fn is_indexed(&self, path: &std::path::Path) -> Result<bool> {
let (token, _user_id) = self.get_workspace_credentials().await?;
match self
.find_workspace_by_path(path.to_path_buf(), &token)
.await
{
Ok(workspace) => Ok(workspace.is_some()),
Err(_) => Ok(false), // Path doesn't exist or other error, so it can't be indexed
}
}
async fn get_workspace_status(&self, path: PathBuf) -> Result<Vec<forge_domain::FileStatus>> {
let (token, user_id) = self.get_workspace_credentials().await?;
let workspace = self.get_workspace_by_path(path, &token).await?;
// Reuse the canonical path already stored in the workspace (resolved during
// sync), avoiding a redundant canonicalize() IO call.
let canonical_path = PathBuf::from(&workspace.working_dir);
let batch_size = self.infra.get_config()?.max_file_read_batch_size;
WorkspaceSyncEngine::new(
Arc::clone(&self.infra),
Arc::clone(&self.discovery),
canonical_path,
workspace.workspace_id,
user_id,
token,
batch_size,
)
.compute_status()
.await
}
async fn is_authenticated(&self) -> Result<bool> {
Ok(self
.infra
.get_credential(&ProviderId::FORGE_SERVICES)
.await?
.is_some())
}
async fn init_auth_credentials(&self) -> Result<forge_domain::WorkspaceAuth> {
// Authenticate with the indexing service
let auth = self
.infra
.authenticate()
.await
.context("Failed to authenticate with indexing service")?;
// Convert to AuthCredential and store
let mut url_params = HashMap::new();
url_params.insert(
"user_id".to_string().into(),
auth.user_id.to_string().into(),
);
let credential = AuthCredential {
id: ProviderId::FORGE_SERVICES,
auth_details: auth.clone().into(),
url_params,
};
self.infra
.upsert_credential(credential)
.await
.context("Failed to store authentication credentials")?;
Ok(auth)
}
async fn init_workspace(&self, path: PathBuf) -> Result<WorkspaceId> {
let (is_new, workspace_id) = self._init_workspace(path).await?;
if is_new {
Ok(workspace_id)
} else {
Err(forge_domain::Error::WorkspaceAlreadyInitialized(workspace_id).into())
}
}
}
|