Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
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
dataplatform
atlas
Commits
0a876f93
Commit
0a876f93
authored
Jan 16, 2018
by
apoorvnaik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2342: Remove limit restriction on min,max,sum,count
parent
76fbe643
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
210 additions
and
198 deletions
+210
-198
EntityDiscoveryService.java
...va/org/apache/atlas/discovery/EntityDiscoveryService.java
+1
-3
GremlinClause.java
...y/src/main/java/org/apache/atlas/query/GremlinClause.java
+5
-3
GremlinQueryComposer.java
...ain/java/org/apache/atlas/query/GremlinQueryComposer.java
+180
-171
SelectClauseComposer.java
...ain/java/org/apache/atlas/query/SelectClauseComposer.java
+5
-1
DSLQueriesTest.java
.../src/test/java/org/apache/atlas/query/DSLQueriesTest.java
+10
-10
GremlinQueryComposerTest.java
...java/org/apache/atlas/query/GremlinQueryComposerTest.java
+9
-10
No files found.
repository/src/main/java/org/apache/atlas/discovery/EntityDiscoveryService.java
View file @
0a876f93
...
@@ -734,9 +734,7 @@ public class EntityDiscoveryService implements AtlasDiscoveryService {
...
@@ -734,9 +734,7 @@ public class EntityDiscoveryService implements AtlasDiscoveryService {
Object
vals
=
map
.
get
(
key
);
Object
vals
=
map
.
get
(
key
);
if
(
vals
instanceof
List
)
{
if
(
vals
instanceof
List
)
{
List
l
=
(
List
)
vals
;
List
l
=
(
List
)
vals
;
for
(
Object
o
:
l
)
{
list
.
addAll
(
l
);
list
.
add
(
o
);
}
}
}
}
}
...
...
repository/src/main/java/org/apache/atlas/query/GremlinClause.java
View file @
0a876f93
...
@@ -61,10 +61,12 @@ enum GremlinClause {
...
@@ -61,10 +61,12 @@ enum GremlinClause {
INLINE_MIN
(
"r.min({it.value('%s')}).value('%s')"
),
INLINE_MIN
(
"r.min({it.value('%s')}).value('%s')"
),
INLINE_GET_PROPERTY
(
"it.value('%s')"
),
INLINE_GET_PROPERTY
(
"it.value('%s')"
),
INLINE_TRANSFORM_CALL
(
"f(%s)"
),
INLINE_TRANSFORM_CALL
(
"f(%s)"
),
INLINE_DEFAULT_SORT
(
".sort{a,b -> a[0] <=> b[0]}"
),
INLINE_DEFAULT_SORT
(
".sort()"
),
INLINE_SORT_DESC
(
".sort{a,b -> b <=> a}"
),
INLINE_DEFAULT_TUPLE_SORT
(
".sort{a,b -> a[0] <=> b[0]}"
),
// idx of the tuple field to be sorted on
// idx of the tuple field to be sorted on
INLINE_SORT_ASC
(
".sort{a,b -> a[%s] <=> b[%s]}"
),
INLINE_
TUPLE_
SORT_ASC
(
".sort{a,b -> a[%s] <=> b[%s]}"
),
INLINE_SORT_DESC
(
".sort{a,b -> b[%s] <=> a[%s]}"
),
INLINE_
TUPLE_
SORT_DESC
(
".sort{a,b -> b[%s] <=> a[%s]}"
),
V
(
"V()"
),
V
(
"V()"
),
VALUE_MAP
(
"valueMap(%s)"
);
VALUE_MAP
(
"valueMap(%s)"
);
...
...
repository/src/main/java/org/apache/atlas/query/GremlinQueryComposer.java
View file @
0a876f93
...
@@ -47,38 +47,36 @@ import java.util.stream.Collectors;
...
@@ -47,38 +47,36 @@ import java.util.stream.Collectors;
import
java.util.stream.Stream
;
import
java.util.stream.Stream
;
public
class
GremlinQueryComposer
{
public
class
GremlinQueryComposer
{
private
static
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
GremlinQueryComposer
.
class
);
private
static
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
GremlinQueryComposer
.
class
);
private
static
final
String
ISO8601_FORMAT
=
"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"
;
private
final
String
EMPTY_STRING
=
""
;
private
static
final
ThreadLocal
<
DateFormat
>
DSL_DATE_FORMAT
=
ThreadLocal
.
withInitial
(()
->
{
private
static
final
String
ISO8601_FORMAT
=
"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"
;
private
final
int
DEFAULT_QUERY_RESULT_LIMIT
=
25
;
private
final
int
DEFAULT_QUERY_RESULT_OFFSET
=
0
;
private
final
GremlinClauseList
queryClauses
=
new
GremlinClauseList
();
private
final
Set
<
String
>
attributesProcessed
=
new
HashSet
<>();
private
final
Lookup
lookup
;
private
final
boolean
isNestedQuery
;
private
final
AtlasDSL
.
QueryMetadata
queryMetadata
;
private
int
providedLimit
=
DEFAULT_QUERY_RESULT_LIMIT
;
private
int
providedOffset
=
DEFAULT_QUERY_RESULT_OFFSET
;
private
Context
context
;
private
static
final
ThreadLocal
<
DateFormat
>
DSL_DATE_FORMAT
=
ThreadLocal
.
withInitial
(()
->
{
DateFormat
ret
=
new
SimpleDateFormat
(
ISO8601_FORMAT
);
DateFormat
ret
=
new
SimpleDateFormat
(
ISO8601_FORMAT
);
ret
.
setTimeZone
(
TimeZone
.
getTimeZone
(
"UTC"
));
ret
.
setTimeZone
(
TimeZone
.
getTimeZone
(
"UTC"
));
return
ret
;
return
ret
;
});
});
private
final
String
EMPTY_STRING
=
""
;
private
final
int
DEFAULT_QUERY_RESULT_LIMIT
=
25
;
private
final
int
DEFAULT_QUERY_RESULT_OFFSET
=
0
;
private
final
GremlinClauseList
queryClauses
=
new
GremlinClauseList
();
private
final
Set
<
String
>
attributesProcessed
=
new
HashSet
<>();
private
final
Lookup
lookup
;
private
final
boolean
isNestedQuery
;
private
final
AtlasDSL
.
QueryMetadata
queryMetadata
;
private
int
providedLimit
=
DEFAULT_QUERY_RESULT_LIMIT
;
private
int
providedOffset
=
DEFAULT_QUERY_RESULT_OFFSET
;
private
Context
context
;
public
GremlinQueryComposer
(
Lookup
registryLookup
,
final
AtlasDSL
.
QueryMetadata
qmd
,
boolean
isNestedQuery
)
{
public
GremlinQueryComposer
(
Lookup
registryLookup
,
final
AtlasDSL
.
QueryMetadata
qmd
,
boolean
isNestedQuery
)
{
this
.
isNestedQuery
=
isNestedQuery
;
this
.
isNestedQuery
=
isNestedQuery
;
this
.
lookup
=
registryLookup
;
this
.
lookup
=
registryLookup
;
this
.
queryMetadata
=
qmd
;
this
.
queryMetadata
=
qmd
;
init
();
init
();
}
}
public
GremlinQueryComposer
(
AtlasTypeRegistry
typeRegistry
,
final
AtlasDSL
.
QueryMetadata
qmd
,
int
limit
,
int
offset
)
{
public
GremlinQueryComposer
(
AtlasTypeRegistry
typeRegistry
,
final
AtlasDSL
.
QueryMetadata
qmd
,
int
limit
,
int
offset
)
{
this
(
new
RegistryBasedLookup
(
typeRegistry
),
qmd
,
false
);
this
(
new
RegistryBasedLookup
(
typeRegistry
),
qmd
,
false
);
this
.
context
=
new
Context
(
lookup
);
this
.
context
=
new
Context
(
lookup
);
providedLimit
=
limit
;
providedLimit
=
limit
;
providedOffset
=
offset
<
0
?
DEFAULT_QUERY_RESULT_OFFSET
:
offset
;
providedOffset
=
offset
<
0
?
DEFAULT_QUERY_RESULT_OFFSET
:
offset
;
...
@@ -87,8 +85,8 @@ public class GremlinQueryComposer {
...
@@ -87,8 +85,8 @@ public class GremlinQueryComposer {
@VisibleForTesting
@VisibleForTesting
GremlinQueryComposer
(
Lookup
lookup
,
Context
context
,
final
AtlasDSL
.
QueryMetadata
qmd
)
{
GremlinQueryComposer
(
Lookup
lookup
,
Context
context
,
final
AtlasDSL
.
QueryMetadata
qmd
)
{
this
.
isNestedQuery
=
false
;
this
.
isNestedQuery
=
false
;
this
.
lookup
=
lookup
;
this
.
lookup
=
lookup
;
this
.
context
=
context
;
this
.
context
=
context
;
this
.
queryMetadata
=
qmd
;
this
.
queryMetadata
=
qmd
;
init
();
init
();
...
@@ -101,7 +99,7 @@ public class GremlinQueryComposer {
...
@@ -101,7 +99,7 @@ public class GremlinQueryComposer {
IdentifierHelper
.
IdentifierMetadata
ta
=
getIdMetadata
(
typeName
);
IdentifierHelper
.
IdentifierMetadata
ta
=
getIdMetadata
(
typeName
);
if
(
context
.
shouldRegister
(
ta
.
get
()))
{
if
(
context
.
shouldRegister
(
ta
.
get
()))
{
context
.
registerActive
(
ta
.
get
());
context
.
registerActive
(
ta
.
get
());
IdentifierHelper
.
IdentifierMetadata
ia
=
getIdMetadata
(
ta
.
get
());
IdentifierHelper
.
IdentifierMetadata
ia
=
getIdMetadata
(
ta
.
get
());
...
@@ -126,7 +124,7 @@ public class GremlinQueryComposer {
...
@@ -126,7 +124,7 @@ public class GremlinQueryComposer {
LOG
.
debug
(
"addFromProperty(typeName={}, attribute={})"
,
typeName
,
attribute
);
LOG
.
debug
(
"addFromProperty(typeName={}, attribute={})"
,
typeName
,
attribute
);
}
}
if
(!
isNestedQuery
)
{
if
(!
isNestedQuery
)
{
addFrom
(
typeName
);
addFrom
(
typeName
);
}
}
...
@@ -183,11 +181,6 @@ public class GremlinQueryComposer {
...
@@ -183,11 +181,6 @@ public class GremlinQueryComposer {
}
}
}
}
private
String
getQualifiedName
(
IdentifierHelper
.
IdentifierMetadata
ia
)
{
return
context
.
validator
.
isValidQualifiedName
(
ia
.
getQualifiedName
(),
ia
.
getRaw
())
?
ia
.
getQualifiedName
()
:
ia
.
getRaw
();
}
public
void
addAndClauses
(
List
<
String
>
clauses
)
{
public
void
addAndClauses
(
List
<
String
>
clauses
)
{
add
(
GremlinClause
.
AND
,
String
.
join
(
","
,
clauses
));
add
(
GremlinClause
.
AND
,
String
.
join
(
","
,
clauses
));
}
}
...
@@ -223,6 +216,112 @@ public class GremlinQueryComposer {
...
@@ -223,6 +216,112 @@ public class GremlinQueryComposer {
this
.
context
.
setSelectClauseComposer
(
selectClauseComposer
);
this
.
context
.
setSelectClauseComposer
(
selectClauseComposer
);
}
}
public
GremlinQueryComposer
createNestedProcessor
()
{
GremlinQueryComposer
qp
=
new
GremlinQueryComposer
(
lookup
,
queryMetadata
,
true
);
qp
.
context
=
this
.
context
;
return
qp
;
}
public
void
addFromAlias
(
String
typeName
,
String
alias
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addFromAlias(typeName={}, alias={})"
,
typeName
,
alias
);
}
addFrom
(
typeName
);
addAsClause
(
alias
);
context
.
registerAlias
(
alias
);
}
public
void
addAsClause
(
String
alias
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addAsClause(stepName={})"
,
alias
);
}
add
(
GremlinClause
.
AS
,
alias
);
}
public
void
addGroupBy
(
String
item
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addGroupBy(item={})"
,
item
);
}
addGroupByClause
(
item
);
}
public
void
addLimit
(
String
limit
,
String
offset
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addLimit(limit={}, offset={})"
,
limit
,
offset
);
}
SelectClauseComposer
scc
=
context
.
getSelectClauseComposer
();
if
(
scc
==
null
)
{
addLimitHelper
(
limit
,
offset
);
}
else
{
if
(!
scc
.
hasAggregators
())
{
addLimitHelper
(
limit
,
offset
);
}
}
}
public
void
addDefaultLimit
()
{
addLimit
(
Integer
.
toString
(
providedLimit
),
Integer
.
toString
(
providedOffset
));
}
public
String
get
()
{
close
();
String
items
[]
=
getFormattedClauses
(
queryMetadata
.
needTransformation
());
String
s
=
queryMetadata
.
needTransformation
()
?
getTransformedClauses
(
items
)
:
String
.
join
(
"."
,
items
);
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"Gremlin: {}"
,
s
);
}
return
s
;
}
public
List
<
String
>
getErrorList
()
{
return
context
.
getErrorList
();
}
public
void
addOrderBy
(
String
name
,
boolean
isDesc
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addOrderBy(name={}, isDesc={})"
,
name
,
isDesc
);
}
IdentifierHelper
.
IdentifierMetadata
ia
=
getIdMetadata
(
name
);
if
(
queryMetadata
.
hasSelect
()
&&
queryMetadata
.
hasGroupBy
())
{
addSelectTransformation
(
this
.
context
.
selectClauseComposer
,
getQualifiedName
(
ia
),
isDesc
);
}
else
if
(
queryMetadata
.
hasGroupBy
())
{
addOrderByClause
(
getQualifiedName
(
ia
),
isDesc
);
moveToLast
(
GremlinClause
.
GROUP_BY
);
}
else
{
addOrderByClause
(
getQualifiedName
(
ia
),
isDesc
);
}
}
public
long
getDateFormat
(
String
s
)
{
try
{
return
DSL_DATE_FORMAT
.
get
().
parse
(
s
).
getTime
();
}
catch
(
ParseException
ex
)
{
context
.
validator
.
check
(
ex
,
AtlasErrorCode
.
INVALID_DSL_INVALID_DATE
);
}
return
-
1
;
}
public
boolean
hasFromClause
()
{
return
queryClauses
.
contains
(
GremlinClause
.
HAS_TYPE
)
!=
-
1
||
queryClauses
.
contains
(
GremlinClause
.
HAS_TYPE_WITHIN
)
!=
-
1
;
}
private
String
getQualifiedName
(
IdentifierHelper
.
IdentifierMetadata
ia
)
{
return
context
.
validator
.
isValidQualifiedName
(
ia
.
getQualifiedName
(),
ia
.
getRaw
())
?
ia
.
getQualifiedName
()
:
ia
.
getRaw
();
}
private
void
addSelectAttrExistsCheck
(
final
SelectClauseComposer
selectClauseComposer
)
{
private
void
addSelectAttrExistsCheck
(
final
SelectClauseComposer
selectClauseComposer
)
{
// For each of the select attributes we need to add a presence check as well, if there's no explicit where for the same
// For each of the select attributes we need to add a presence check as well, if there's no explicit where for the same
// NOTE: One side-effect is that the result table will be empty if any of the attributes is null or empty for the type
// NOTE: One side-effect is that the result table will be empty if any of the attributes is null or empty for the type
...
@@ -253,7 +352,7 @@ public class GremlinQueryComposer {
...
@@ -253,7 +352,7 @@ public class GremlinQueryComposer {
for
(
int
i
=
0
;
i
<
scc
.
getItems
().
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
scc
.
getItems
().
length
;
i
++)
{
IdentifierHelper
.
IdentifierMetadata
ia
=
getIdMetadata
(
scc
.
getItem
(
i
));
IdentifierHelper
.
IdentifierMetadata
ia
=
getIdMetadata
(
scc
.
getItem
(
i
));
if
(
scc
.
isAggregatorWithArgument
(
i
)
&&
!
ia
.
isPrimitive
())
{
if
(
scc
.
isAggregatorWithArgument
(
i
)
&&
!
ia
.
isPrimitive
())
{
context
.
check
(
false
,
AtlasErrorCode
.
INVALID_DSL_SELECT_INVALID_AGG
,
ia
.
getQualifiedName
());
context
.
check
(
false
,
AtlasErrorCode
.
INVALID_DSL_SELECT_INVALID_AGG
,
ia
.
getQualifiedName
());
return
;
return
;
}
}
...
@@ -284,7 +383,7 @@ public class GremlinQueryComposer {
...
@@ -284,7 +383,7 @@ public class GremlinQueryComposer {
}
}
context
.
validator
.
check
(!
scc
.
hasMultipleReferredTypes
(),
context
.
validator
.
check
(!
scc
.
hasMultipleReferredTypes
(),
AtlasErrorCode
.
INVALID_DSL_SELECT_REFERRED_ATTR
,
Integer
.
toString
(
scc
.
getIntroducedTypesCount
()));
AtlasErrorCode
.
INVALID_DSL_SELECT_REFERRED_ATTR
,
Integer
.
toString
(
scc
.
getIntroducedTypesCount
()));
context
.
validator
.
check
(!
scc
.
hasMixedAttributes
(),
AtlasErrorCode
.
INVALID_DSL_SELECT_ATTR_MIXING
);
context
.
validator
.
check
(!
scc
.
hasMixedAttributes
(),
AtlasErrorCode
.
INVALID_DSL_SELECT_ATTR_MIXING
);
}
}
...
@@ -292,43 +391,7 @@ public class GremlinQueryComposer {
...
@@ -292,43 +391,7 @@ public class GremlinQueryComposer {
return
!
ia
.
isPrimitive
()
&&
!
ia
.
isAttribute
()
&&
context
.
hasAlias
(
ia
.
getRaw
());
return
!
ia
.
isPrimitive
()
&&
!
ia
.
isAttribute
()
&&
context
.
hasAlias
(
ia
.
getRaw
());
}
}
public
GremlinQueryComposer
createNestedProcessor
()
{
private
void
addLimitHelper
(
final
String
limit
,
final
String
offset
)
{
GremlinQueryComposer
qp
=
new
GremlinQueryComposer
(
lookup
,
queryMetadata
,
true
);
qp
.
context
=
this
.
context
;
return
qp
;
}
public
void
addFromAlias
(
String
typeName
,
String
alias
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addFromAlias(typeName={}, alias={})"
,
typeName
,
alias
);
}
addFrom
(
typeName
);
addAsClause
(
alias
);
context
.
registerAlias
(
alias
);
}
public
void
addAsClause
(
String
alias
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addAsClause(stepName={})"
,
alias
);
}
add
(
GremlinClause
.
AS
,
alias
);
}
public
void
addGroupBy
(
String
item
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addGroupBy(item={})"
,
item
);
}
addGroupByClause
(
item
);
}
public
void
addLimit
(
String
limit
,
String
offset
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addLimit(limit={}, offset={})"
,
limit
,
offset
);
}
if
(
offset
.
equalsIgnoreCase
(
"0"
))
{
if
(
offset
.
equalsIgnoreCase
(
"0"
))
{
add
(
GremlinClause
.
LIMIT
,
limit
,
limit
);
add
(
GremlinClause
.
LIMIT
,
limit
,
limit
);
}
else
{
}
else
{
...
@@ -336,34 +399,11 @@ public class GremlinQueryComposer {
...
@@ -336,34 +399,11 @@ public class GremlinQueryComposer {
}
}
}
}
public
void
addDefaultLimit
()
{
addLimit
(
Integer
.
toString
(
providedLimit
),
Integer
.
toString
(
providedOffset
));
}
public
String
get
()
{
close
();
String
items
[]
=
getFormattedClauses
(
queryMetadata
.
needTransformation
());
String
s
=
queryMetadata
.
needTransformation
()
?
getTransformedClauses
(
items
)
:
String
.
join
(
"."
,
items
);
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"Gremlin: {}"
,
s
);
}
return
s
;
}
public
List
<
String
>
getErrorList
()
{
return
context
.
getErrorList
();
}
private
String
getTransformedClauses
(
String
[]
items
)
{
private
String
getTransformedClauses
(
String
[]
items
)
{
String
ret
;
String
ret
;
String
body
=
String
.
join
(
"."
,
Stream
.
of
(
items
).
filter
(
Objects:
:
nonNull
).
collect
(
Collectors
.
toList
()));
String
body
=
String
.
join
(
"."
,
Stream
.
of
(
items
).
filter
(
Objects:
:
nonNull
).
collect
(
Collectors
.
toList
()));
String
inlineFn
=
queryClauses
.
getValue
(
queryClauses
.
size
()
-
1
);
String
inlineFn
=
queryClauses
.
getValue
(
queryClauses
.
size
()
-
1
);
String
funCall
=
String
.
format
(
inlineFn
,
body
);
String
funCall
=
String
.
format
(
inlineFn
,
body
);
if
(
isNestedQuery
)
{
if
(
isNestedQuery
)
{
ret
=
String
.
join
(
"."
,
queryClauses
.
getValue
(
0
),
funCall
);
ret
=
String
.
join
(
"."
,
queryClauses
.
getValue
(
0
),
funCall
);
}
else
{
}
else
{
...
@@ -373,9 +413,9 @@ public class GremlinQueryComposer {
...
@@ -373,9 +413,9 @@ public class GremlinQueryComposer {
}
}
private
String
[]
getFormattedClauses
(
boolean
needTransformation
)
{
private
String
[]
getFormattedClauses
(
boolean
needTransformation
)
{
String
[]
items
=
new
String
[
queryClauses
.
size
()];
String
[]
items
=
new
String
[
queryClauses
.
size
()];
int
startIdx
=
needTransformation
?
1
:
0
;
int
startIdx
=
needTransformation
?
1
:
0
;
int
endIdx
=
needTransformation
?
queryClauses
.
size
()
-
1
:
queryClauses
.
size
();
int
endIdx
=
needTransformation
?
queryClauses
.
size
()
-
1
:
queryClauses
.
size
();
for
(
int
i
=
startIdx
;
i
<
endIdx
;
i
++)
{
for
(
int
i
=
startIdx
;
i
<
endIdx
;
i
++)
{
items
[
i
]
=
queryClauses
.
getValue
(
i
);
items
[
i
]
=
queryClauses
.
getValue
(
i
);
...
@@ -383,86 +423,56 @@ public class GremlinQueryComposer {
...
@@ -383,86 +423,56 @@ public class GremlinQueryComposer {
return
items
;
return
items
;
}
}
public
void
addOrderBy
(
String
name
,
boolean
isDesc
)
{
if
(
LOG
.
isDebugEnabled
())
{
LOG
.
debug
(
"addOrderBy(name={}, isDesc={})"
,
name
,
isDesc
);
}
IdentifierHelper
.
IdentifierMetadata
ia
=
getIdMetadata
(
name
);
if
(
queryMetadata
.
hasSelect
()
&&
queryMetadata
.
hasGroupBy
())
{
addSelectTransformation
(
this
.
context
.
selectClauseComposer
,
getQualifiedName
(
ia
),
isDesc
);
}
else
if
(
queryMetadata
.
hasGroupBy
())
{
addOrderByClause
(
getQualifiedName
(
ia
),
isDesc
);
moveToLast
(
GremlinClause
.
GROUP_BY
);
}
else
{
addOrderByClause
(
getQualifiedName
(
ia
),
isDesc
);
}
}
private
void
addSelectTransformation
(
final
SelectClauseComposer
selectClauseComposer
,
private
void
addSelectTransformation
(
final
SelectClauseComposer
selectClauseComposer
,
final
String
orderByQualifiedAttrName
,
final
String
orderByQualifiedAttrName
,
final
boolean
isDesc
)
{
final
boolean
isDesc
)
{
GremlinClause
fn
;
GremlinClause
fn
;
if
(
selectClauseComposer
.
isSelectNoop
)
{
if
(
selectClauseComposer
.
isSelectNoop
)
{
fn
=
GremlinClause
.
SELECT_NOOP_FN
;
fn
=
GremlinClause
.
SELECT_NOOP_FN
;
}
else
if
(
queryMetadata
.
hasGroupBy
()){
}
else
if
(
queryMetadata
.
hasGroupBy
())
{
fn
=
selectClauseComposer
.
onlyAggregators
()
?
fn
=
selectClauseComposer
.
onlyAggregators
()
?
GremlinClause
.
SELECT_ONLY_AGG_GRP_FN
:
GremlinClause
.
SELECT_MULTI_ATTR_GRP_FN
;
GremlinClause
.
SELECT_ONLY_AGG_GRP_FN
:
GremlinClause
.
SELECT_MULTI_ATTR_GRP_FN
;
}
else
{
}
else
{
fn
=
selectClauseComposer
.
onlyAggregators
()
?
fn
=
selectClauseComposer
.
onlyAggregators
()
?
GremlinClause
.
SELECT_ONLY_AGG_FN
:
GremlinClause
.
SELECT_FN
;
GremlinClause
.
SELECT_ONLY_AGG_FN
:
GremlinClause
.
SELECT_FN
;
}
}
if
(
StringUtils
.
isEmpty
(
orderByQualifiedAttrName
))
{
if
(
StringUtils
.
isEmpty
(
orderByQualifiedAttrName
))
{
add
(
0
,
fn
,
add
(
0
,
fn
,
selectClauseComposer
.
getLabelHeader
(),
selectClauseComposer
.
getLabelHeader
(),
selectClauseComposer
.
hasAssignmentExpr
()
?
selectClauseComposer
.
getAssignmentExprString
():
EMPTY_STRING
,
selectClauseComposer
.
hasAssignmentExpr
()
?
selectClauseComposer
.
getAssignmentExprString
()
:
EMPTY_STRING
,
selectClauseComposer
.
getItemsString
(),
EMPTY_STRING
);
selectClauseComposer
.
getItemsString
(),
EMPTY_STRING
);
}
else
{
}
else
{
int
itemIdx
=
selectClauseComposer
.
getAttrIndex
(
orderByQualifiedAttrName
);
int
itemIdx
=
selectClauseComposer
.
getAttrIndex
(
orderByQualifiedAttrName
);
GremlinClause
sortClause
=
GremlinClause
.
INLINE_DEFAULT_SORT
;
GremlinClause
sortClause
=
GremlinClause
.
INLINE_DEFAULT_
TUPLE_
SORT
;
if
(
itemIdx
!=
-
1
)
{
if
(
itemIdx
!=
-
1
)
{
sortClause
=
isDesc
?
GremlinClause
.
INLINE_
SORT_DESC
:
GremlinClause
.
INLIN
E_SORT_ASC
;
sortClause
=
isDesc
?
GremlinClause
.
INLINE_
TUPLE_SORT_DESC
:
GremlinClause
.
INLINE_TUPL
E_SORT_ASC
;
}
}
String
idxStr
=
String
.
valueOf
(
itemIdx
);
String
idxStr
=
String
.
valueOf
(
itemIdx
);
add
(
0
,
fn
,
add
(
0
,
fn
,
selectClauseComposer
.
getLabelHeader
(),
selectClauseComposer
.
getLabelHeader
(),
selectClauseComposer
.
hasAssignmentExpr
()
?
selectClauseComposer
.
getAssignmentExprString
()
:
EMPTY_STRING
,
selectClauseComposer
.
hasAssignmentExpr
()
?
selectClauseComposer
.
getAssignmentExprString
()
:
EMPTY_STRING
,
selectClauseComposer
.
getItemsString
(),
selectClauseComposer
.
getItemsString
(),
sortClause
.
get
(
idxStr
,
idxStr
)
sortClause
.
get
(
idxStr
,
idxStr
)
);
);
}
}
add
(
GremlinClause
.
INLINE_TRANSFORM_CALL
);
add
(
GremlinClause
.
INLINE_TRANSFORM_CALL
);
}
}
private
String
addQuotesIfNecessary
(
String
rhs
)
{
private
String
addQuotesIfNecessary
(
String
rhs
)
{
if
(
IdentifierHelper
.
isTrueOrFalse
(
rhs
))
return
rhs
;
if
(
IdentifierHelper
.
isTrueOrFalse
(
rhs
))
return
rhs
;
if
(
IdentifierHelper
.
isQuoted
(
rhs
))
return
rhs
;
if
(
IdentifierHelper
.
isQuoted
(
rhs
))
return
rhs
;
return
IdentifierHelper
.
getQuoted
(
rhs
);
return
IdentifierHelper
.
getQuoted
(
rhs
);
}
}
private
String
parseDate
(
String
rhs
)
{
private
String
parseDate
(
String
rhs
)
{
String
s
=
IdentifierHelper
.
isQuoted
(
rhs
)
?
String
s
=
IdentifierHelper
.
isQuoted
(
rhs
)
?
IdentifierHelper
.
removeQuotes
(
rhs
)
:
IdentifierHelper
.
removeQuotes
(
rhs
)
:
rhs
;
rhs
;
return
String
.
format
(
"'%d'"
,
getDateFormat
(
s
));
return
String
.
format
(
"'%d'"
,
getDateFormat
(
s
));
}
}
public
long
getDateFormat
(
String
s
)
{
try
{
return
DSL_DATE_FORMAT
.
get
().
parse
(
s
).
getTime
();
}
catch
(
ParseException
ex
)
{
context
.
validator
.
check
(
ex
,
AtlasErrorCode
.
INVALID_DSL_INVALID_DATE
);
}
return
-
1
;
}
private
void
close
()
{
private
void
close
()
{
if
(
isNestedQuery
)
if
(
isNestedQuery
)
return
;
return
;
...
@@ -543,13 +553,8 @@ public class GremlinQueryComposer {
...
@@ -543,13 +553,8 @@ public class GremlinQueryComposer {
add
(
GremlinClause
.
GROUP_BY
,
ia
);
add
(
GremlinClause
.
GROUP_BY
,
ia
);
}
}
public
boolean
hasFromClause
()
{
return
queryClauses
.
contains
(
GremlinClause
.
HAS_TYPE
)
!=
-
1
||
queryClauses
.
contains
(
GremlinClause
.
HAS_TYPE_WITHIN
)
!=
-
1
;
}
private
void
add
(
GremlinClause
clause
,
IdentifierHelper
.
IdentifierMetadata
ia
)
{
private
void
add
(
GremlinClause
clause
,
IdentifierHelper
.
IdentifierMetadata
ia
)
{
if
(
context
!=
null
&&
!
context
.
validator
.
isValid
(
context
,
clause
,
ia
))
{
if
(
context
!=
null
&&
!
context
.
validator
.
isValid
(
context
,
clause
,
ia
))
{
return
;
return
;
}
}
...
@@ -566,7 +571,7 @@ public class GremlinQueryComposer {
...
@@ -566,7 +571,7 @@ public class GremlinQueryComposer {
static
class
GremlinClauseValue
{
static
class
GremlinClauseValue
{
private
final
GremlinClause
clause
;
private
final
GremlinClause
clause
;
private
final
String
value
;
private
final
String
value
;
public
GremlinClauseValue
(
GremlinClause
clause
,
String
value
)
{
public
GremlinClauseValue
(
GremlinClause
clause
,
String
value
)
{
this
.
clause
=
clause
;
this
.
clause
=
clause
;
...
@@ -586,11 +591,11 @@ public class GremlinQueryComposer {
...
@@ -586,11 +591,11 @@ public class GremlinQueryComposer {
static
class
Context
{
static
class
Context
{
private
static
final
AtlasStructType
UNKNOWN_TYPE
=
new
AtlasStructType
(
new
AtlasStructDef
());
private
static
final
AtlasStructType
UNKNOWN_TYPE
=
new
AtlasStructType
(
new
AtlasStructDef
());
private
final
Lookup
lookup
;
private
final
Lookup
lookup
;
private
final
Map
<
String
,
String
>
aliasMap
=
new
HashMap
<>();
private
final
Map
<
String
,
String
>
aliasMap
=
new
HashMap
<>();
private
AtlasType
activeType
;
private
AtlasType
activeType
;
private
SelectClauseComposer
selectClauseComposer
;
private
SelectClauseComposer
selectClauseComposer
;
private
ClauseValidator
validator
;
private
ClauseValidator
validator
;
public
Context
(
Lookup
lookup
)
{
public
Context
(
Lookup
lookup
)
{
this
.
lookup
=
lookup
;
this
.
lookup
=
lookup
;
...
@@ -598,7 +603,7 @@ public class GremlinQueryComposer {
...
@@ -598,7 +603,7 @@ public class GremlinQueryComposer {
}
}
public
void
registerActive
(
String
typeName
)
{
public
void
registerActive
(
String
typeName
)
{
if
(
shouldRegister
(
typeName
))
{
if
(
shouldRegister
(
typeName
))
{
try
{
try
{
activeType
=
lookup
.
getType
(
typeName
);
activeType
=
lookup
.
getType
(
typeName
);
aliasMap
.
put
(
typeName
,
typeName
);
aliasMap
.
put
(
typeName
,
typeName
);
...
@@ -620,8 +625,8 @@ public class GremlinQueryComposer {
...
@@ -620,8 +625,8 @@ public class GremlinQueryComposer {
public
AtlasEntityType
getActiveEntityType
()
{
public
AtlasEntityType
getActiveEntityType
()
{
return
(
activeType
instanceof
AtlasEntityType
)
?
return
(
activeType
instanceof
AtlasEntityType
)
?
(
AtlasEntityType
)
activeType
:
(
AtlasEntityType
)
activeType
:
null
;
null
;
}
}
public
String
getActiveTypeName
()
{
public
String
getActiveTypeName
()
{
...
@@ -634,8 +639,8 @@ public class GremlinQueryComposer {
...
@@ -634,8 +639,8 @@ public class GremlinQueryComposer {
public
boolean
shouldRegister
(
String
typeName
)
{
public
boolean
shouldRegister
(
String
typeName
)
{
return
activeType
==
null
||
return
activeType
==
null
||
(
activeType
!=
null
&&
!
StringUtils
.
equals
(
getActiveTypeName
(),
typeName
))
&&
(
activeType
!=
null
&&
!
StringUtils
.
equals
(
getActiveTypeName
(),
typeName
))
&&
(
activeType
!=
null
&&
!
lookup
.
hasAttribute
(
this
,
typeName
));
(
activeType
!=
null
&&
!
lookup
.
hasAttribute
(
this
,
typeName
));
}
}
public
void
registerAlias
(
String
alias
)
{
public
void
registerAlias
(
String
alias
)
{
...
@@ -654,12 +659,16 @@ public class GremlinQueryComposer {
...
@@ -654,12 +659,16 @@ public class GremlinQueryComposer {
return
activeType
==
null
;
return
activeType
==
null
;
}
}
public
SelectClauseComposer
getSelectClauseComposer
()
{
return
selectClauseComposer
;
}
public
void
setSelectClauseComposer
(
SelectClauseComposer
selectClauseComposer
)
{
public
void
setSelectClauseComposer
(
SelectClauseComposer
selectClauseComposer
)
{
this
.
selectClauseComposer
=
selectClauseComposer
;
this
.
selectClauseComposer
=
selectClauseComposer
;
}
}
public
void
addAlias
(
String
alias
,
String
typeName
)
{
public
void
addAlias
(
String
alias
,
String
typeName
)
{
if
(
aliasMap
.
containsKey
(
alias
))
{
if
(
aliasMap
.
containsKey
(
alias
))
{
check
(
false
,
AtlasErrorCode
.
INVALID_DSL_DUPLICATE_ALIAS
,
alias
,
getActiveTypeName
());
check
(
false
,
AtlasErrorCode
.
INVALID_DSL_DUPLICATE_ALIAS
,
alias
,
getActiveTypeName
());
return
;
return
;
}
}
...
@@ -696,7 +705,7 @@ public class GremlinQueryComposer {
...
@@ -696,7 +705,7 @@ public class GremlinQueryComposer {
case
HAS_TYPE:
case
HAS_TYPE:
TypeCategory
typeCategory
=
ctx
.
getActiveType
().
getTypeCategory
();
TypeCategory
typeCategory
=
ctx
.
getActiveType
().
getTypeCategory
();
return
check
(
StringUtils
.
isNotEmpty
(
ia
.
getTypeName
())
&&
return
check
(
StringUtils
.
isNotEmpty
(
ia
.
getTypeName
())
&&
typeCategory
==
TypeCategory
.
CLASSIFICATION
||
typeCategory
==
TypeCategory
.
ENTITY
,
typeCategory
==
TypeCategory
.
CLASSIFICATION
||
typeCategory
==
TypeCategory
.
ENTITY
,
AtlasErrorCode
.
INVALID_DSL_UNKNOWN_TYPE
,
ia
.
getRaw
());
AtlasErrorCode
.
INVALID_DSL_UNKNOWN_TYPE
,
ia
.
getRaw
());
case
HAS_PROPERTY:
case
HAS_PROPERTY:
...
@@ -718,15 +727,8 @@ public class GremlinQueryComposer {
...
@@ -718,15 +727,8 @@ public class GremlinQueryComposer {
return
check
(
false
,
vm
,
extraArgs
);
return
check
(
false
,
vm
,
extraArgs
);
}
}
private
String
[]
getExtraSlotArgs
(
String
[]
args
,
String
s
)
{
String
[]
argsPlus1
=
new
String
[
args
.
length
+
1
];
System
.
arraycopy
(
args
,
0
,
argsPlus1
,
0
,
args
.
length
);
argsPlus1
[
args
.
length
]
=
s
;
return
argsPlus1
;
}
public
boolean
check
(
boolean
condition
,
AtlasErrorCode
vm
,
String
...
args
)
{
public
boolean
check
(
boolean
condition
,
AtlasErrorCode
vm
,
String
...
args
)
{
if
(!
condition
)
{
if
(!
condition
)
{
addError
(
vm
,
args
);
addError
(
vm
,
args
);
}
}
...
@@ -744,5 +746,12 @@ public class GremlinQueryComposer {
...
@@ -744,5 +746,12 @@ public class GremlinQueryComposer {
public
boolean
isValidQualifiedName
(
String
qualifiedName
,
String
raw
)
{
public
boolean
isValidQualifiedName
(
String
qualifiedName
,
String
raw
)
{
return
check
(
StringUtils
.
isNotEmpty
(
qualifiedName
),
AtlasErrorCode
.
INVALID_DSL_QUALIFIED_NAME
,
raw
);
return
check
(
StringUtils
.
isNotEmpty
(
qualifiedName
),
AtlasErrorCode
.
INVALID_DSL_QUALIFIED_NAME
,
raw
);
}
}
private
String
[]
getExtraSlotArgs
(
String
[]
args
,
String
s
)
{
String
[]
argsPlus1
=
new
String
[
args
.
length
+
1
];
System
.
arraycopy
(
args
,
0
,
argsPlus1
,
0
,
args
.
length
);
argsPlus1
[
args
.
length
]
=
s
;
return
argsPlus1
;
}
}
}
}
}
repository/src/main/java/org/apache/atlas/query/SelectClauseComposer.java
View file @
0a876f93
...
@@ -108,7 +108,11 @@ class SelectClauseComposer {
...
@@ -108,7 +108,11 @@ class SelectClauseComposer {
}
}
public
boolean
onlyAggregators
()
{
public
boolean
onlyAggregators
()
{
return
aggCount
>
0
&&
aggCount
==
items
.
length
;
return
hasAggregators
()
&&
aggCount
==
items
.
length
;
}
public
boolean
hasAggregators
()
{
return
aggCount
>
0
;
}
}
public
String
getLabelHeader
()
{
public
String
getLabelHeader
()
{
...
...
repository/src/test/java/org/apache/atlas/query/DSLQueriesTest.java
View file @
0a876f93
...
@@ -565,16 +565,16 @@ public class DSLQueriesTest extends BasicTestSetup {
...
@@ -565,16 +565,16 @@ public class DSLQueriesTest extends BasicTestSetup {
new
FieldValueValidator
()
new
FieldValueValidator
()
.
withFieldNames
(
"'count'"
,
"'sum'"
)
.
withFieldNames
(
"'count'"
,
"'sum'"
)
.
withExpectedValues
(
4
,
86
)
},
.
withExpectedValues
(
4
,
86
)
},
{
"from hive_db groupby (owner) select min(name) orderby name limit 2 "
,
//
{ "from hive_db groupby (owner) select min(name) orderby name limit 2 ",
new
FieldValueValidator
()
//
new FieldValueValidator()
.
withFieldNames
(
"min(name)"
)
//
.withFieldNames("min(name)")
.
withExpectedValues
(
"Logging"
)
//
.withExpectedValues("Logging")
.
withExpectedValues
(
"Reporting"
)
},
//
.withExpectedValues("Reporting") },
{
"from hive_db groupby (owner) select min(name) orderby name desc limit 2 "
,
//
{ "from hive_db groupby (owner) select min(name) orderby name desc limit 2 ",
new
FieldValueValidator
()
//
new FieldValueValidator()
.
withFieldNames
(
"min(name)"
)
//
.withFieldNames("min(name)")
.
withExpectedValues
(
"Reporting"
)
//
.withExpectedValues("Reporting")
.
withExpectedValues
(
"Sales"
)
}
//
.withExpectedValues("Sales") }
};
};
}
}
...
...
repository/src/test/java/org/apache/atlas/query/GremlinQueryComposerTest.java
View file @
0a876f93
...
@@ -31,7 +31,7 @@ import org.testng.annotations.Test;
...
@@ -31,7 +31,7 @@ import org.testng.annotations.Test;
import
static
org
.
mockito
.
Mockito
.
mock
;
import
static
org
.
mockito
.
Mockito
.
mock
;
import
static
org
.
mockito
.
Mockito
.
when
;
import
static
org
.
mockito
.
Mockito
.
when
;
import
static
org
.
testng
.
Assert
.
assertEquals
;
import
static
org
.
testng
.
Assert
.
assertEquals
;
import
static
org
.
testng
.
Assert
.
assertFalse
;
import
static
org
.
testng
.
Assert
.
fail
;
public
class
GremlinQueryComposerTest
{
public
class
GremlinQueryComposerTest
{
@Test
@Test
...
@@ -102,7 +102,7 @@ public class GremlinQueryComposerTest {
...
@@ -102,7 +102,7 @@ public class GremlinQueryComposerTest {
public
void
groupByMin
()
{
public
void
groupByMin
()
{
verify
(
"from DB groupby (owner) select min(name) orderby name limit 2"
,
verify
(
"from DB groupby (owner) select min(name) orderby name limit 2"
,
"def f(l){ t=[['min(name)']]; l.get(0).each({k,r -> L:{ def min=r.min({it.value('DB.name')}).value('DB.name'); t.add([min]); } }); t; }; "
+
"def f(l){ t=[['min(name)']]; l.get(0).each({k,r -> L:{ def min=r.min({it.value('DB.name')}).value('DB.name'); t.add([min]); } }); t; }; "
+
"f(g.V().has('__typeName', 'DB').group().by('DB.owner').
limit(local, 2).limit(2).
toList())"
);
"f(g.V().has('__typeName', 'DB').group().by('DB.owner').toList())"
);
}
}
@Test
@Test
...
@@ -192,13 +192,13 @@ public class GremlinQueryComposerTest {
...
@@ -192,13 +192,13 @@ public class GremlinQueryComposerTest {
@Test
@Test
public
void
countMinMax
()
{
public
void
countMinMax
()
{
verify
(
"from DB groupby (owner) select count()"
,
verify
(
"from DB groupby (owner) select count()"
,
"def f(l){ t=[['count()']]; l.get(0).each({k,r -> L:{ def count=r.size(); t.add([count]); } }); t; }; f(g.V().has('__typeName', 'DB').group().by('DB.owner').
limit(local, 25).limit(25).
toList())"
);
"def f(l){ t=[['count()']]; l.get(0).each({k,r -> L:{ def count=r.size(); t.add([count]); } }); t; }; f(g.V().has('__typeName', 'DB').group().by('DB.owner').toList())"
);
verify
(
"from DB groupby (owner) select max(name)"
,
verify
(
"from DB groupby (owner) select max(name)"
,
"def f(l){ t=[['max(name)']]; l.get(0).each({k,r -> L:{ def max=r.max({it.value('DB.name')}).value('DB.name'); t.add([max]); } }); t; }; f(g.V().has('__typeName', 'DB').group().by('DB.owner').
limit(local, 25).limit(25).
toList())"
);
"def f(l){ t=[['max(name)']]; l.get(0).each({k,r -> L:{ def max=r.max({it.value('DB.name')}).value('DB.name'); t.add([max]); } }); t; }; f(g.V().has('__typeName', 'DB').group().by('DB.owner').toList())"
);
verify
(
"from DB groupby (owner) select min(name)"
,
verify
(
"from DB groupby (owner) select min(name)"
,
"def f(l){ t=[['min(name)']]; l.get(0).each({k,r -> L:{ def min=r.min({it.value('DB.name')}).value('DB.name'); t.add([min]); } }); t; }; f(g.V().has('__typeName', 'DB').group().by('DB.owner').
limit(local, 25).limit(25).
toList())"
);
"def f(l){ t=[['min(name)']]; l.get(0).each({k,r -> L:{ def min=r.min({it.value('DB.name')}).value('DB.name'); t.add([min]); } }); t; }; f(g.V().has('__typeName', 'DB').group().by('DB.owner').toList())"
);
verify
(
"from Table select sum(createTime)"
,
verify
(
"from Table select sum(createTime)"
,
"def f(r){ t=[['sum(createTime)']]; def sum=r.sum({it.value('Table.createTime')}); t.add([sum]); t;}; f(g.V().has('__typeName', 'Table').
limit(local, 25).limit(25).
toList())"
);
"def f(r){ t=[['sum(createTime)']]; def sum=r.sum({it.value('Table.createTime')}); t.add([sum]); t;}; f(g.V().has('__typeName', 'Table').toList())"
);
}
}
@Test
@Test
...
@@ -352,12 +352,11 @@ public class GremlinQueryComposerTest {
...
@@ -352,12 +352,11 @@ public class GremlinQueryComposerTest {
}
}
private
AtlasDSLParser
.
QueryContext
getParsedQuery
(
String
query
)
{
private
AtlasDSLParser
.
QueryContext
getParsedQuery
(
String
query
)
{
AtlasDSL
.
Parser
parser
=
new
AtlasDSL
.
Parser
();
AtlasDSLParser
.
QueryContext
queryContext
=
null
;
AtlasDSLParser
.
QueryContext
queryContext
=
null
;
try
{
try
{
queryContext
=
p
arser
.
parse
(
query
);
queryContext
=
AtlasDSL
.
P
arser
.
parse
(
query
);
}
catch
(
AtlasBaseException
e
)
{
}
catch
(
AtlasBaseException
e
)
{
assertFalse
(
e
!=
null
,
e
.
getMessage
());
fail
(
e
.
getMessage
());
}
}
return
queryContext
;
return
queryContext
;
}
}
...
@@ -381,7 +380,7 @@ public class GremlinQueryComposerTest {
...
@@ -381,7 +380,7 @@ public class GremlinQueryComposerTest {
private
static
class
TestLookup
implements
org
.
apache
.
atlas
.
query
.
Lookup
{
private
static
class
TestLookup
implements
org
.
apache
.
atlas
.
query
.
Lookup
{
AtlasTypeRegistry
registry
;
AtlasTypeRegistry
registry
;
public
TestLookup
(
AtlasTypeRegistry
typeRegistry
)
{
TestLookup
(
AtlasTypeRegistry
typeRegistry
)
{
this
.
registry
=
typeRegistry
;
this
.
registry
=
typeRegistry
;
}
}
...
...
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