Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gosqlite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gosqlite
Commits
222ec3c2
Commit
222ec3c2
authored
Jan 07, 2015
by
gwenn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add completion methods for database, table and column names
parent
767f75c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
139 additions
and
7 deletions
+139
-7
shell/autocomplete.go
shell/autocomplete.go
+102
-6
shell/autocomplete_test.go
shell/autocomplete_test.go
+36
-0
shell/lex.go
shell/lex.go
+1
-1
No files found.
shell/autocomplete.go
View file @
222ec3c2
...
...
@@ -4,7 +4,11 @@
package
shell
import
"github.com/gwenn/gosqlite"
import
(
"strings"
"github.com/gwenn/gosqlite"
)
type
pendingAction
struct
{
action
sqlite
.
Action
...
...
@@ -40,7 +44,7 @@ func CreateCache() (*CompletionCache, error) {
func
(
cc
*
CompletionCache
)
init
()
error
{
cmd
:=
`CREATE VIRTUAL TABLE pragma_names USING fts4(name, args, tokenize=porter, matchinfo=fts3, notindexed=args);
CREATE VIRTUAL TABLE func_names USING fts4(name, args, tokenize=porter, matchinfo=fts3, notindexed=args);
CREATE VIRTUAL TABLE module
N
ames USING fts4(name, args, tokenize=porter, matchinfo=fts3, notindexed=args);
CREATE VIRTUAL TABLE module
_n
ames USING fts4(name, args, tokenize=porter, matchinfo=fts3, notindexed=args);
CREATE VIRTUAL TABLE cmd_names USING fts4(name, args, tokenize=porter, matchinfo=fts3, notindexed=args);
CREATE VIRTUAL TABLE col_names USING fts4(db_name, tbl_name, type, col_name, tokenize=porter, matchinfo=fts3, notindexed=type);
`
...
...
@@ -208,7 +212,7 @@ func (cc *CompletionCache) init() error {
}
// Only built-in modules are supported.
// TODO make possible to register extended/user-defined modules
s
,
err
=
cc
.
memDb
.
Prepare
(
"INSERT INTO module
N
ames (name, args) VALUES (?, ?)"
)
s
,
err
=
cc
.
memDb
.
Prepare
(
"INSERT INTO module
_n
ames (name, args) VALUES (?, ?)"
)
if
err
!=
nil
{
return
err
}
...
...
@@ -303,7 +307,9 @@ func (cc *CompletionCache) Cache(db *sqlite.Conn) error {
cc
.
pendingActions
=
append
(
cc
.
pendingActions
,
pendingAction
{
action
:
action
,
dbName
:
arg1
})
case
sqlite
.
Attach
:
// database name is not available, only the path...
cc
.
pendingActions
=
append
(
cc
.
pendingActions
,
pendingAction
{
action
:
action
,
dbName
:
arg1
})
if
arg1
!=
""
&&
arg1
!=
":memory:"
{
// temporary db: "" and memory db: ":memory:" are empty when attached.
cc
.
pendingActions
=
append
(
cc
.
pendingActions
,
pendingAction
{
action
:
action
,
dbName
:
arg1
})
}
case
sqlite
.
DropTable
,
sqlite
.
DropTempTable
,
sqlite
.
DropView
,
sqlite
.
DropTempView
,
sqlite
.
DropVTable
:
cc
.
pendingActions
=
append
(
cc
.
pendingActions
,
pendingAction
{
action
:
action
,
dbName
:
dbName
,
tblName
:
arg1
})
case
sqlite
.
CreateTable
,
sqlite
.
CreateTempTable
,
sqlite
.
CreateVTable
:
...
...
@@ -427,7 +433,97 @@ func (cc *CompletionCache) CompleteCmd(prefix string) ([]string, error) {
}
func
(
cc
*
CompletionCache
)
complete
(
tbl
,
prefix
string
)
([]
string
,
error
)
{
s
,
err
:=
cc
.
memDb
.
Prepare
(
"SELECT name FROM "
+
tbl
+
" WHERE name MATCH ?||'*' ORDER BY 1"
)
s
,
err
:=
cc
.
memDb
.
Prepare
(
"SELECT name FROM "
+
tbl
+
" WHERE name MATCH ?||'*' ORDER BY 1"
,
prefix
)
if
err
!=
nil
{
return
nil
,
err
}
defer
s
.
Finalize
()
var
names
[]
string
if
err
=
s
.
Select
(
func
(
s
*
sqlite
.
Stmt
)
error
{
name
,
_
:=
s
.
ScanText
(
0
)
names
=
append
(
names
,
name
)
return
nil
});
err
!=
nil
{
return
nil
,
err
}
return
names
,
nil
}
func
(
cc
*
CompletionCache
)
CompleteDbName
(
prefix
string
)
([]
string
,
error
)
{
s
,
err
:=
cc
.
memDb
.
Prepare
(
"SELECT DISTINCT db_name FROM col_names WHERE db_name MATCH ?||'*' ORDER BY 1"
,
prefix
)
if
err
!=
nil
{
return
nil
,
err
}
defer
s
.
Finalize
()
var
names
[]
string
if
err
=
s
.
Select
(
func
(
s
*
sqlite
.
Stmt
)
error
{
name
,
_
:=
s
.
ScanText
(
0
)
names
=
append
(
names
,
name
)
return
nil
});
err
!=
nil
{
return
nil
,
err
}
return
names
,
nil
}
func
(
cc
*
CompletionCache
)
CompleteTableName
(
dbName
,
prefix
,
typ
string
)
([]
string
,
error
)
{
args
:=
make
([]
interface
{},
0
,
3
)
if
dbName
!=
""
{
args
=
append
(
args
,
dbName
)
}
args
=
append
(
args
,
prefix
)
if
typ
!=
""
{
args
=
append
(
args
,
typ
)
}
var
sql
string
if
dbName
==
""
{
if
typ
==
""
{
sql
=
"SELECT DISTINCT tbl_name FROM col_names WHERE tbl_name MATCH ?||'*' ORDER BY 1"
}
else
{
sql
=
"SELECT DISTINCT tbl_name FROM col_names WHERE tbl_name MATCH ?||'*' AND type = ? ORDER BY 1"
}
}
else
{
if
typ
==
""
{
sql
=
"SELECT DISTINCT tbl_name FROM col_names WHERE db_name = ? AND tbl_name MATCH ?||'*' ORDER BY 1"
}
else
{
sql
=
"SELECT DISTINCT tbl_name FROM col_names WHERE db_name = ? AND tbl_name MATCH ?||'*' AND type = ? ORDER BY 1"
}
}
s
,
err
:=
cc
.
memDb
.
Prepare
(
sql
,
args
...
)
if
err
!=
nil
{
return
nil
,
err
}
defer
s
.
Finalize
()
var
names
[]
string
if
err
=
s
.
Select
(
func
(
s
*
sqlite
.
Stmt
)
error
{
name
,
_
:=
s
.
ScanText
(
0
)
names
=
append
(
names
,
name
)
return
nil
});
err
!=
nil
{
return
nil
,
err
}
return
names
,
nil
}
// tbl_names is mandatory
func
(
cc
*
CompletionCache
)
CompleteColName
(
dbName
string
,
tbl_names
[]
string
,
prefix
string
)
([]
string
,
error
)
{
args
:=
make
([]
interface
{},
0
,
10
)
if
dbName
!=
""
{
args
=
append
(
args
,
dbName
)
}
phs
:=
make
([]
string
,
0
,
10
)
for
_
,
tbl_name
:=
range
tbl_names
{
args
=
append
(
args
,
tbl_name
)
phs
=
append
(
phs
,
"?"
)
}
args
=
append
(
args
,
prefix
)
var
sql
string
if
dbName
==
""
{
sql
=
"SELECT DISTINCT col_name FROM col_names WHERE tbl_name IN ("
+
strings
.
Join
(
phs
,
","
)
+
") AND col_name MATCH ?||'*' ORDER BY 1"
}
else
{
sql
=
"SELECT DISTINCT col_name FROM col_names WHERE db_name = ? AND tbl_name IN ("
+
strings
.
Join
(
phs
,
","
)
+
") AND col_name MATCH ?||'*' ORDER BY 1"
}
s
,
err
:=
cc
.
memDb
.
Prepare
(
sql
,
args
...
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -437,7 +533,7 @@ func (cc *CompletionCache) complete(tbl, prefix string) ([]string, error) {
name
,
_
:=
s
.
ScanText
(
0
)
names
=
append
(
names
,
name
)
return
nil
}
,
prefix
);
err
!=
nil
{
});
err
!=
nil
{
return
nil
,
err
}
return
names
,
nil
...
...
shell/autocomplete_test.go
View file @
222ec3c2
...
...
@@ -26,6 +26,7 @@ func TestPragmaNames(t *testing.T) {
assert
.
Equalf
(
t
,
3
,
len
(
pragmas
),
"got %d pragmas; expected %d"
,
len
(
pragmas
),
3
)
assert
.
Equal
(
t
,
[]
string
{
"foreign_key_check"
,
"foreign_key_list("
,
"foreign_keys"
},
pragmas
,
"unexpected pragmas"
)
}
func
TestFuncNames
(
t
*
testing
.
T
)
{
cc
:=
createCache
(
t
)
defer
cc
.
Close
()
...
...
@@ -34,6 +35,7 @@ func TestFuncNames(t *testing.T) {
assert
.
Equal
(
t
,
2
,
len
(
funcs
),
"got %d functions; expected %d"
,
len
(
funcs
),
2
)
assert
.
Equal
(
t
,
[]
string
{
"substr("
,
"sum("
},
funcs
,
"unexpected functions"
)
}
func
TestCmdNames
(
t
*
testing
.
T
)
{
cc
:=
createCache
(
t
)
defer
cc
.
Close
()
...
...
@@ -42,6 +44,7 @@ func TestCmdNames(t *testing.T) {
assert
.
Equal
(
t
,
2
,
len
(
cmds
),
"got %d commands; expected %d"
,
len
(
cmds
),
2
)
assert
.
Equal
(
t
,
[]
string
{
".headers"
,
".help"
},
cmds
,
"unexpected commands"
)
}
func
TestCache
(
t
*
testing
.
T
)
{
db
,
err
:=
sqlite
.
Open
(
":memory:"
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
...
...
@@ -53,3 +56,36 @@ func TestCache(t *testing.T) {
err
=
cc
.
Flush
(
db
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
}
func
TestCacheUpdate
(
t
*
testing
.
T
)
{
db
,
err
:=
sqlite
.
Open
(
":memory:"
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
defer
db
.
Close
()
cc
:=
createCache
(
t
)
defer
cc
.
Close
()
err
=
cc
.
Cache
(
db
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
err
=
db
.
FastExec
(
"CREATE TABLE test (id INTEGER PRIMARY KEY NOT NULL, name TEXT UNIQUE NOT NULL)"
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
cc
.
Update
(
db
)
db_names
,
err
:=
cc
.
CompleteDbName
(
"m"
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
assert
.
Equal
(
t
,
1
,
len
(
db_names
),
"got %d database names; expected %d"
,
len
(
db_names
),
1
)
assert
.
Equal
(
t
,
[]
string
{
"main"
},
db_names
,
"unexpected database names"
)
tbl_names
,
err
:=
cc
.
CompleteTableName
(
""
,
"te"
,
""
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
assert
.
Equal
(
t
,
1
,
len
(
tbl_names
),
"got %d table names; expected %d"
,
len
(
tbl_names
),
1
)
assert
.
Equal
(
t
,
[]
string
{
"test"
},
tbl_names
,
"unexpected table names"
)
tbl_names
,
err
=
cc
.
CompleteTableName
(
"main"
,
"te"
,
"table"
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
assert
.
Equal
(
t
,
1
,
len
(
tbl_names
),
"got %d table names; expected %d"
,
len
(
tbl_names
),
1
)
assert
.
Equal
(
t
,
[]
string
{
"test"
},
tbl_names
,
"unexpected table names"
)
col_names
,
err
:=
cc
.
CompleteColName
(
""
,
[]
string
{
"test"
},
"n"
)
assert
.
Tf
(
t
,
err
==
nil
,
"%v"
,
err
)
assert
.
Equal
(
t
,
1
,
len
(
col_names
),
"got %d column names; expected %d"
,
len
(
col_names
),
1
)
assert
.
Equal
(
t
,
[]
string
{
"name"
},
col_names
,
"unexpected column names"
)
}
shell/lex.go
View file @
222ec3c2
...
...
@@ -705,6 +705,6 @@ func Parse(line string) {
if
item
.
typ
==
itemEOF
{
break
}
fmt
.
Printf
(
"%s
\n
"
,
item
)
//
fmt.Printf("%s\n", item)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment