blob: 2fc6583f351500baaf098e04c02d5a5e9b350298 (
plain) (
blame)
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 transactional
import "gopkg.in/src-d/go-git.v4/config"
type ConfigStorage struct {
config.ConfigStorer
temporal config.ConfigStorer
set bool
}
func NewConfigStorage(s, temporal config.ConfigStorer) *ConfigStorage {
return &ConfigStorage{ConfigStorer: s, temporal: temporal}
}
func (c *ConfigStorage) SetConfig(cfg *config.Config) error {
if err := c.temporal.SetConfig(cfg); err != nil {
return err
}
c.set = true
return nil
}
func (c *ConfigStorage) Commit() error {
if !c.set {
return nil
}
cfg, err := c.temporal.Config()
if err != nil {
return err
}
return c.ConfigStorer.SetConfig(cfg)
}
|