Documentation
¶
Index ¶
- type KnowledgeEnhancedMatcher
- func (m *KnowledgeEnhancedMatcher) FormatPackageWithVersion(packageName, version, language string) string
- func (m *KnowledgeEnhancedMatcher) GetLatestStableVersion(component *kbtypes.Component) *kbtypes.Version
- func (m *KnowledgeEnhancedMatcher) Match(existingDeps []string, plan types.InstallPlan, kb *knowledge.Knowledge) []string
- type Matcher
- type PlanMatcher
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KnowledgeEnhancedMatcher ¶
type KnowledgeEnhancedMatcher struct {
*PlanMatcher
// contains filtered or unexported fields
}
KnowledgeEnhancedMatcher extends the base matcher with knowledge base version resolution
func (*KnowledgeEnhancedMatcher) FormatPackageWithVersion ¶
func (m *KnowledgeEnhancedMatcher) FormatPackageWithVersion(packageName, version, language string) string
FormatPackageWithVersion formats a package name with version based on language conventions
func (*KnowledgeEnhancedMatcher) GetLatestStableVersion ¶
func (m *KnowledgeEnhancedMatcher) GetLatestStableVersion(component *kbtypes.Component) *kbtypes.Version
GetLatestStableVersion returns the latest stable version of a component
func (*KnowledgeEnhancedMatcher) Match ¶
func (m *KnowledgeEnhancedMatcher) Match(existingDeps []string, plan types.InstallPlan, kb *knowledge.Knowledge) []string
Match computes missing dependencies with specific versions from the knowledge base
type Matcher ¶
type Matcher interface {
Match(existingDeps []string, plan types.InstallPlan, kb *knowledge.Knowledge) []string
}
Matcher computes required dependencies based on plan and existing deps
func NewKnowledgeEnhancedMatcher ¶
NewKnowledgeEnhancedMatcher creates a new knowledge-enhanced matcher
type PlanMatcher ¶
type PlanMatcher struct{}
PlanMatcher implements Matcher using InstallPlan and prerequisites
func (*PlanMatcher) Match ¶
func (m *PlanMatcher) Match(existingDeps []string, plan types.InstallPlan, kb *knowledge.Knowledge) []string
Match computes missing dependencies based on the install plan
Click to show internal directories.
Click to hide internal directories.