File: context.go

package info (click to toggle)
aptly 1.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 49,928 kB
  • sloc: python: 10,398; sh: 252; makefile: 184
file content (36 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (6)
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
package cmd

import (
	ctx "github.com/aptly-dev/aptly/context"
	"github.com/smira/flag"
)

var context *ctx.AptlyContext

// ShutdownContext shuts context down
func ShutdownContext() {
	context.Shutdown()
}

// CleanupContext does partial shutdown of context
func CleanupContext() {
	context.Cleanup()
}

// InitContext initializes context with default settings
func InitContext(flags *flag.FlagSet) error {
	var err error

	if context != nil {
		panic("context already initialized")
	}

	context, err = ctx.NewContext(flags)

	return err
}

// GetContext gives access to the context
func GetContext() *ctx.AptlyContext {
	return context
}