summaryrefslogtreecommitdiff
path: root/libpod/sql_state.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-07 12:24:56 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-08 16:40:21 +0000
commitc657511bce7bc1c5da4b5554a4850aa4046711b0 (patch)
tree7f369caa423e86e7a5751abc433f7052a019374b /libpod/sql_state.go
parentfcc36633557fd52daa2f48dbeb991d89fd5645bc (diff)
downloadpodman-c657511bce7bc1c5da4b5554a4850aa4046711b0.tar.gz
podman-c657511bce7bc1c5da4b5554a4850aa4046711b0.tar.bz2
podman-c657511bce7bc1c5da4b5554a4850aa4046711b0.zip
Add location in DB for saving files to bind mount in
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #462 Approved by: baude
Diffstat (limited to 'libpod/sql_state.go')
-rw-r--r--libpod/sql_state.go30
1 files changed, 24 insertions, 6 deletions
diff --git a/libpod/sql_state.go b/libpod/sql_state.go
index 41cc435cc..f583febda 100644
--- a/libpod/sql_state.go
+++ b/libpod/sql_state.go
@@ -16,7 +16,7 @@ import (
// DBSchema is the current DB schema version
// Increments every time a change is made to the database's tables
-const DBSchema = 13
+const DBSchema = 14
// SQLState is a state implementation backed by a persistent SQLite3 database
type SQLState struct {
@@ -105,7 +105,8 @@ func (s *SQLState) Refresh() (err error) {
NetNSPath=?,
ExecSessions=?,
IPs=?,
- Routes=?;`
+ Routes=?,
+ BindMounts=?;`
if !s.valid {
return ErrDBClosed
@@ -136,7 +137,8 @@ func (s *SQLState) Refresh() (err error) {
"",
"{}",
"[]",
- "[]")
+ "[]",
+ "{}")
if err != nil {
return errors.Wrapf(err, "error refreshing database state")
}
@@ -274,7 +276,8 @@ func (s *SQLState) UpdateContainer(ctr *Container) error {
NetNSPath,
ExecSessions,
IPs,
- Routes
+ Routes,
+ BindMounts
FROM containerState WHERE ID=?;`
var (
@@ -291,6 +294,7 @@ func (s *SQLState) UpdateContainer(ctr *Container) error {
execSessions string
ipsJSON string
routesJSON string
+ bindMountsJSON string
)
if !s.valid {
@@ -315,7 +319,8 @@ func (s *SQLState) UpdateContainer(ctr *Container) error {
&netNSPath,
&execSessions,
&ipsJSON,
- &routesJSON)
+ &routesJSON,
+ &bindMountsJSON)
if err != nil {
// The container may not exist in the database
if err == sql.ErrNoRows {
@@ -359,6 +364,12 @@ func (s *SQLState) UpdateContainer(ctr *Container) error {
newState.Routes = routes
}
+ bindMounts := make(map[string]string)
+ if err := json.Unmarshal([]byte(bindMountsJSON), &bindMounts); err != nil {
+ return errors.Wrapf(err, "error parsing container %s bind mounts JSON", ctr.ID())
+ }
+ newState.BindMounts = bindMounts
+
if newState.Mountpoint != "" {
newState.Mounted = true
}
@@ -422,7 +433,8 @@ func (s *SQLState) SaveContainer(ctr *Container) (err error) {
NetNSPath=?,
ExecSessions=?,
IPs=?,
- Routes=?
+ Routes=?,
+ BindMounts=?
WHERE Id=?;`
if !ctr.valid {
@@ -449,6 +461,11 @@ func (s *SQLState) SaveContainer(ctr *Container) (err error) {
return errors.Wrapf(err, "error marshalling container %s routes to JSON", ctr.ID())
}
+ bindMountsJSON, err := json.Marshal(ctr.state.BindMounts)
+ if err != nil {
+ return errors.Wrapf(err, "error marshalling container %s bind mounts to JSON", ctr.ID())
+ }
+
if !s.valid {
return ErrDBClosed
}
@@ -482,6 +499,7 @@ func (s *SQLState) SaveContainer(ctr *Container) (err error) {
execSessionsJSON,
ipsJSON,
routesJSON,
+ bindMountsJSON,
ctr.ID())
if err != nil {
return errors.Wrapf(err, "error updating container %s state in database", ctr.ID())