db-gui 0.0.2 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa4ce5de9be304c9f5638048111e9571854f2dfc66feecfd0e37f8ba4261ae82
4
- data.tar.gz: 5806bf4a1514e28cee22c5ea2b5716f8c1e0fa0ffec32ca0072f62daef06cc1a
3
+ metadata.gz: e8036df4dccc81646a039ae1f596d9337146eb11d8c797db665baec7720af497
4
+ data.tar.gz: d3b32fe1f26b471a278c0c120f1bd4ddf1e48d8d3c914454527df3814eb34ad5
5
5
  SHA512:
6
- metadata.gz: 4d1b50280d1e23630beb85e7c6fae71716b51b8024cce27f38b2ea1c2cf137cd5d1fa619cadf07fc76ec465faabe587abece721ec0643cee84450c21a53cc4f2
7
- data.tar.gz: a70bb46bf0016aec98b5bea7cb702161987aefa79914e4eafd4f89978536943e3c530bc22a548a6625ebd3c16639f9cbbea0f5d8037b2c286cf7d7cdd407f4ba
6
+ metadata.gz: d74eb9ca5bcd71c75e0588f5f94f80277402066ebf26a2e49619c1f22fcc831c76fdf7c1f8707ea776ee9b7f88aee94550b3aa197d58823cc431c1bfbdb2e66b
7
+ data.tar.gz: f1154b733b50e78dcb388ffdfc3415562ba07a1541cc40e527560ac1e44f3d2c1b9ffabad22484acdf3fa18f8486bb9ff0f526c80d8d0eb6303f8adb17e88a98
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.4
4
+
5
+ - Make SQL command entry a non_wrapping_multiline_entry
6
+
7
+ ## 0.0.3
8
+
9
+ - Show count of rows produced by a DB command result
10
+ - Terminate DB commands (SQL statements) with a semi-colon for convenience if they did not have a semi-colon already (to avoid having them fail)
11
+ - Increase max timeout to 60*60*1000 (1 hour)
12
+
3
13
  ## 0.0.2
4
14
 
5
15
  - Support displaying DB command results in a table instead of a non_wrapping_multiline_entry
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # DB GUI (Database Graphical User Interface) 0.0.2
1
+ # DB GUI (Database Graphical User Interface) 0.0.4
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
  [![Gem Version](https://badge.fury.io/rb/db-gui.svg)](http://badge.fury.io/rb/db-gui)
4
4
 
5
5
 
6
- This is a database graphical user interface that enables interaction with relational SQL database data.
6
+ This is an early alpha database graphical user interface that enables interaction with a relational SQL database.
7
7
 
8
8
  It currently supports PostgreSQL as a start, with the potential of supporting many other databases in the future.
9
9
 
@@ -13,7 +13,7 @@ It currently supports PostgreSQL as a start, with the potential of supporting ma
13
13
 
14
14
  Run:
15
15
  ```
16
- gem install db-gui -v0.0.2
16
+ gem install db-gui -v0.0.4
17
17
  ```
18
18
 
19
19
  ## Usage
@@ -23,20 +23,9 @@ Run:
23
23
  dbui
24
24
  ```
25
25
 
26
- Or run alias:
27
- ```
28
- db-ui
29
- ```
26
+ Or, run one of the aliases: `db-ui` / `dbgui` / `db-gui`
30
27
 
31
- Or run alias:
32
- ```
33
- dbgui
34
- ```
35
-
36
- Or run alias:
37
- ```
38
- db-gui
39
- ```
28
+ Note that it stores the last connection details under `~/.db_gui`, and will auto-connect using that configuration on startup for extra convenience (in the future, there is the potential to support multiple connection configurations).
40
29
 
41
30
  ## Change Log
42
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.4
@@ -45,6 +45,8 @@ class DbGui
45
45
  end
46
46
 
47
47
  def run_io_command(command)
48
+ command = command.strip
49
+ command = "#{command};" unless command.end_with?(';')
48
50
  @io_command_try ||= 0
49
51
  @io_command_try += 1
50
52
  io.puts(command)
@@ -58,6 +60,18 @@ class DbGui
58
60
  run_io_command(db_command)
59
61
  end
60
62
 
63
+ def db_command_result_count
64
+ db_command_result_count_headers_rows[0]
65
+ end
66
+
67
+ def db_command_result_headers
68
+ db_command_result_count_headers_rows[1]
69
+ end
70
+
71
+ def db_command_result_rows
72
+ db_command_result_count_headers_rows[2]
73
+ end
74
+
61
75
  private
62
76
 
63
77
  def read_io_into_db_command_result
@@ -93,6 +107,31 @@ class DbGui
93
107
  @io = nil
94
108
  nil
95
109
  end
110
+
111
+ def db_command_result_count_headers_rows
112
+ if @db_command_result_count_headers_rows.nil? || db_command_result != @last_db_command_result
113
+ @db_command_result_count_headers_rows = compute_db_command_result_count_headers_rows
114
+ @last_db_command_result = db_command_result
115
+ end
116
+ @db_command_result_count_headers_rows
117
+ end
118
+
119
+ def compute_db_command_result_count_headers_rows
120
+ count = 0
121
+ headers = rows = []
122
+ db_command_result_lines = db_command_result.lines
123
+ db_command_result_lines.pop if db_command_result_lines.last == "\n"
124
+ if db_command_result_lines.any?
125
+ headers = db_command_result_lines.first.split('|').map(&:strip)
126
+ count_footer = db_command_result_lines.last
127
+ count_match = count_footer.match(/^\((\d+) row/)
128
+ if count_match
129
+ count = count_match[1].to_i
130
+ rows = db_command_result_lines[2..-2].map {|row| row.split('|').map(&:strip) }
131
+ end
132
+ end
133
+ [count, headers, rows]
134
+ end
96
135
  end
97
136
  end
98
137
  end
@@ -5,11 +5,13 @@ class DbGui
5
5
  class DbCommandForm
6
6
  include Glimmer::LibUI::CustomControl
7
7
 
8
+ TIMEOUT_MAX_IN_MILLISECONDS = (ENV['TIMEOUT_MAX_IN_MILLISECONDS'] || 60*60*1000).to_i
9
+
8
10
  option :db_config
9
11
 
10
12
  body {
11
13
  vertical_box {
12
- entry {
14
+ non_wrapping_multiline_entry {
13
15
  text <=> [db_config, :db_command]
14
16
  }
15
17
 
@@ -25,10 +27,18 @@ class DbGui
25
27
  label('Timeout (msec): ') {
26
28
  stretchy false
27
29
  }
28
- spinbox(0, 60000) {
30
+ spinbox(0, TIMEOUT_MAX_IN_MILLISECONDS) {
29
31
  stretchy false
30
32
  value <=> [db_config, :db_command_timeout]
31
33
  }
34
+
35
+ label('Row(s): ') {
36
+ stretchy false
37
+ }
38
+ label {
39
+ stretchy false
40
+ text <= [db_config, :db_command_result_count, computed_by: :db_command_result, on_read: :to_s]
41
+ }
32
42
  }
33
43
  }
34
44
  }
@@ -10,24 +10,14 @@ class DbGui
10
10
  body {
11
11
  vertical_box {
12
12
  content(db_config, :db_command_result) {
13
- db_command_result_lines = db_config.db_command_result.lines
14
- db_command_result_lines.pop if db_command_result_lines.last == "\n"
15
- if db_command_result_lines.any?
16
- headers = db_command_result_lines.first.split('|').map(&:strip)
17
- count_footer = db_command_result_lines.last
18
- count_footer_match = count_footer.match(/^\((\d+) row/)
19
- if count_footer_match
20
- rows = db_command_result_lines[2..-2].map {|row| row.split('|').map(&:strip) }
21
- table {
22
- headers.each do |header|
23
- text_column(header)
24
- end
25
-
26
- cell_rows rows
27
- }
28
- else
29
- label('No data')
30
- end
13
+ if db_config.db_command_result_count > 0
14
+ table {
15
+ db_config.db_command_result_headers.each do |header|
16
+ text_column(header)
17
+ end
18
+
19
+ cell_rows db_config.db_command_result_rows
20
+ }
31
21
  else
32
22
  label('No data')
33
23
  end
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.2
4
+ version: 0.0.4
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-02-28 00:00:00.000000000 Z
11
+ date: 2025-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: glimmer-dsl-libui
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  - !ruby/object:Gem::Version
120
120
  version: '0'
121
121
  requirements: []
122
- rubygems_version: 3.4.10
122
+ rubygems_version: 3.4.19
123
123
  signing_key:
124
124
  specification_version: 4
125
125
  summary: DB GUI