litestream 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/litestream/commands.rb +19 -18
- data/lib/litestream/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1633c03c287fff1a52b19f8f626c402d29dded8f9d89ff7322f2d423dcb8224
|
4
|
+
data.tar.gz: e7758adbc37e052f8a77ca5cb2b54b3695d4931493bc741791f3fa8e462021ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dfdda1fef5de161f13418a2d2bd5eea97a522c16296f8fdf5828f9e9c2e03d035efd8b60f76c2cbf201141de26e992cf69ee56d0d587e6ca880b08082e65f4b
|
7
|
+
data.tar.gz: f0346447a34190849d752113227890a53c6155589c21471c33cbba10dc0e40c87bb7224573f01c40eca67938428cd2dc04beaacd9c4f64d34a1c1e733cb5ea7b
|
data/lib/litestream/commands.rb
CHANGED
@@ -17,8 +17,8 @@ module Litestream
|
|
17
17
|
# raised when a litestream command requires a database argument but it isn't provided
|
18
18
|
DatabaseRequiredException = Class.new(StandardError)
|
19
19
|
|
20
|
-
# raised when litestream fails
|
21
|
-
|
20
|
+
# raised when a litestream command fails
|
21
|
+
CommandFailedException = Class.new(StandardError)
|
22
22
|
|
23
23
|
class << self
|
24
24
|
def platform
|
@@ -77,16 +77,14 @@ module Litestream
|
|
77
77
|
end
|
78
78
|
|
79
79
|
def replicate(async: false, **argv)
|
80
|
-
execute("replicate", argv, async: async,
|
80
|
+
execute("replicate", argv, async: async, tabled_output: false)
|
81
81
|
end
|
82
82
|
|
83
83
|
def restore(database, async: false, **argv)
|
84
84
|
raise DatabaseRequiredException, "database argument is required for restore command, e.g. litestream:restore -- --database=path/to/database.sqlite" if database.nil?
|
85
85
|
argv.stringify_keys!
|
86
86
|
|
87
|
-
execute("restore", argv, database, async: async,
|
88
|
-
|
89
|
-
argv["-o"] || database
|
87
|
+
execute("restore", argv, database, async: async, tabled_output: false)
|
90
88
|
end
|
91
89
|
|
92
90
|
def verify(database, async: false, **argv)
|
@@ -101,10 +99,7 @@ module Litestream
|
|
101
99
|
args = {
|
102
100
|
"-o" => backup
|
103
101
|
}.merge(argv)
|
104
|
-
|
105
|
-
backup = restore(database, async: false, **args)
|
106
|
-
|
107
|
-
raise BackupFailedException, "Failed to create backup for validation" unless File.exist?(backup)
|
102
|
+
restore(database, async: false, **args)
|
108
103
|
|
109
104
|
restored_tables_count = `sqlite3 #{backup} "select count(*) from sqlite_schema where type='table';"`.chomp.to_i
|
110
105
|
restored_size = File.size(backup)
|
@@ -120,26 +115,32 @@ module Litestream
|
|
120
115
|
end
|
121
116
|
|
122
117
|
def databases(async: false, **argv)
|
123
|
-
execute("databases", argv, async: async,
|
118
|
+
execute("databases", argv, async: async, tabled_output: true)
|
124
119
|
end
|
125
120
|
|
126
121
|
def generations(database, async: false, **argv)
|
127
122
|
raise DatabaseRequiredException, "database argument is required for generations command, e.g. litestream:generations -- --database=path/to/database.sqlite" if database.nil?
|
128
123
|
|
129
|
-
execute("generations", argv, database, async: async,
|
124
|
+
execute("generations", argv, database, async: async, tabled_output: true)
|
130
125
|
end
|
131
126
|
|
132
127
|
def snapshots(database, async: false, **argv)
|
133
128
|
raise DatabaseRequiredException, "database argument is required for snapshots command, e.g. litestream:snapshots -- --database=path/to/database.sqlite" if database.nil?
|
134
129
|
|
135
|
-
execute("snapshots", argv, database, async: async,
|
130
|
+
execute("snapshots", argv, database, async: async, tabled_output: true)
|
136
131
|
end
|
137
132
|
|
138
133
|
private
|
139
134
|
|
140
|
-
def execute(command, argv = {}, database = nil, async: false,
|
135
|
+
def execute(command, argv = {}, database = nil, async: false, tabled_output: false)
|
141
136
|
cmd = prepare(command, argv, database)
|
142
|
-
run(cmd, async: async,
|
137
|
+
results = run(cmd, async: async, tabled_output: tabled_output)
|
138
|
+
|
139
|
+
if Array === results && results.one? && results[0]["level"] == "ERROR"
|
140
|
+
raise CommandFailedException, "Failed to execute `#{cmd.join(" ")}`; Reason: #{results[0]["error"]}"
|
141
|
+
else
|
142
|
+
results
|
143
|
+
end
|
143
144
|
end
|
144
145
|
|
145
146
|
def prepare(command, argv = {}, database = nil)
|
@@ -158,14 +159,14 @@ module Litestream
|
|
158
159
|
cmd
|
159
160
|
end
|
160
161
|
|
161
|
-
def run(cmd, async: false,
|
162
|
+
def run(cmd, async: false, tabled_output: false)
|
162
163
|
if async
|
163
164
|
# To release the resources of the Ruby process, just fork and exit.
|
164
165
|
# The forked process executes litestream and replaces itself.
|
165
166
|
exec(*cmd) if fork.nil?
|
166
167
|
else
|
167
|
-
|
168
|
-
text_table_to_hashes(
|
168
|
+
stdout = `#{cmd.join(" ")}`.champ
|
169
|
+
tabled_output ? text_table_to_hashes(stdout) : stdout.split("\n").map { Logfmt.parse(_1) }
|
169
170
|
end
|
170
171
|
end
|
171
172
|
|
data/lib/litestream/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: litestream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Margheim
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: logfmt
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.0.10
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.0.10
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: rubyzip
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|