db-gui 0.0.3 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +2 -3
- data/VERSION +1 -1
- data/app/db_gui/model/{db_config.rb → db.rb} +49 -23
- data/app/db_gui/view/db_command_form.rb +7 -7
- data/app/db_gui/view/db_command_result_table.rb +6 -6
- data/app/db_gui/view/db_config_form.rb +14 -14
- data/app/db_gui/view/db_gui_application.rb +6 -6
- metadata +3 -4
- data/app/db_gui/presenter/db_gui_presenter.rb +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b070cff693f1d1416c8b30af8e004ef0c11832b498825f7cabbda62e15f553f6
|
4
|
+
data.tar.gz: 219ad78e67ea7a7fc9fcb10e26daadfe4f58ffd797a6eee6983492128b656c6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04ac2266301b0bfb854d698b82ccb5f29e0aff6d23d882140975a4234840b85c3fdd996c1c80c18d89c4473ee4055ebcf169bc51ae560b211cf083c9c6cd4c9a
|
7
|
+
data.tar.gz: 138346868157342145069c35d60b1773e21a86b8b503b615705387e2bc51fb245cfc2d51ba19c99c10ae3bf081c042131b1ed908af1e6fedc12460dc01638a8b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.1.0
|
4
|
+
|
5
|
+
- Save last DB command
|
6
|
+
- Move saved configuration from ~/.db_gui as a file to ~/.db_gui as a directory with multiple files underneath: ~/.db_gui/.db_configs & ~/.db_gui/.db_commands
|
7
|
+
|
8
|
+
## 0.0.4
|
9
|
+
|
10
|
+
- Make SQL command entry a non_wrapping_multiline_entry
|
11
|
+
|
3
12
|
## 0.0.3
|
4
13
|
|
5
14
|
- Show count of rows produced by a DB command result
|
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
|
-
# DB GUI (Database Graphical User Interface) 0.0
|
1
|
+
# DB GUI (Database Graphical User Interface) 0.1.0
|
2
2
|
## [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 /> Glimmer DSL for LibUI Application](https://github.com/AndyObtiva/glimmer-dsl-libui)
|
3
3
|
[](http://badge.fury.io/rb/db-gui)
|
4
4
|
|
5
|
-
|
6
5
|
This is an early alpha database graphical user interface that enables interaction with a relational SQL database.
|
7
6
|
|
8
7
|
It currently supports PostgreSQL as a start, with the potential of supporting many other databases in the future.
|
@@ -13,7 +12,7 @@ It currently supports PostgreSQL as a start, with the potential of supporting ma
|
|
13
12
|
|
14
13
|
Run:
|
15
14
|
```
|
16
|
-
gem install db-gui -v0.0
|
15
|
+
gem install db-gui -v0.1.0
|
17
16
|
```
|
18
17
|
|
19
18
|
## Usage
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.1.0
|
@@ -1,10 +1,14 @@
|
|
1
|
+
require 'fileutils'
|
1
2
|
require 'timeout'
|
2
3
|
|
3
4
|
class DbGui
|
4
5
|
module Model
|
5
|
-
|
6
|
-
|
7
|
-
|
6
|
+
Db = Struct.new(:host, :port, :dbname, :username, :password, keyword_init: true) do
|
7
|
+
DIR_DB_GUI = File.expand_path(File.join('~', '.db_gui'))
|
8
|
+
FileUtils.rm(DIR_DB_GUI) if File.file?(DIR_DB_GUI)
|
9
|
+
FileUtils.mkdir_p(DIR_DB_GUI)
|
10
|
+
FILE_DB_CONFIGS = File.expand_path(File.join(DIR_DB_GUI, '.db_configs'))
|
11
|
+
FILE_DB_COMMANDS = File.expand_path(File.join(DIR_DB_GUI, '.db_commands'))
|
8
12
|
|
9
13
|
attr_accessor :connected
|
10
14
|
alias connected? connected
|
@@ -17,7 +21,8 @@ class DbGui
|
|
17
21
|
self.db_command_result = ''
|
18
22
|
self.db_command_timeout = (ENV['DB_COMMAND_TIMEOUT_IN_MILLISECONDS'] || 300).to_i
|
19
23
|
load_db_config
|
20
|
-
|
24
|
+
load_db_command
|
25
|
+
connect if to_h.except(:password).none? {|value| value.nil? || (value.respond_to?(:empty?) && value.empty?) }
|
21
26
|
end
|
22
27
|
|
23
28
|
def toggle_connection
|
@@ -58,6 +63,7 @@ class DbGui
|
|
58
63
|
|
59
64
|
def run_db_command
|
60
65
|
run_io_command(db_command)
|
66
|
+
save_db_command
|
61
67
|
end
|
62
68
|
|
63
69
|
def db_command_result_count
|
@@ -86,18 +92,34 @@ class DbGui
|
|
86
92
|
|
87
93
|
def save_db_config
|
88
94
|
db_config_hash = to_h
|
89
|
-
|
90
|
-
|
95
|
+
db_configs_array = [db_config_hash] # TODO in the future, support storing multiple DB configs
|
96
|
+
db_configs_file_content = YAML.dump(db_configs_array)
|
97
|
+
File.write(FILE_DB_CONFIGS, db_configs_file_content)
|
91
98
|
end
|
92
99
|
|
93
100
|
def load_db_config
|
94
|
-
|
95
|
-
|
101
|
+
db_configs_file_content = File.read(FILE_DB_CONFIGS)
|
102
|
+
db_configs_array = [YAML.load(db_configs_file_content)].flatten
|
103
|
+
db_config_hash = db_configs_array.first # TODO in the future, support loading multiple DB configs
|
96
104
|
db_config_hash.each do |attribute, value|
|
97
105
|
self.send("#{attribute}=", value)
|
98
106
|
end
|
99
107
|
rescue => e
|
100
|
-
puts "No database
|
108
|
+
puts "No database configurations stored yet. #{e.message}"
|
109
|
+
end
|
110
|
+
|
111
|
+
def save_db_command
|
112
|
+
db_commands_array = [db_command] # TODO in the future, support storing multiple DB configs
|
113
|
+
db_commands_file_content = YAML.dump(db_commands_array)
|
114
|
+
File.write(FILE_DB_COMMANDS, db_commands_file_content)
|
115
|
+
end
|
116
|
+
|
117
|
+
def load_db_command
|
118
|
+
db_commands_file_content = File.read(FILE_DB_COMMANDS)
|
119
|
+
db_commands_array = YAML.load(db_commands_file_content)
|
120
|
+
self.db_command = db_commands_array.first
|
121
|
+
rescue => e
|
122
|
+
puts "No database commands stored yet. #{e.message}"
|
101
123
|
end
|
102
124
|
|
103
125
|
def io_gets
|
@@ -110,24 +132,28 @@ class DbGui
|
|
110
132
|
|
111
133
|
def db_command_result_count_headers_rows
|
112
134
|
if @db_command_result_count_headers_rows.nil? || db_command_result != @last_db_command_result
|
113
|
-
|
114
|
-
headers = rows = []
|
115
|
-
db_command_result_lines = db_command_result.lines
|
116
|
-
db_command_result_lines.pop if db_command_result_lines.last == "\n"
|
117
|
-
if db_command_result_lines.any?
|
118
|
-
headers = db_command_result_lines.first.split('|').map(&:strip)
|
119
|
-
count_footer = db_command_result_lines.last
|
120
|
-
count_match = count_footer.match(/^\((\d+) row/)
|
121
|
-
if count_match
|
122
|
-
count = count_match[1].to_i
|
123
|
-
rows = db_command_result_lines[2..-2].map {|row| row.split('|').map(&:strip) }
|
124
|
-
end
|
125
|
-
end
|
126
|
-
@db_command_result_count_headers_rows = [count, headers, rows]
|
135
|
+
@db_command_result_count_headers_rows = compute_db_command_result_count_headers_rows
|
127
136
|
@last_db_command_result = db_command_result
|
128
137
|
end
|
129
138
|
@db_command_result_count_headers_rows
|
130
139
|
end
|
140
|
+
|
141
|
+
def compute_db_command_result_count_headers_rows
|
142
|
+
count = 0
|
143
|
+
headers = rows = []
|
144
|
+
db_command_result_lines = db_command_result.lines
|
145
|
+
db_command_result_lines.pop if db_command_result_lines.last == "\n"
|
146
|
+
if db_command_result_lines.any?
|
147
|
+
headers = db_command_result_lines.first.split('|').map(&:strip)
|
148
|
+
count_footer = db_command_result_lines.last
|
149
|
+
count_match = count_footer.match(/^\((\d+) row/)
|
150
|
+
if count_match
|
151
|
+
count = count_match[1].to_i
|
152
|
+
rows = db_command_result_lines[2..-2].map {|row| row.split('|').map(&:strip) }
|
153
|
+
end
|
154
|
+
end
|
155
|
+
[count, headers, rows]
|
156
|
+
end
|
131
157
|
end
|
132
158
|
end
|
133
159
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require 'db_gui/model/
|
1
|
+
require 'db_gui/model/db'
|
2
2
|
|
3
3
|
class DbGui
|
4
4
|
module View
|
@@ -7,12 +7,12 @@ class DbGui
|
|
7
7
|
|
8
8
|
TIMEOUT_MAX_IN_MILLISECONDS = (ENV['TIMEOUT_MAX_IN_MILLISECONDS'] || 60*60*1000).to_i
|
9
9
|
|
10
|
-
option :
|
10
|
+
option :db
|
11
11
|
|
12
12
|
body {
|
13
13
|
vertical_box {
|
14
|
-
|
15
|
-
text <=> [
|
14
|
+
non_wrapping_multiline_entry {
|
15
|
+
text <=> [db, :db_command]
|
16
16
|
}
|
17
17
|
|
18
18
|
horizontal_box {
|
@@ -20,7 +20,7 @@ class DbGui
|
|
20
20
|
|
21
21
|
button('Run') {
|
22
22
|
on_clicked do
|
23
|
-
|
23
|
+
db.run_db_command
|
24
24
|
end
|
25
25
|
}
|
26
26
|
|
@@ -29,7 +29,7 @@ class DbGui
|
|
29
29
|
}
|
30
30
|
spinbox(0, TIMEOUT_MAX_IN_MILLISECONDS) {
|
31
31
|
stretchy false
|
32
|
-
value <=> [
|
32
|
+
value <=> [db, :db_command_timeout]
|
33
33
|
}
|
34
34
|
|
35
35
|
label('Row(s): ') {
|
@@ -37,7 +37,7 @@ class DbGui
|
|
37
37
|
}
|
38
38
|
label {
|
39
39
|
stretchy false
|
40
|
-
text <= [
|
40
|
+
text <= [db, :db_command_result_count, computed_by: :db_command_result, on_read: :to_s]
|
41
41
|
}
|
42
42
|
}
|
43
43
|
}
|
@@ -1,22 +1,22 @@
|
|
1
|
-
require 'db_gui/model/
|
1
|
+
require 'db_gui/model/db'
|
2
2
|
|
3
3
|
class DbGui
|
4
4
|
module View
|
5
5
|
class DbCommandResultTable
|
6
6
|
include Glimmer::LibUI::CustomControl
|
7
7
|
|
8
|
-
option :
|
8
|
+
option :db
|
9
9
|
|
10
10
|
body {
|
11
11
|
vertical_box {
|
12
|
-
content(
|
13
|
-
if
|
12
|
+
content(db, :db_command_result) {
|
13
|
+
if db.db_command_result_count > 0
|
14
14
|
table {
|
15
|
-
|
15
|
+
db.db_command_result_headers.each do |header|
|
16
16
|
text_column(header)
|
17
17
|
end
|
18
18
|
|
19
|
-
cell_rows
|
19
|
+
cell_rows db.db_command_result_rows
|
20
20
|
}
|
21
21
|
else
|
22
22
|
label('No data')
|
@@ -1,52 +1,52 @@
|
|
1
|
-
require 'db_gui/model/
|
1
|
+
require 'db_gui/model/db'
|
2
2
|
|
3
3
|
class DbGui
|
4
4
|
module View
|
5
5
|
class DbConfigForm
|
6
6
|
include Glimmer::LibUI::CustomControl
|
7
7
|
|
8
|
-
option :
|
8
|
+
option :db
|
9
9
|
|
10
10
|
body {
|
11
11
|
vertical_box {
|
12
12
|
form {
|
13
13
|
entry {
|
14
14
|
label 'Host:'
|
15
|
-
text <=> [
|
16
|
-
enabled <= [
|
15
|
+
text <=> [db, :host]
|
16
|
+
enabled <= [db, :connected, on_read: :!]
|
17
17
|
}
|
18
18
|
|
19
19
|
spinbox(0, 1_000_000) {
|
20
20
|
label 'Port:'
|
21
|
-
value <=> [
|
22
|
-
enabled <= [
|
21
|
+
value <=> [db, :port]
|
22
|
+
enabled <= [db, :connected, on_read: :!]
|
23
23
|
}
|
24
24
|
|
25
25
|
entry {
|
26
26
|
label 'Database Name:'
|
27
|
-
text <=> [
|
28
|
-
enabled <= [
|
27
|
+
text <=> [db, :dbname]
|
28
|
+
enabled <= [db, :connected, on_read: :!]
|
29
29
|
}
|
30
30
|
|
31
31
|
entry {
|
32
32
|
label 'Username:'
|
33
|
-
text <=> [
|
34
|
-
enabled <= [
|
33
|
+
text <=> [db, :username]
|
34
|
+
enabled <= [db, :connected, on_read: :!]
|
35
35
|
}
|
36
36
|
|
37
37
|
password_entry {
|
38
38
|
label 'Password:'
|
39
|
-
text <=> [
|
40
|
-
enabled <= [
|
39
|
+
text <=> [db, :password]
|
40
|
+
enabled <= [db, :connected, on_read: :!]
|
41
41
|
}
|
42
42
|
}
|
43
43
|
|
44
44
|
button {
|
45
45
|
stretchy false
|
46
|
-
text <= [
|
46
|
+
text <= [db, :connected, on_read: -> (connected) { connected ? 'Disconnect (currently connected)' : 'Connect (currently disconnected)' }]
|
47
47
|
|
48
48
|
on_clicked do
|
49
|
-
|
49
|
+
db.toggle_connection
|
50
50
|
end
|
51
51
|
}
|
52
52
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require 'db_gui/
|
1
|
+
require 'db_gui/model/db'
|
2
2
|
|
3
3
|
require 'db_gui/view/db_config_form'
|
4
4
|
require 'db_gui/view/db_command_form'
|
@@ -9,10 +9,10 @@ class DbGui
|
|
9
9
|
class DbGuiApplication
|
10
10
|
include Glimmer::LibUI::Application
|
11
11
|
|
12
|
-
attr_reader :
|
12
|
+
attr_reader :db
|
13
13
|
|
14
14
|
before_body do
|
15
|
-
@
|
15
|
+
@db = Model::Db.new
|
16
16
|
# menu_bar # TODO implement
|
17
17
|
end
|
18
18
|
|
@@ -24,13 +24,13 @@ class DbGui
|
|
24
24
|
margined true
|
25
25
|
|
26
26
|
vertical_box {
|
27
|
-
db_config_form(
|
27
|
+
db_config_form(db:) {
|
28
28
|
stretchy false
|
29
29
|
}
|
30
30
|
|
31
|
-
db_command_form(
|
31
|
+
db_command_form(db:)
|
32
32
|
|
33
|
-
db_command_result_table(
|
33
|
+
db_command_result_table(db:)
|
34
34
|
}
|
35
35
|
}
|
36
36
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: db-gui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Maleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: glimmer-dsl-libui
|
@@ -86,8 +86,7 @@ files:
|
|
86
86
|
- VERSION
|
87
87
|
- app/db-gui.rb
|
88
88
|
- app/db_gui/launch.rb
|
89
|
-
- app/db_gui/model/
|
90
|
-
- app/db_gui/presenter/db_gui_presenter.rb
|
89
|
+
- app/db_gui/model/db.rb
|
91
90
|
- app/db_gui/view/db_command_form.rb
|
92
91
|
- app/db_gui/view/db_command_result_table.rb
|
93
92
|
- app/db_gui/view/db_config_form.rb
|