123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- // enums.go - libaplm enumerations.
- //
- // Copyright (c) 2013 The go-alpm Authors
- //
- // MIT Licensed. See LICENSE for details.
- package alpm
- // Install reason of a package.
- type PkgReason uint
- const (
- PkgReasonExplicit PkgReason = 0
- PkgReasonDepend PkgReason = 1
- )
- func (r PkgReason) String() string {
- switch r {
- case PkgReasonExplicit:
- return "Explicitly installed"
- case PkgReasonDepend:
- return "Installed as a dependency of another package"
- }
- return ""
- }
- // Source of a package structure.
- type PkgFrom uint
- const (
- FromFile PkgFrom = iota + 1
- FromLocalDB
- FromSyncDB
- )
- // Dependency constraint types.
- type DepMod uint
- const (
- DepModAny DepMod = iota + 1 // Any version.
- DepModEq // Specific version.
- DepModGE // Test for >= some version.
- DepModLE // Test for <= some version.
- DepModGT // Test for > some version.
- DepModLT // Test for < some version.
- )
- func (mod DepMod) String() string {
- switch mod {
- case DepModEq:
- return "="
- case DepModGE:
- return ">="
- case DepModLE:
- return "<="
- case DepModGT:
- return ">"
- case DepModLT:
- return "<"
- }
- return ""
- }
- // Signature checking level.
- type SigLevel int
- const (
- SigPackage SigLevel = 1 << iota
- SigPackageOptional
- SigPackageMarginalOk
- SigPackageUnknownOk
- )
- const (
- SigDatabase SigLevel = 1 << (10 + iota)
- SigDatabaseOptional
- SigDatabaseMarginalOk
- SigDatabaseUnknownOk
- )
- const SigUseDefault SigLevel = 1 << 30
- // Signature status
- type SigStatus int
- const (
- SigStatusValid SigStatus = iota
- SigStatusKeyExpired
- SigStatusSigExpired
- SigStatusKeyUnknown
- SigStatusKeyDisabled
- )
- type LogLevel uint16
- // Logging levels.
- const (
- LogError LogLevel = 1 << iota
- LogWarning
- LogDebug
- LogFunction
- )
- type QuestionType uint
- const (
- QuestionTypeInstallIgnorepkg QuestionType = 1 << iota
- QuestionTypeReplacePkg
- QuestionTypeConflictPkg
- QuestionTypeCorruptedPkg
- QuestionTypeRemovePkgs
- QuestionTypeSelectProvider
- QuestionTypeImportKey
- )
- type Validation int
- const (
- ValidationNone Validation = 1 << iota
- ValidationMD5Sum
- ValidationSHA256Sum
- ValidationSignature
- ValidationUnkown Validation = 0
- )
- type Usage int
- const (
- UsageSync Usage = 1 << iota
- UsageSearch
- UsageInstall
- UsageUpgrade
- UsageAll = (1 << 4) - 1
- )
- type TransFlag int
- const (
- TransFlagNoDeps TransFlag = 1 << iota
- TransFlagForce
- TransFlagNoSave
- TransFlagNoDepVersion
- TransFlagCascade
- TransFlagRecurse
- // 7 is missing
- _
- TransFlagDbOnly
- TransFlagAllDeps
- TransFlagDownloadOnly
- TransFlagNoScriptlets
- // 12 is missing
- _
- TransFlagNoConflicts
- TransFlagNeeded
- TransFlagAllExplicit
- TransFlagUnneeded
- TransFlagRecurseAll
- TransFlagNoLock
- )
|