db-gui 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c47f16e87bb120e67c9ded08af1613226f997239310973d9c35f2cde6b7620ae
4
+ data.tar.gz: ea3c1ae5858376c27dd9817cedc213bf0fd16eb696e9a817e0efeb0af84a7ef7
5
+ SHA512:
6
+ metadata.gz: 1f3ea785cfa0e94155628a7df1b278bd3b86840e50f009fa26401910958f6de524b1ebdd9713eada1ba9b6e4047fa9e529d06b2da1563576935491236e5aee31
7
+ data.tar.gz: c5bda179f9fef7c91bc82532ace7ca4b1ce17fd0bb426fb3ab37cd19cf296f6e98f8b57c6391e713c0092ae040bd2432976766a174e27c0895894005fe7489ef
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Change Log
2
+
3
+ ## 0.0.1
4
+
5
+ - DB GUI for PostgreSQL database with support for running SQL queries and seeing their result as text
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2025 Andy Maleh
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # DB GUI (Database Graphical User Interface) 0.0.1
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
+ [![Gem Version](https://badge.fury.io/rb/glimmer_snake.svg)](http://badge.fury.io/rb/glimmer_snake)
4
+
5
+
6
+ This is a database graphical user interface that enables interaction with relational SQL database data.
7
+
8
+ It currently supports PostgreSQL as a start, with the potential of supporting many other databases in the future.
9
+
10
+ ![db gui](/screenshots/db-gui-mac.png)
11
+
12
+ ## Setup
13
+
14
+ Run:
15
+ ```
16
+ gem install db-gui -v0.0.1
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ Run:
22
+ ```
23
+ dbui
24
+ ```
25
+
26
+ Or run alias:
27
+ ```
28
+ db-ui
29
+ ```
30
+
31
+ Or run alias:
32
+ ```
33
+ dbgui
34
+ ```
35
+
36
+ Or run alias:
37
+ ```
38
+ db-gui
39
+ ```
40
+
41
+ ## Change Log
42
+
43
+ [CHANGELOG.md](/CHANGELOG.md)
44
+
45
+ ## TODO
46
+
47
+ [TODO.md](/TODO.md)
48
+
49
+ ## Contributing to db_gui
50
+
51
+ - Check out the latest master to make sure the feature hasn't been
52
+ implemented or the bug hasn't been fixed yet.
53
+ - Check out the issue tracker to make sure someone already hasn't
54
+ requested it and/or contributed it.
55
+ - Fork the project.
56
+ - Start a feature/bugfix branch.
57
+ - Commit and push until you are happy with your contribution.
58
+ - Make sure to add tests for it. This is important so I don't break it
59
+ in a future version unintentionally.
60
+ - Please try not to mess with the Rakefile, version, or history. If
61
+ you want to have your own version, or is otherwise necessary, that
62
+ is fine, but please isolate to its own commit so I can cherry-pick
63
+ around it.
64
+
65
+ ## Copyright
66
+
67
+ Copyright (c) 2025 Andy Maleh.
68
+ [MIT](/LICENSE.txt)
69
+ See [LICENSE.txt](/LICENSE.txt) for further details.
70
+
71
+ --
72
+
73
+ [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 />](https://github.com/AndyObtiva/glimmer) Built with [Glimmer DSL for LibUI](https://github.com/AndyObtiva/glimmer-dsl-libui) (Ruby Desktop Development GUI Library)
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/app/db-gui.rb ADDED
@@ -0,0 +1,18 @@
1
+ $LOAD_PATH.unshift(File.expand_path('..', __FILE__))
2
+
3
+ begin
4
+ require 'bundler/setup'
5
+ Bundler.require(:default)
6
+ rescue Exception
7
+ # this runs when packaged as a gem (no bundler)
8
+ require 'glimmer-dsl-libui'
9
+ # add more gems if needed
10
+ end
11
+
12
+ class DbGui
13
+ APP_ROOT = File.expand_path('../..', __FILE__)
14
+ VERSION = File.read(File.join(APP_ROOT, 'VERSION'))
15
+ LICENSE = File.read(File.join(APP_ROOT, 'LICENSE.txt'))
16
+ end
17
+
18
+ require 'db_gui/view/db_gui_application.rb'
@@ -0,0 +1,4 @@
1
+ # this is only a helper for the bin script to launch the app. Developers must generally not need to edit it.
2
+ require_relative '../db-gui'
3
+
4
+ DbGui::View::DbGuiApplication.launch
@@ -0,0 +1,96 @@
1
+ require 'timeout'
2
+
3
+ class DbGui
4
+ module Model
5
+ # TODO consider renaming to DB connection
6
+ DbConfig = Struct.new(:host, :port, :dbname, :username, :password, keyword_init: true) do
7
+ FILE_DB_CONFIG = File.expand_path(File.join('~', '.db_gui'))
8
+
9
+ attr_accessor :connected
10
+ alias connected? connected
11
+ attr_accessor :db_command_result
12
+ attr_accessor :db_command
13
+
14
+ def initialize
15
+ self.port = 5432 # PostgreSQL default port
16
+ self.db_command_result = ''
17
+ load_db_config
18
+ connect if to_a.none? {|value| value.nil? || (value.respond_to?(:empty?) && value.empty?) }
19
+ end
20
+
21
+ def toggle_connection
22
+ if connected?
23
+ disconnect
24
+ else
25
+ connect
26
+ end
27
+ end
28
+
29
+ def connect
30
+ io
31
+ self.connected = true
32
+ save_db_config
33
+ end
34
+
35
+ def disconnect
36
+ io.close
37
+ @io = nil
38
+ self.connected = false
39
+ end
40
+
41
+ def io
42
+ @io ||= IO.popen("PGPASSWORD=\"#{password}\" psql --host=#{host} --port=#{port} --username=#{username} --dbname=#{dbname}", 'r+')
43
+ end
44
+
45
+ def run_io_command(command)
46
+ @io_command_try ||= 0
47
+ @io_command_try += 1
48
+ io.puts(command)
49
+ read_io_into_db_command_result
50
+ rescue Errno::EPIPE => e
51
+ @io = nil
52
+ run_io_command(command) unless @io_command_try > 1
53
+ end
54
+
55
+ def run_db_command
56
+ run_io_command(db_command)
57
+ end
58
+
59
+ private
60
+
61
+ def read_io_into_db_command_result
62
+ self.db_command_result = ''
63
+ while (line = io_gets)
64
+ result = line.to_s
65
+ self.db_command_result += result
66
+ end
67
+ rescue Errno::EPIPE => e
68
+ @io = nil
69
+ end
70
+
71
+ def save_db_config
72
+ db_config_hash = to_h
73
+ db_config_file_content = YAML.dump(db_config_hash)
74
+ File.write(FILE_DB_CONFIG, db_config_file_content)
75
+ end
76
+
77
+ def load_db_config
78
+ db_config_file_content = File.read(FILE_DB_CONFIG)
79
+ db_config_hash = YAML.load(db_config_file_content)
80
+ db_config_hash.each do |attribute, value|
81
+ self.send("#{attribute}=", value)
82
+ end
83
+ rescue => e
84
+ puts "No database configuration is stored yet. #{e.message}"
85
+ end
86
+
87
+ def io_gets
88
+ # TODO figure out a way of knowing the end of input without timing out
89
+ Timeout.timeout(3) { io.gets }
90
+ rescue
91
+ @io = nil
92
+ nil
93
+ end
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,13 @@
1
+ require 'db_gui/model/db_config'
2
+
3
+ class DbGui
4
+ module Presenter
5
+ class DbGuiPresenter
6
+ attr_reader :db_config
7
+
8
+ def initialize
9
+ @db_config = Model::DbConfig.new
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,27 @@
1
+ require 'db_gui/model/db_config'
2
+
3
+ class DbGui
4
+ module View
5
+ class DbCommandForm
6
+ include Glimmer::LibUI::CustomControl
7
+
8
+ option :db_config
9
+
10
+ body {
11
+ vertical_box {
12
+ entry {
13
+ text <=> [db_config, :db_command]
14
+ }
15
+
16
+ button('Run') {
17
+ stretchy false
18
+
19
+ on_clicked do
20
+ db_config.run_db_command
21
+ end
22
+ }
23
+ }
24
+ }
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,51 @@
1
+ require 'db_gui/model/db_config'
2
+
3
+ class DbGui
4
+ module View
5
+ class DbConfigForm
6
+ include Glimmer::LibUI::CustomControl
7
+
8
+ option :db_config
9
+
10
+ body {
11
+ vertical_box {
12
+ form {
13
+ entry {
14
+ label 'Host:'
15
+ text <=> [db_config, :host]
16
+ }
17
+
18
+ spinbox(0, 1_000_000) {
19
+ label 'Port:'
20
+ value <=> [db_config, :port]
21
+ }
22
+
23
+ entry {
24
+ label 'Database Name:'
25
+ text <=> [db_config, :dbname]
26
+ }
27
+
28
+ entry {
29
+ label 'Username:'
30
+ text <=> [db_config, :username]
31
+ }
32
+
33
+ password_entry {
34
+ label 'Password:'
35
+ text <=> [db_config, :password]
36
+ }
37
+ }
38
+
39
+ button {
40
+ stretchy false
41
+ text <= [db_config, :connected, on_read: -> (connected) { connected ? 'Disconnect (currently connected)' : 'Connect (currently disconnected)' }]
42
+
43
+ on_clicked do
44
+ db_config.toggle_connection
45
+ end
46
+ }
47
+ }
48
+ }
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,96 @@
1
+ require 'db_gui/presenter/db_gui_presenter'
2
+
3
+ require 'db_gui/view/db_config_form'
4
+ require 'db_gui/view/db_command_form'
5
+
6
+ class DbGui
7
+ module View
8
+ class DbGuiApplication
9
+ include Glimmer::LibUI::Application
10
+
11
+ attr_reader :presenter
12
+
13
+ before_body do
14
+ @presenter = Presenter::DbGuiPresenter.new
15
+ # menu_bar # TODO implement
16
+ end
17
+
18
+ body {
19
+ window {
20
+ content_size 1024, 800
21
+ title 'DB GUI'
22
+
23
+ margined true
24
+
25
+ vertical_box {
26
+ db_config_form(db_config: presenter.db_config) {
27
+ stretchy false
28
+ }
29
+
30
+ db_command_form(db_config: presenter.db_config)
31
+
32
+ non_wrapping_multiline_entry {
33
+ text <=> [presenter.db_config, :db_command_result, on_write: ->(value) {presenter.db_config.db_command_result}]
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ # def menu_bar
40
+ # menu('File') {
41
+ # menu_item('Preferences...') {
42
+ # on_clicked do
43
+ # display_preferences_dialog
44
+ # end
45
+ # }
46
+ #
47
+ # quit_menu_item if OS.mac?
48
+ # }
49
+ # menu('Help') {
50
+ # if OS.mac?
51
+ # about_menu_item {
52
+ # on_clicked do
53
+ # display_about_dialog
54
+ # end
55
+ # }
56
+ # end
57
+ #
58
+ # menu_item('About') {
59
+ # on_clicked do
60
+ # display_about_dialog
61
+ # end
62
+ # }
63
+ # }
64
+ # end
65
+ #
66
+ # def display_about_dialog
67
+ # message = "Db Gui #{VERSION}\n\n#{LICENSE}"
68
+ # msg_box('About', message)
69
+ # end
70
+ #
71
+ # def display_preferences_dialog
72
+ # window {
73
+ # title 'Preferences'
74
+ # content_size 200, 100
75
+ #
76
+ # margined true
77
+ #
78
+ # vertical_box {
79
+ # padded true
80
+ #
81
+ # label('Greeting:') {
82
+ # stretchy false
83
+ # }
84
+ #
85
+ # radio_buttons {
86
+ # stretchy false
87
+ #
88
+ # items Model::Greeting::GREETINGS
89
+ # selected <=> [@greeting, :text_index]
90
+ # }
91
+ # }
92
+ # }.show
93
+ # end
94
+ end
95
+ end
96
+ end
data/bin/db-gui ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ runner = File.expand_path('../../app/db_gui/launch.rb', __FILE__)
4
+
5
+ require 'glimmer/launcher'
6
+
7
+ launcher = Glimmer::Launcher.new([runner] + ARGV)
8
+ launcher.launch
data/bin/db-ui ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ runner = File.expand_path('../../app/db_gui/launch.rb', __FILE__)
4
+
5
+ require 'glimmer/launcher'
6
+
7
+ launcher = Glimmer::Launcher.new([runner] + ARGV)
8
+ launcher.launch
data/bin/dbgui ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ runner = File.expand_path('../../app/db_gui/launch.rb', __FILE__)
4
+
5
+ require 'glimmer/launcher'
6
+
7
+ launcher = Glimmer::Launcher.new([runner] + ARGV)
8
+ launcher.launch
data/bin/dbui ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ runner = File.expand_path('../../app/db_gui/launch.rb', __FILE__)
4
+
5
+ require 'glimmer/launcher'
6
+
7
+ launcher = Glimmer::Launcher.new([runner] + ARGV)
8
+ launcher.launch
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: db-gui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andy Maleh
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-02-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: glimmer-dsl-libui
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.12.7
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.12.7
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.5.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.5.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: juwelier
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 2.4.9
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 2.4.9
55
+ - !ruby/object:Gem::Dependency
56
+ name: simplecov
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Db Gui
70
+ email: andy.am@gmail.com
71
+ executables:
72
+ - db-gui
73
+ - dbgui
74
+ - db-ui
75
+ - dbui
76
+ extensions: []
77
+ extra_rdoc_files:
78
+ - CHANGELOG.md
79
+ - LICENSE.txt
80
+ - README.md
81
+ files:
82
+ - CHANGELOG.md
83
+ - LICENSE.txt
84
+ - README.md
85
+ - VERSION
86
+ - app/db-gui.rb
87
+ - app/db_gui/launch.rb
88
+ - app/db_gui/model/db_config.rb
89
+ - app/db_gui/presenter/db_gui_presenter.rb
90
+ - app/db_gui/view/db_command_form.rb
91
+ - app/db_gui/view/db_config_form.rb
92
+ - app/db_gui/view/db_gui_application.rb
93
+ - bin/db-gui
94
+ - bin/db-ui
95
+ - bin/dbgui
96
+ - bin/dbui
97
+ - icons/linux/Db Gui.png
98
+ - icons/macosx/Db Gui.icns
99
+ - icons/windows/Db Gui.ico
100
+ homepage: http://github.com/AndyObtiva/db-gui
101
+ licenses:
102
+ - MIT
103
+ metadata: {}
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ - app
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubygems_version: 3.4.10
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: Db Gui
124
+ test_files: []