Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
Practical-Cryptdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Zhaozhen
Practical-Cryptdb
Commits
06de26b6
Commit
06de26b6
authored
Feb 27, 2018
by
yiwenshao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add test_main/dml_handler_select.cc
parent
8a676116
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
19 deletions
+86
-19
dml_handler.cc
main/dml_handler.cc
+18
-19
dml_handler.hh
main/dml_handler.hh
+4
-0
dml_handler_select.cc
test_main/dml_handler_select.cc
+64
-0
No files found.
main/dml_handler.cc
View file @
06de26b6
...
...
@@ -403,29 +403,28 @@ class MultiDeleteHandler : public DMLHandler {
}
};
class
SelectHandler
:
public
DMLHandler
{
virtual
void
gather
(
Analysis
&
a
,
LEX
*
const
lex
)
const
{
/*process the select field, that is the xxx in select xxx. also setup rewriteplain for fileds
like having. the rewriteplain are encset, which is used in decryption*/
process_select_lex
(
lex
->
select_lex
,
a
);
}
void
SelectHandler
::
gather
(
Analysis
&
a
,
LEX
*
const
lex
)
const
{
/*process the select field, that is the xxx in select xxx. also setup rewriteplain for fileds
like having. the rewriteplain are encset, which is used in decryption*/
process_select_lex
(
lex
->
select_lex
,
a
);
}
virtual
AbstractQueryExecutor
*
rewrite
(
Analysis
&
a
,
LEX
*
lex
)
const
{
LEX
*
const
new_lex
=
copyWithTHD
(
lex
);
AbstractQueryExecutor
*
SelectHandler
::
rewrite
(
Analysis
&
a
,
LEX
*
lex
)
const
{
LEX
*
const
new_lex
=
copyWithTHD
(
lex
);
//table list rewrite
new_lex
->
select_lex
.
top_join_list
=
rewrite_table_list
(
lex
->
select_lex
.
top_join_list
,
a
);
//table list rewrite
new_lex
->
select_lex
.
top_join_list
=
rewrite_table_list
(
lex
->
select_lex
.
top_join_list
,
a
);
SELECT_LEX
*
const
select_lex_res
=
rewrite_select_lex
(
new_lex
->
select_lex
,
a
);
set_select_lex
(
new_lex
,
select_lex_res
);
SELECT_LEX
*
const
select_lex_res
=
rewrite_select_lex
(
new_lex
->
select_lex
,
a
);
set_select_lex
(
new_lex
,
select_lex_res
);
return
new
DMLQueryExecutor
(
*
new_lex
,
a
.
rmeta
);
}
};
return
new
DMLQueryExecutor
(
*
new_lex
,
a
.
rmeta
);
}
AbstractQueryExecutor
*
DMLHandler
::
transformLex
(
Analysis
&
analysis
,
LEX
*
lex
)
const
{
...
...
main/dml_handler.hh
View file @
06de26b6
...
...
@@ -142,6 +142,10 @@ class InsertHandler : public DMLHandler {
};
class
SelectHandler
:
public
DMLHandler
{
virtual
void
gather
(
Analysis
&
a
,
LEX
*
const
lex
)
const
;
virtual
AbstractQueryExecutor
*
rewrite
(
Analysis
&
a
,
LEX
*
const
lex
)
const
;
};
SQLDispatcher
*
buildDMLDispatcher
();
...
...
test_main/dml_handler_select.cc
0 → 100644
View file @
06de26b6
#include <iostream>
#include <vector>
#include <functional>
#include <unistd.h>
#include <sys/types.h>
#include <dirent.h>
#include <main/Connect.hh>
#include <main/rewrite_util.hh>
#include <main/sql_handler.hh>
#include <main/dml_handler.hh>
#include <main/ddl_handler.hh>
#include <main/CryptoHandlers.hh>
static
std
::
string
embeddedDir
=
"/t/cryt/shadow"
;
static
void
testSelectHandler
(
std
::
string
query
)
{
std
::
unique_ptr
<
Connect
>
e_conn
(
Connect
::
getEmbedded
(
embeddedDir
));
std
::
unique_ptr
<
SchemaInfo
>
schema
(
new
SchemaInfo
());
std
::
function
<
DBMeta
*
(
DBMeta
*
const
)
>
loadChildren
=
[
&
loadChildren
,
&
e_conn
](
DBMeta
*
const
parent
)
{
auto
kids
=
parent
->
fetchChildren
(
e_conn
);
for
(
auto
it
:
kids
)
{
loadChildren
(
it
);
}
return
parent
;
};
//load all metadata and then store it in schema
loadChildren
(
schema
.
get
());
const
std
::
unique_ptr
<
AES_KEY
>
&
TK
=
std
::
unique_ptr
<
AES_KEY
>
(
getKey
(
std
::
string
(
"113341234"
)));
//just like what we do in Rewrite::rewrite,dispatchOnLex
Analysis
analysis
(
std
::
string
(
"tdb"
),
*
schema
,
TK
,
SECURITY_RATING
::
SENSITIVE
);
DMLHandler
*
h
=
new
SelectHandler
();
std
::
unique_ptr
<
query_parse
>
p
;
p
=
std
::
unique_ptr
<
query_parse
>
(
new
query_parse
(
"tdb"
,
query
));
LEX
*
const
lex
=
p
->
lex
();
auto
executor
=
h
->
transformLex
(
analysis
,
lex
);
std
::
cout
<<
((
DMLQueryExecutor
*
)
executor
)
->
getQuery
()
<<
std
::
endl
;
}
int
main
()
{
char
*
buffer
;
if
((
buffer
=
getcwd
(
NULL
,
0
))
==
NULL
){
perror
(
"getcwd error"
);
}
embeddedDir
=
std
::
string
(
buffer
)
+
"/shadow"
;
const
std
::
string
master_key
=
"113341234"
;
ConnectionInfo
ci
(
"localhost"
,
"root"
,
"letmein"
,
3306
);
SharedProxyState
*
shared_ps
=
new
SharedProxyState
(
ci
,
embeddedDir
,
master_key
,
determineSecurityRating
());
assert
(
shared_ps
!=
NULL
);
std
::
string
query1
=
"SELECT * FROM student"
;
std
::
vector
<
std
::
string
>
querys
{
query1
};
for
(
auto
item
:
querys
){
std
::
cout
<<
item
<<
std
::
endl
;
testSelectHandler
(
item
);
std
::
cout
<<
std
::
endl
;
}
return
0
;
}
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