File size: 35,418 Bytes
e5034c3 | 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 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 | use std::path::{Path, PathBuf};
use std::time::Duration;
use bytes::Bytes;
use derive_setters::Setters;
use forge_domain::{
AgentId, AnyProvider, Attachment, AuthContextRequest, AuthContextResponse, AuthMethod,
ChatCompletionMessage, CommandOutput, Context, Conversation, ConversationId, File, FileInfo,
FileStatus, Image, McpConfig, McpServers, Model, ModelId, Node, Provider, ProviderId,
ResultStream, Scope, SearchParams, SyncProgress, SyntaxError, Template, ToolCallFull,
ToolOutput, WorkspaceAuth, WorkspaceId, WorkspaceInfo,
};
use forge_eventsource::EventSource;
use reqwest::Response;
use reqwest::header::HeaderMap;
use url::Url;
use crate::user::{User, UserUsage};
use crate::{EnvironmentInfra, Walker};
#[derive(Debug, Clone)]
pub struct ShellOutput {
pub output: CommandOutput,
pub shell: String,
pub description: Option<String>,
}
#[derive(Debug)]
pub struct PatchOutput {
pub errors: Vec<SyntaxError>,
pub before: String,
pub after: String,
pub content_hash: String,
}
#[derive(Debug, Setters)]
#[setters(into)]
pub struct ReadOutput {
pub content: Content,
pub info: FileInfo,
}
#[derive(Debug)]
pub enum Content {
File(String),
Image(Image),
}
impl Content {
pub fn file<S: Into<String>>(content: S) -> Self {
Self::File(content.into())
}
pub fn image(image: Image) -> Self {
Self::Image(image)
}
pub fn file_content(&self) -> &str {
match self {
Self::File(content) => content,
Self::Image(_) => "",
}
}
pub fn as_image(&self) -> Option<&Image> {
match self {
Self::Image(img) => Some(img),
_ => None,
}
}
}
#[derive(Debug)]
pub struct SearchResult {
pub matches: Vec<Match>,
}
#[derive(Debug)]
pub struct Match {
pub path: String,
pub result: Option<MatchResult>,
}
#[derive(Debug)]
pub enum MatchResult {
Error(String),
Found {
line_number: Option<usize>,
line: String,
},
Count {
count: usize,
},
FileMatch, // For files_with_matches mode
ContextMatch {
line_number: Option<usize>,
line: String,
before_context: Vec<String>,
after_context: Vec<String>,
},
}
#[derive(Debug)]
pub struct HttpResponse {
pub content: String,
pub code: u16,
pub context: ResponseContext,
pub content_type: String,
}
#[derive(Debug)]
pub enum ResponseContext {
Parsed,
Raw,
}
#[derive(Debug)]
pub struct FsWriteOutput {
pub path: String,
// Set when the file already exists
pub before: Option<String>,
pub errors: Vec<SyntaxError>,
pub content_hash: String,
}
#[derive(Debug)]
pub struct FsRemoveOutput {
// Content of the file
pub content: String,
}
#[derive(Debug)]
pub struct PlanCreateOutput {
pub path: PathBuf,
// Set when the file already exists
pub before: Option<String>,
}
#[derive(Default, Debug, derive_more::From)]
pub struct FsUndoOutput {
pub before_undo: Option<String>,
pub after_undo: Option<String>,
}
/// Output from todo_write tool execution
#[derive(Debug)]
pub struct TodoWriteOutput {
/// List of todos that were saved
pub todos: Vec<forge_domain::Todo>,
}
#[derive(Debug)]
pub struct PolicyDecision {
pub allowed: bool,
pub path: Option<PathBuf>,
}
#[async_trait::async_trait]
pub trait ProviderService: Send + Sync {
async fn chat(
&self,
model_id: &ModelId,
context: Context,
provider: Provider<Url>,
) -> ResultStream<ChatCompletionMessage, anyhow::Error>;
async fn models(&self, provider: Provider<Url>) -> anyhow::Result<Vec<Model>>;
async fn get_provider(&self, id: forge_domain::ProviderId) -> anyhow::Result<Provider<Url>>;
async fn get_all_providers(&self) -> anyhow::Result<Vec<AnyProvider>>;
async fn upsert_credential(
&self,
credential: forge_domain::AuthCredential,
) -> anyhow::Result<()>;
async fn remove_credential(&self, id: &forge_domain::ProviderId) -> anyhow::Result<()>;
/// Migrates environment variable-based credentials to file-based
/// credentials. Returns Some(MigrationResult) if credentials were migrated,
/// None if file already exists or no credentials to migrate.
async fn migrate_env_credentials(
&self,
) -> anyhow::Result<Option<forge_domain::MigrationResult>>;
}
/// Manages user preferences for default providers and models.
#[async_trait::async_trait]
pub trait AppConfigService: Send + Sync {
/// Gets the current session configuration (provider and model pair).
///
/// Returns `None` when no session has been configured yet.
async fn get_session_config(&self) -> Option<forge_domain::ModelConfig>;
/// Gets the commit configuration (provider and model for commit message
/// generation).
async fn get_commit_config(&self) -> anyhow::Result<Option<forge_domain::ModelConfig>>;
/// Gets the suggest configuration (provider and model for command
/// suggestion generation).
async fn get_suggest_config(&self) -> anyhow::Result<Option<forge_domain::ModelConfig>>;
/// Gets the current reasoning effort setting.
async fn get_reasoning_effort(&self) -> anyhow::Result<Option<forge_domain::Effort>>;
/// Applies one or more configuration mutations atomically.
///
/// Each operation in `ops` is applied in order, and the result is
/// persisted as a single atomic write. This is the sole write path for
/// all configuration changes; use [`forge_domain::ConfigOperation`]
/// variants to describe each mutation.
async fn update_config(&self, ops: Vec<forge_domain::ConfigOperation>) -> anyhow::Result<()>;
}
#[async_trait::async_trait]
pub trait McpConfigManager: Send + Sync {
/// Responsible to load the MCP servers from all configuration files.
/// If scope is provided, only loads from that specific scope (not merged).
async fn read_mcp_config(&self, scope: Option<&Scope>) -> anyhow::Result<McpConfig>;
/// Responsible for writing the McpConfig on disk.
async fn write_mcp_config(&self, config: &McpConfig, scope: &Scope) -> anyhow::Result<()>;
/// Returns the trusted subset of MCP servers, prompting interactively for
/// any project-local config file not yet approved. Must be called once at
/// the startup boundary, never on pure config-read paths.
async fn filter_trusted(&self, raw: McpConfig) -> anyhow::Result<McpConfig>;
}
#[async_trait::async_trait]
pub trait McpService: Send + Sync {
async fn get_mcp_servers(&self) -> anyhow::Result<McpServers>;
async fn execute_mcp(&self, call: ToolCallFull) -> anyhow::Result<ToolOutput>;
/// Refresh the MCP cache by fetching fresh data
async fn reload_mcp(&self) -> anyhow::Result<()>;
/// Applies the interactive trust gate for any project-local MCP config.
/// Servers are NOT connected here — connections remain lazy and happen on
/// first tool use. Must be called once at startup.
async fn init_mcp(&self) -> anyhow::Result<()>;
}
#[async_trait::async_trait]
pub trait ConversationService: Send + Sync {
async fn find_conversation(&self, id: &ConversationId) -> anyhow::Result<Option<Conversation>>;
async fn upsert_conversation(&self, conversation: Conversation) -> anyhow::Result<()>;
/// This is useful when you want to perform several operations on a
/// conversation atomically.
async fn modify_conversation<F, T>(&self, id: &ConversationId, f: F) -> anyhow::Result<T>
where
F: FnOnce(&mut Conversation) -> T + Send,
T: Send;
/// Find conversations with optional limit
async fn get_conversations(
&self,
limit: Option<usize>,
) -> anyhow::Result<Option<Vec<Conversation>>>;
/// Find the last active conversation
async fn last_conversation(&self) -> anyhow::Result<Option<Conversation>>;
/// Permanently deletes a conversation
async fn delete_conversation(&self, conversation_id: &ConversationId) -> anyhow::Result<()>;
}
#[async_trait::async_trait]
pub trait TemplateService: Send + Sync {
async fn register_template(&self, path: PathBuf) -> anyhow::Result<()>;
async fn render_template<V: serde::Serialize + Send + Sync>(
&self,
template: Template<V>,
object: &V,
) -> anyhow::Result<String>;
}
#[async_trait::async_trait]
pub trait AttachmentService {
async fn attachments(&self, url: &str) -> anyhow::Result<Vec<Attachment>>;
}
#[async_trait::async_trait]
pub trait CustomInstructionsService: Send + Sync {
async fn get_custom_instructions(&self) -> Vec<String>;
}
/// Service for indexing workspaces for semantic search
#[async_trait::async_trait]
pub trait WorkspaceService: Send + Sync {
/// Index the workspace at the given path
async fn sync_workspace(
&self,
path: PathBuf,
) -> anyhow::Result<forge_stream::MpscStream<anyhow::Result<SyncProgress>>>;
/// Query the indexed workspace with semantic search
async fn query_workspace(
&self,
path: PathBuf,
params: SearchParams<'_>,
) -> anyhow::Result<Vec<Node>>;
/// List all workspaces indexed by the user
async fn list_workspaces(&self) -> anyhow::Result<Vec<WorkspaceInfo>>;
/// Get workspace information for a specific path
async fn get_workspace_info(&self, path: PathBuf) -> anyhow::Result<Option<WorkspaceInfo>>;
/// Delete a workspace and all its indexed data
async fn delete_workspace(&self, workspace_id: &WorkspaceId) -> anyhow::Result<()>;
/// Delete multiple workspaces in parallel and all their indexed data
async fn delete_workspaces(&self, workspace_ids: &[WorkspaceId]) -> anyhow::Result<()>;
/// Checks if workspace is indexed.
async fn is_indexed(&self, path: &Path) -> anyhow::Result<bool>;
/// Get sync status for all files in workspace
async fn get_workspace_status(&self, path: PathBuf) -> anyhow::Result<Vec<FileStatus>>;
/// Check if authentication credentials exist
async fn is_authenticated(&self) -> anyhow::Result<bool>;
/// Create new authentication credentials
async fn init_auth_credentials(&self) -> anyhow::Result<WorkspaceAuth>;
/// Initialize a workspace without syncing files
async fn init_workspace(&self, path: PathBuf) -> anyhow::Result<WorkspaceId>;
}
#[async_trait::async_trait]
pub trait FileDiscoveryService: Send + Sync {
async fn collect_files(&self, config: Walker) -> anyhow::Result<Vec<File>>;
/// Lists all entries (files and directories) in the current directory
/// Returns a sorted vector of File entries with directories first
async fn list_current_directory(&self) -> anyhow::Result<Vec<File>>;
}
#[async_trait::async_trait]
pub trait FsWriteService: Send + Sync {
/// Create a file at the specified path with the given content.
async fn write(
&self,
path: String,
content: String,
overwrite: bool,
) -> anyhow::Result<FsWriteOutput>;
}
#[async_trait::async_trait]
pub trait PlanCreateService: Send + Sync {
/// Create a plan file with the specified name and version.
async fn create_plan(
&self,
plan_name: String,
version: String,
content: String,
) -> anyhow::Result<PlanCreateOutput>;
}
#[async_trait::async_trait]
pub trait FsPatchService: Send + Sync {
/// Patches a file at the specified path with the given content.
async fn patch(
&self,
path: String,
search: String,
content: String,
replace_all: bool,
) -> anyhow::Result<PatchOutput>;
/// Applies multiple patches to a single file in sequence
async fn multi_patch(
&self,
path: String,
edits: Vec<forge_domain::PatchEdit>,
) -> anyhow::Result<PatchOutput>;
}
#[async_trait::async_trait]
pub trait FsReadService: Send + Sync {
/// Reads a file at the specified path and returns its content.
async fn read(
&self,
path: String,
start_line: Option<u64>,
end_line: Option<u64>,
) -> anyhow::Result<ReadOutput>;
}
#[async_trait::async_trait]
pub trait ImageReadService: Send + Sync {
/// Reads an image file at the specified path and returns its content.
async fn read_image(&self, path: String) -> anyhow::Result<forge_domain::Image>;
}
#[async_trait::async_trait]
pub trait FsRemoveService: Send + Sync {
/// Removes a file at the specified path.
async fn remove(&self, path: String) -> anyhow::Result<FsRemoveOutput>;
}
#[async_trait::async_trait]
pub trait FsSearchService: Send + Sync {
/// Searches for files and content based on the provided parameters.
///
/// # Arguments
/// * `params` - Search parameters including pattern, path, output mode,
/// etc.
///
/// # Returns
/// * `Ok(Some(SearchResult))` - Matches found
/// * `Ok(None)` - No matches found
/// * `Err(_)` - Search error
async fn search(&self, params: forge_domain::FSSearch) -> anyhow::Result<Option<SearchResult>>;
}
#[async_trait::async_trait]
pub trait FollowUpService: Send + Sync {
/// Follows up on a tool call with the given context.
async fn follow_up(
&self,
question: String,
options: Vec<String>,
multiple: Option<bool>,
) -> anyhow::Result<Option<String>>;
}
#[async_trait::async_trait]
pub trait FsUndoService: Send + Sync {
/// Undoes the last file operation at the specified path.
/// And returns the content of the undone file.
// TODO: We should move Snapshot service to Services from infra
// and drop FsUndoService.
async fn undo(&self, path: String) -> anyhow::Result<FsUndoOutput>;
}
#[async_trait::async_trait]
pub trait NetFetchService: Send + Sync {
/// Fetches content from a URL and returns it as a string.
async fn fetch(&self, url: String, raw: Option<bool>) -> anyhow::Result<HttpResponse>;
}
#[async_trait::async_trait]
pub trait ShellService: Send + Sync {
/// Executes a shell command and returns the output.
async fn execute(
&self,
command: String,
cwd: PathBuf,
keep_ansi: bool,
silent: bool,
env_vars: Option<Vec<String>>,
description: Option<String>,
) -> anyhow::Result<ShellOutput>;
}
#[async_trait::async_trait]
pub trait AuthService: Send + Sync {
async fn user_info(&self, api_key: &str) -> anyhow::Result<User>;
async fn user_usage(&self, api_key: &str) -> anyhow::Result<UserUsage>;
}
#[async_trait::async_trait]
pub trait AgentRegistry: Send + Sync {
/// Get the active agent ID
async fn get_active_agent_id(&self) -> anyhow::Result<Option<AgentId>>;
/// Set the active agent ID
async fn set_active_agent_id(&self, agent_id: AgentId) -> anyhow::Result<()>;
/// Get all agents from the registry store
async fn get_agents(&self) -> anyhow::Result<Vec<forge_domain::Agent>>;
/// Get lightweight metadata for all agents without requiring a configured
/// provider or model
async fn get_agent_infos(&self) -> anyhow::Result<Vec<forge_domain::AgentInfo>>;
/// Get agent by ID (from registry store)
async fn get_agent(&self, agent_id: &AgentId) -> anyhow::Result<Option<forge_domain::Agent>>;
/// Reload agents by invalidating the cache
async fn reload_agents(&self) -> anyhow::Result<()>;
}
#[async_trait::async_trait]
pub trait CommandLoaderService: Send + Sync {
/// Load all command definitions from the forge/commands directory
async fn get_commands(&self) -> anyhow::Result<Vec<forge_domain::Command>>;
}
#[async_trait::async_trait]
pub trait PolicyService: Send + Sync {
/// Check if an operation is allowed and handle user confirmation if needed
/// Returns PolicyDecision with allowed flag and optional policy file path
/// (only when created)
async fn check_operation_permission(
&self,
operation: &forge_domain::PermissionOperation,
) -> anyhow::Result<PolicyDecision>;
}
/// Skill fetch service
#[async_trait::async_trait]
pub trait SkillFetchService: Send + Sync {
/// Fetches a skill by name
///
/// # Errors
///
/// Returns an error if the skill is not found or cannot be loaded
async fn fetch_skill(&self, skill_name: String) -> anyhow::Result<forge_domain::Skill>;
/// Lists all available skills
///
/// # Errors
///
/// Returns an error if skills cannot be loaded
async fn list_skills(&self) -> anyhow::Result<Vec<forge_domain::Skill>>;
}
/// Provider authentication service
#[async_trait::async_trait]
pub trait ProviderAuthService: Send + Sync {
async fn init_provider_auth(
&self,
provider_id: ProviderId,
method: AuthMethod,
) -> anyhow::Result<AuthContextRequest>;
async fn complete_provider_auth(
&self,
provider_id: ProviderId,
context: AuthContextResponse,
timeout: Duration,
) -> anyhow::Result<()>;
/// Refreshes provider credentials if they're about to expire.
/// Checks if credential needs refresh (5 minute buffer before expiry),
/// iterates through provider's auth methods, and attempts to refresh.
/// Returns the provider with updated credentials, or original if refresh
/// fails or isn't needed.
async fn refresh_provider_credential(
&self,
provider: Provider<Url>,
) -> anyhow::Result<Provider<Url>>;
}
pub trait Services: Send + Sync + 'static + Clone + EnvironmentInfra {
type ProviderService: ProviderService;
type AppConfigService: AppConfigService;
type ConversationService: ConversationService;
type TemplateService: TemplateService;
type AttachmentService: AttachmentService;
type CustomInstructionsService: CustomInstructionsService;
type FileDiscoveryService: FileDiscoveryService;
type McpConfigManager: McpConfigManager;
type FsWriteService: FsWriteService;
type PlanCreateService: PlanCreateService;
type FsPatchService: FsPatchService;
type FsReadService: FsReadService;
type ImageReadService: ImageReadService;
type FsRemoveService: FsRemoveService;
type FsSearchService: FsSearchService;
type FollowUpService: FollowUpService;
type FsUndoService: FsUndoService;
type NetFetchService: NetFetchService;
type ShellService: ShellService;
type McpService: McpService;
type AuthService: AuthService;
type AgentRegistry: AgentRegistry;
type CommandLoaderService: CommandLoaderService;
type PolicyService: PolicyService;
type ProviderAuthService: ProviderAuthService;
type WorkspaceService: WorkspaceService;
type SkillFetchService: SkillFetchService;
fn provider_service(&self) -> &Self::ProviderService;
fn config_service(&self) -> &Self::AppConfigService;
fn conversation_service(&self) -> &Self::ConversationService;
fn template_service(&self) -> &Self::TemplateService;
fn attachment_service(&self) -> &Self::AttachmentService;
fn file_discovery_service(&self) -> &Self::FileDiscoveryService;
fn mcp_config_manager(&self) -> &Self::McpConfigManager;
fn fs_create_service(&self) -> &Self::FsWriteService;
fn plan_create_service(&self) -> &Self::PlanCreateService;
fn fs_patch_service(&self) -> &Self::FsPatchService;
fn fs_read_service(&self) -> &Self::FsReadService;
fn image_read_service(&self) -> &Self::ImageReadService;
fn fs_remove_service(&self) -> &Self::FsRemoveService;
fn fs_search_service(&self) -> &Self::FsSearchService;
fn follow_up_service(&self) -> &Self::FollowUpService;
fn fs_undo_service(&self) -> &Self::FsUndoService;
fn net_fetch_service(&self) -> &Self::NetFetchService;
fn shell_service(&self) -> &Self::ShellService;
fn mcp_service(&self) -> &Self::McpService;
fn custom_instructions_service(&self) -> &Self::CustomInstructionsService;
fn auth_service(&self) -> &Self::AuthService;
fn agent_registry(&self) -> &Self::AgentRegistry;
fn command_loader_service(&self) -> &Self::CommandLoaderService;
fn policy_service(&self) -> &Self::PolicyService;
fn provider_auth_service(&self) -> &Self::ProviderAuthService;
fn workspace_service(&self) -> &Self::WorkspaceService;
fn skill_fetch_service(&self) -> &Self::SkillFetchService;
}
#[async_trait::async_trait]
impl<I: Services> ConversationService for I {
async fn find_conversation(&self, id: &ConversationId) -> anyhow::Result<Option<Conversation>> {
self.conversation_service().find_conversation(id).await
}
async fn upsert_conversation(&self, conversation: Conversation) -> anyhow::Result<()> {
self.conversation_service()
.upsert_conversation(conversation)
.await
}
async fn modify_conversation<F, T>(&self, id: &ConversationId, f: F) -> anyhow::Result<T>
where
F: FnOnce(&mut Conversation) -> T + Send,
T: Send,
{
self.conversation_service().modify_conversation(id, f).await
}
async fn get_conversations(
&self,
limit: Option<usize>,
) -> anyhow::Result<Option<Vec<Conversation>>> {
self.conversation_service().get_conversations(limit).await
}
async fn last_conversation(&self) -> anyhow::Result<Option<Conversation>> {
self.conversation_service().last_conversation().await
}
async fn delete_conversation(&self, conversation_id: &ConversationId) -> anyhow::Result<()> {
self.conversation_service()
.delete_conversation(conversation_id)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> ProviderService for I {
async fn chat(
&self,
model_id: &ModelId,
context: Context,
provider: Provider<Url>,
) -> ResultStream<ChatCompletionMessage, anyhow::Error> {
self.provider_service()
.chat(model_id, context, provider)
.await
}
async fn models(&self, provider: Provider<Url>) -> anyhow::Result<Vec<Model>> {
self.provider_service().models(provider).await
}
async fn get_provider(&self, id: forge_domain::ProviderId) -> anyhow::Result<Provider<Url>> {
self.provider_service().get_provider(id).await
}
async fn get_all_providers(&self) -> anyhow::Result<Vec<AnyProvider>> {
self.provider_service().get_all_providers().await
}
async fn upsert_credential(
&self,
credential: forge_domain::AuthCredential,
) -> anyhow::Result<()> {
self.provider_service().upsert_credential(credential).await
}
async fn remove_credential(&self, id: &forge_domain::ProviderId) -> anyhow::Result<()> {
self.provider_service().remove_credential(id).await
}
async fn migrate_env_credentials(
&self,
) -> anyhow::Result<Option<forge_domain::MigrationResult>> {
self.provider_service().migrate_env_credentials().await
}
}
#[async_trait::async_trait]
impl<I: Services> McpConfigManager for I {
async fn read_mcp_config(&self, scope: Option<&Scope>) -> anyhow::Result<McpConfig> {
self.mcp_config_manager().read_mcp_config(scope).await
}
async fn write_mcp_config(&self, config: &McpConfig, scope: &Scope) -> anyhow::Result<()> {
self.mcp_config_manager()
.write_mcp_config(config, scope)
.await
}
async fn filter_trusted(&self, raw: McpConfig) -> anyhow::Result<McpConfig> {
self.mcp_config_manager().filter_trusted(raw).await
}
}
#[async_trait::async_trait]
impl<I: Services> McpService for I {
async fn get_mcp_servers(&self) -> anyhow::Result<McpServers> {
self.mcp_service().get_mcp_servers().await
}
async fn execute_mcp(&self, call: ToolCallFull) -> anyhow::Result<ToolOutput> {
self.mcp_service().execute_mcp(call).await
}
async fn reload_mcp(&self) -> anyhow::Result<()> {
self.mcp_service().reload_mcp().await
}
async fn init_mcp(&self) -> anyhow::Result<()> {
self.mcp_service().init_mcp().await
}
}
#[async_trait::async_trait]
impl<I: Services> TemplateService for I {
async fn register_template(&self, path: PathBuf) -> anyhow::Result<()> {
self.template_service().register_template(path).await
}
async fn render_template<V: serde::Serialize + Send + Sync>(
&self,
template: Template<V>,
object: &V,
) -> anyhow::Result<String> {
self.template_service()
.render_template(template, object)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> AttachmentService for I {
async fn attachments(&self, url: &str) -> anyhow::Result<Vec<Attachment>> {
self.attachment_service().attachments(url).await
}
}
#[async_trait::async_trait]
impl<I: Services> FileDiscoveryService for I {
async fn collect_files(&self, config: Walker) -> anyhow::Result<Vec<File>> {
self.file_discovery_service().collect_files(config).await
}
async fn list_current_directory(&self) -> anyhow::Result<Vec<File>> {
self.file_discovery_service().list_current_directory().await
}
}
#[async_trait::async_trait]
impl<I: Services> FsWriteService for I {
async fn write(
&self,
path: String,
content: String,
overwrite: bool,
) -> anyhow::Result<FsWriteOutput> {
self.fs_create_service()
.write(path, content, overwrite)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> PlanCreateService for I {
async fn create_plan(
&self,
plan_name: String,
version: String,
content: String,
) -> anyhow::Result<PlanCreateOutput> {
self.plan_create_service()
.create_plan(plan_name, version, content)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> FsPatchService for I {
async fn patch(
&self,
path: String,
search: String,
content: String,
replace_all: bool,
) -> anyhow::Result<PatchOutput> {
self.fs_patch_service()
.patch(path, search, content, replace_all)
.await
}
async fn multi_patch(
&self,
path: String,
edits: Vec<forge_domain::PatchEdit>,
) -> anyhow::Result<PatchOutput> {
self.fs_patch_service().multi_patch(path, edits).await
}
}
#[async_trait::async_trait]
impl<I: Services> FsReadService for I {
async fn read(
&self,
path: String,
start_line: Option<u64>,
end_line: Option<u64>,
) -> anyhow::Result<ReadOutput> {
self.fs_read_service()
.read(path, start_line, end_line)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> ImageReadService for I {
async fn read_image(&self, path: String) -> anyhow::Result<Image> {
self.image_read_service().read_image(path).await
}
}
#[async_trait::async_trait]
impl<I: Services> FsRemoveService for I {
async fn remove(&self, path: String) -> anyhow::Result<FsRemoveOutput> {
self.fs_remove_service().remove(path).await
}
}
#[async_trait::async_trait]
impl<I: Services> FsSearchService for I {
async fn search(&self, params: forge_domain::FSSearch) -> anyhow::Result<Option<SearchResult>> {
self.fs_search_service().search(params).await
}
}
#[async_trait::async_trait]
impl<I: Services> FollowUpService for I {
async fn follow_up(
&self,
question: String,
options: Vec<String>,
multiple: Option<bool>,
) -> anyhow::Result<Option<String>> {
self.follow_up_service()
.follow_up(question, options, multiple)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> FsUndoService for I {
async fn undo(&self, path: String) -> anyhow::Result<FsUndoOutput> {
self.fs_undo_service().undo(path).await
}
}
#[async_trait::async_trait]
impl<I: Services> NetFetchService for I {
async fn fetch(&self, url: String, raw: Option<bool>) -> anyhow::Result<HttpResponse> {
self.net_fetch_service().fetch(url, raw).await
}
}
#[async_trait::async_trait]
impl<I: Services> ShellService for I {
async fn execute(
&self,
command: String,
cwd: PathBuf,
keep_ansi: bool,
silent: bool,
env_vars: Option<Vec<String>>,
description: Option<String>,
) -> anyhow::Result<ShellOutput> {
self.shell_service()
.execute(command, cwd, keep_ansi, silent, env_vars, description)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> CustomInstructionsService for I {
async fn get_custom_instructions(&self) -> Vec<String> {
self.custom_instructions_service()
.get_custom_instructions()
.await
}
}
#[async_trait::async_trait]
impl<I: Services> AuthService for I {
async fn user_info(&self, api_key: &str) -> anyhow::Result<User> {
self.auth_service().user_info(api_key).await
}
async fn user_usage(&self, api_key: &str) -> anyhow::Result<UserUsage> {
self.auth_service().user_usage(api_key).await
}
}
/// HTTP service trait for making HTTP requests
#[async_trait::async_trait]
pub trait HttpClientService: Send + Sync + 'static {
async fn get(&self, url: &Url, headers: Option<HeaderMap>) -> anyhow::Result<Response>;
async fn post(&self, url: &Url, body: bytes::Bytes) -> anyhow::Result<Response>;
async fn delete(&self, url: &Url) -> anyhow::Result<Response>;
/// Posts JSON data and returns a server-sent events stream
async fn eventsource(
&self,
url: &Url,
headers: Option<HeaderMap>,
body: Bytes,
) -> anyhow::Result<EventSource>;
}
#[async_trait::async_trait]
impl<I: Services> AgentRegistry for I {
async fn get_active_agent_id(&self) -> anyhow::Result<Option<AgentId>> {
self.agent_registry().get_active_agent_id().await
}
async fn set_active_agent_id(&self, agent_id: AgentId) -> anyhow::Result<()> {
self.agent_registry().set_active_agent_id(agent_id).await
}
async fn get_agents(&self) -> anyhow::Result<Vec<forge_domain::Agent>> {
self.agent_registry().get_agents().await
}
async fn get_agent_infos(&self) -> anyhow::Result<Vec<forge_domain::AgentInfo>> {
self.agent_registry().get_agent_infos().await
}
async fn get_agent(&self, agent_id: &AgentId) -> anyhow::Result<Option<forge_domain::Agent>> {
self.agent_registry().get_agent(agent_id).await
}
async fn reload_agents(&self) -> anyhow::Result<()> {
self.agent_registry().reload_agents().await
}
}
#[async_trait::async_trait]
impl<I: Services> CommandLoaderService for I {
async fn get_commands(&self) -> anyhow::Result<Vec<forge_domain::Command>> {
self.command_loader_service().get_commands().await
}
}
#[async_trait::async_trait]
impl<I: Services> PolicyService for I {
async fn check_operation_permission(
&self,
operation: &forge_domain::PermissionOperation,
) -> anyhow::Result<PolicyDecision> {
self.policy_service()
.check_operation_permission(operation)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> AppConfigService for I {
async fn get_session_config(&self) -> Option<forge_domain::ModelConfig> {
self.config_service().get_session_config().await
}
async fn get_commit_config(&self) -> anyhow::Result<Option<forge_domain::ModelConfig>> {
self.config_service().get_commit_config().await
}
async fn get_suggest_config(&self) -> anyhow::Result<Option<forge_domain::ModelConfig>> {
self.config_service().get_suggest_config().await
}
async fn get_reasoning_effort(&self) -> anyhow::Result<Option<forge_domain::Effort>> {
self.config_service().get_reasoning_effort().await
}
async fn update_config(&self, ops: Vec<forge_domain::ConfigOperation>) -> anyhow::Result<()> {
self.config_service().update_config(ops).await
}
}
#[async_trait::async_trait]
impl<I: Services> SkillFetchService for I {
async fn fetch_skill(&self, skill_name: String) -> anyhow::Result<forge_domain::Skill> {
self.skill_fetch_service().fetch_skill(skill_name).await
}
async fn list_skills(&self) -> anyhow::Result<Vec<forge_domain::Skill>> {
self.skill_fetch_service().list_skills().await
}
}
#[async_trait::async_trait]
impl<I: Services> ProviderAuthService for I {
async fn init_provider_auth(
&self,
provider_id: ProviderId,
method: AuthMethod,
) -> anyhow::Result<AuthContextRequest> {
self.provider_auth_service()
.init_provider_auth(provider_id, method)
.await
}
async fn complete_provider_auth(
&self,
provider_id: ProviderId,
context: AuthContextResponse,
timeout: Duration,
) -> anyhow::Result<()> {
self.provider_auth_service()
.complete_provider_auth(provider_id, context, timeout)
.await
}
async fn refresh_provider_credential(
&self,
provider: Provider<Url>,
) -> anyhow::Result<Provider<Url>> {
self.provider_auth_service()
.refresh_provider_credential(provider)
.await
}
}
#[async_trait::async_trait]
impl<I: Services> WorkspaceService for I {
async fn sync_workspace(
&self,
path: PathBuf,
) -> anyhow::Result<forge_stream::MpscStream<anyhow::Result<SyncProgress>>> {
self.workspace_service().sync_workspace(path).await
}
async fn query_workspace(
&self,
path: PathBuf,
params: SearchParams<'_>,
) -> anyhow::Result<Vec<Node>> {
self.workspace_service().query_workspace(path, params).await
}
async fn list_workspaces(&self) -> anyhow::Result<Vec<WorkspaceInfo>> {
self.workspace_service().list_workspaces().await
}
async fn get_workspace_info(&self, path: PathBuf) -> anyhow::Result<Option<WorkspaceInfo>> {
self.workspace_service().get_workspace_info(path).await
}
async fn delete_workspace(&self, workspace_id: &WorkspaceId) -> anyhow::Result<()> {
self.workspace_service()
.delete_workspace(workspace_id)
.await
}
async fn delete_workspaces(&self, workspace_ids: &[WorkspaceId]) -> anyhow::Result<()> {
self.workspace_service()
.delete_workspaces(workspace_ids)
.await
}
async fn is_indexed(&self, path: &Path) -> anyhow::Result<bool> {
self.workspace_service().is_indexed(path).await
}
async fn get_workspace_status(&self, path: PathBuf) -> anyhow::Result<Vec<FileStatus>> {
self.workspace_service().get_workspace_status(path).await
}
async fn is_authenticated(&self) -> anyhow::Result<bool> {
self.workspace_service().is_authenticated().await
}
async fn init_auth_credentials(&self) -> anyhow::Result<WorkspaceAuth> {
self.workspace_service().init_auth_credentials().await
}
async fn init_workspace(&self, path: PathBuf) -> anyhow::Result<WorkspaceId> {
self.workspace_service().init_workspace(path).await
}
}
|