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
398286a9
Commit
398286a9
authored
Mar 16, 2015
by
Harish Butani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add IdType as an OOB type in TypeSystem; use it when exposing Trait instance…
add IdType as an OOB type in TypeSystem; use it when exposing Trait instance info; introduce PathExpression
parent
3718af6b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
89 additions
and
26 deletions
+89
-26
DefaultGraphPersistenceStrategy.java
...data/discovery/graph/DefaultGraphPersistenceStrategy.java
+6
-8
Expressions.scala
.../scala/org/apache/hadoop/metadata/query/Expressions.scala
+17
-2
GraphPersistenceStrategies.scala
...he/hadoop/metadata/query/GraphPersistenceStrategies.scala
+4
-3
GremlinQuery.scala
...scala/org/apache/hadoop/metadata/query/GremlinQuery.scala
+3
-3
TypeUtils.scala
...in/scala/org/apache/hadoop/metadata/query/TypeUtils.scala
+12
-10
TypeSystem.java
...g/apache/hadoop/metadata/typesystem/types/TypeSystem.java
+47
-0
No files found.
repository/src/main/java/org/apache/hadoop/metadata/discovery/graph/DefaultGraphPersistenceStrategy.java
View file @
398286a9
...
...
@@ -29,11 +29,7 @@ import org.apache.hadoop.metadata.repository.graph.GraphBackedMetadataRepository
import
org.apache.hadoop.metadata.typesystem.ITypedReferenceableInstance
;
import
org.apache.hadoop.metadata.typesystem.ITypedStruct
;
import
org.apache.hadoop.metadata.typesystem.persistence.Id
;
import
org.apache.hadoop.metadata.typesystem.types.AttributeInfo
;
import
org.apache.hadoop.metadata.typesystem.types.IDataType
;
import
org.apache.hadoop.metadata.typesystem.types.Multiplicity
;
import
org.apache.hadoop.metadata.typesystem.types.StructType
;
import
org.apache.hadoop.metadata.typesystem.types.TraitType
;
import
org.apache.hadoop.metadata.typesystem.types.*
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
...
...
@@ -109,10 +105,12 @@ public class DefaultGraphPersistenceStrategy implements GraphPersistenceStrategi
StructType
structType
=
(
StructType
)
dataType
;
ITypedStruct
structInstance
=
structType
.
createInstance
();
if
(
dataType
.
getName
()
==
TypeUtils
.
INSTANCE_ID_TYP
().
getName
())
{
structInstance
.
set
(
TypeUtils
.
INSTANCE_ID_TYP_TYPENAME_ATTRNAME
(),
TypeSystem
.
IdType
idType
=
TypeSystem
.
getInstance
().
getIdType
();
if
(
dataType
.
getName
()
==
idType
.
getName
())
{
structInstance
.
set
(
idType
.
typeNameAttrName
(),
structVertex
.
getProperty
(
typeAttributeName
()));
structInstance
.
set
(
TypeUtils
.
INSTANCE_ID_TYP_ID_ATTRNAME
(),
structInstance
.
set
(
idType
.
idAttrName
(),
structVertex
.
getProperty
(
idAttributeName
()));
}
else
{
...
...
repository/src/main/scala/org/apache/hadoop/metadata/query/Expressions.scala
View file @
398286a9
...
...
@@ -324,6 +324,8 @@ object Expressions {
def
traitInstance
()
=
new
TraitInstanceExpression
(
this
)
def
instance
()
=
new
InstanceExpression
(
this
)
def
path
()
=
new
PathExpression
(
this
)
}
trait
BinaryNode
{
...
...
@@ -703,7 +705,7 @@ object Expressions {
throw
new
ExpressionException
(
this
,
s
"Cannot apply instance on ${child.dataType.getName}, it is not a TraitType"
)
}
TypeUtils
.
INSTANCE_ID_TYP
typSystem
.
getIdType
.
getStructType
}
override
def
toString
=
s
"$child traitInstance"
...
...
@@ -716,9 +718,22 @@ object Expressions {
throw
new
UnresolvedException
(
this
,
s
"datatype. Can not resolve due to unresolved child"
)
}
TypeUtils
.
INSTANCE_ID_TYP
typSystem
.
getIdType
.
getStructType
}
override
def
toString
=
s
"$child instance"
}
case
class
PathExpression
(
child
:
Expression
)
extends
Expression
with
UnaryNode
{
lazy
val
dataType
=
{
if
(!
resolved
)
{
throw
new
UnresolvedException
(
this
,
s
"datatype. Can not resolve due to unresolved child"
)
}
TypeUtils
.
ResultWithPathStruct
.
createType
(
child
.
dataType
)
}
override
def
toString
=
s
"$child withPath"
}
}
repository/src/main/scala/org/apache/hadoop/metadata/query/GraphPersistenceStrategies.scala
View file @
398286a9
...
...
@@ -138,13 +138,14 @@ object GraphPersistenceStrategy1 extends GraphPersistenceStrategies {
def
constructInstance
[
U
](
dataType
:
IDataType
[
U
],
v
:
AnyRef
)
:
U
=
{
dataType
.
getTypeCategory
match
{
case
DataTypes
.
TypeCategory
.
PRIMITIVE
=>
dataType
.
convert
(
v
,
Multiplicity
.
OPTIONAL
)
case
DataTypes
.
TypeCategory
.
STRUCT
if
dataType
.
getName
==
TypeUtils
.
INSTANCE_ID_TYP
.
getName
=>
{
case
DataTypes
.
TypeCategory
.
STRUCT
if
dataType
.
getName
==
TypeSystem
.
getInstance
().
getIdType
.
getName
=>
{
val
sType
=
dataType
.
asInstanceOf
[
StructType
]
val
sInstance
=
sType
.
createInstance
()
val
tV
=
v
.
asInstanceOf
[
TitanVertex
]
sInstance
.
set
(
Type
Utils
.
INSTANCE_ID_TYP_TYPENAME_ATTRNAME
,
sInstance
.
set
(
Type
System
.
getInstance
().
getIdType
.
typeNameAttrName
,
tV
.
getProperty
[
java.lang.String
](
typeAttributeName
))
sInstance
.
set
(
Type
Utils
.
INSTANCE_ID_TYP_ID_ATTRNAME
,
sInstance
.
set
(
Type
System
.
getInstance
().
getIdType
.
idAttrName
,
tV
.
getProperty
[
java.lang.String
](
idAttributeName
))
dataType
.
convert
(
sInstance
,
Multiplicity
.
OPTIONAL
)
}
...
...
repository/src/main/scala/org/apache/hadoop/metadata/query/GremlinQuery.scala
View file @
398286a9
...
...
@@ -20,6 +20,7 @@ package org.apache.hadoop.metadata.query
import
org.apache.hadoop.metadata.query.Expressions._
import
org.apache.hadoop.metadata.typesystem.types.DataTypes.TypeCategory
import
org.apache.hadoop.metadata.typesystem.types.TypeSystem
import
scala.collection.mutable
import
scala.collection.mutable.ArrayBuffer
...
...
@@ -174,9 +175,8 @@ class GremlinTranslator(expr: Expression,
val
theTrait
=
te
.
as
(
"theTrait"
)
val
theInstance
=
theTrait
.
traitInstance
().
as
(
"theInstance"
)
val
outE
=
theInstance
.
select
(
id
(
"theTrait"
),
id
(
"theInstance"
).
field
(
TypeUtils
.
INSTANCE_ID_TYP_TYPENAME_ATTRNAME
).
as
(
"instanceTypeName"
),
id
(
"theInstance"
).
field
(
TypeUtils
.
INSTANCE_ID_TYP_ID_ATTRNAME
).
as
(
"instanceId"
))
theInstance
.
select
(
id
(
"theTrait"
).
as
(
"traitDetails"
),
id
(
"theInstance"
).
as
(
"instanceInfo"
))
QueryProcessor
.
validate
(
outE
)
}
}
...
...
repository/src/main/scala/org/apache/hadoop/metadata/query/TypeUtils.scala
View file @
398286a9
...
...
@@ -65,16 +65,18 @@ object TypeUtils {
aDefs
:_
*
);
}
val
INSTANCE_ID_TYP_ID_ATTRNAME
=
"guid"
val
INSTANCE_ID_TYP_TYPENAME_ATTRNAME
=
"typeName"
val
INSTANCE_ID_TYP_NAME
=
TEMP_STRUCT_NAME_PREFIX
+
"_IdType"
val
INSTANCE_ID_TYP
=
{
val
idAttr
=
new
AttributeDefinition
(
INSTANCE_ID_TYP_ID_ATTRNAME
,
DataTypes
.
STRING_TYPE
.
getName
,
Multiplicity
.
REQUIRED
,
false
,
null
)
val
typNmAttr
=
new
AttributeDefinition
(
INSTANCE_ID_TYP_TYPENAME_ATTRNAME
,
DataTypes
.
STRING_TYPE
.
getName
,
Multiplicity
.
REQUIRED
,
false
,
null
)
typSystem
.
defineQueryResultType
(
INSTANCE_ID_TYP_NAME
,
idAttr
,
typNmAttr
);
object
ResultWithPathStruct
{
val
pathAttrName
=
"path"
val
resultAttrName
=
"result"
val
pathAttrType
=
DataTypes
.
arrayTypeName
(
typSystem
.
getIdType
.
getStructType
)
val
pathAttr
=
new
AttributeDefinition
(
pathAttrName
,
pathAttrType
,
Multiplicity
.
COLLECTION
,
false
,
null
)
def
createType
(
resultType
:
IDataType
[
_
])
:
StructType
=
{
val
resultAttr
=
new
AttributeDefinition
(
resultAttrName
,
pathAttrType
,
Multiplicity
.
REQUIRED
,
false
,
null
)
val
typName
=
s
"${TEMP_STRUCT_NAME_PREFIX}${tempStructCounter.getAndIncrement}"
typSystem
.
defineQueryResultType
(
typName
,
pathAttr
,
resultAttr
);
}
}
def
fieldMapping
(
iDataType
:
IDataType
[
_
])
:
Option
[
FieldMapping
]
=
iDataType
match
{
...
...
typesystem/src/main/java/org/apache/hadoop/metadata/typesystem/types/TypeSystem.java
View file @
398286a9
...
...
@@ -41,6 +41,7 @@ public class TypeSystem {
private
static
final
TypeSystem
INSTANCE
=
new
TypeSystem
();
public
static
SimpleDateFormat
dateFormat
=
new
SimpleDateFormat
(
"yyyy-MM-dd"
);
private
Map
<
String
,
IDataType
>
types
;
private
IdType
idType
;
private
TypeSystem
()
{
initialize
();
...
...
@@ -61,6 +62,7 @@ public class TypeSystem {
private
void
initialize
()
{
types
=
new
HashMap
<>();
registerPrimitiveTypes
();
registerCoreTypes
();
}
public
ImmutableList
<
String
>
getTypeNames
()
{
...
...
@@ -81,6 +83,18 @@ public class TypeSystem {
types
.
put
(
DataTypes
.
STRING_TYPE
.
getName
(),
DataTypes
.
STRING_TYPE
);
}
/*
* The only core OOB type we will define is the Struct to represent the Identity of an Instance.
*/
private
void
registerCoreTypes
()
{
idType
=
new
IdType
();
}
public
IdType
getIdType
()
{
return
idType
;
}
public
boolean
isRegistered
(
String
typeName
)
{
return
types
.
containsKey
(
typeName
);
}
...
...
@@ -562,4 +576,37 @@ public class TypeSystem {
throw
new
MetadataException
(
"Internal Error: define type called on TrasientTypeSystem"
);
}
}
public
class
IdType
{
private
static
final
String
ID_ATTRNAME
=
"guid"
;
private
static
final
String
TYPENAME_ATTRNAME
=
"typeName"
;
private
static
final
String
TYP_NAME
=
"__IdType"
;
private
IdType
()
{
AttributeDefinition
idAttr
=
new
AttributeDefinition
(
ID_ATTRNAME
,
DataTypes
.
STRING_TYPE
.
getName
(),
Multiplicity
.
REQUIRED
,
false
,
null
);
AttributeDefinition
typNmAttr
=
new
AttributeDefinition
(
TYPENAME_ATTRNAME
,
DataTypes
.
STRING_TYPE
.
getName
(),
Multiplicity
.
REQUIRED
,
false
,
null
);
try
{
AttributeInfo
[]
infos
=
new
AttributeInfo
[
2
];
infos
[
0
]
=
new
AttributeInfo
(
TypeSystem
.
this
,
idAttr
);
infos
[
1
]
=
new
AttributeInfo
(
TypeSystem
.
this
,
typNmAttr
);
StructType
type
=
new
StructType
(
TypeSystem
.
this
,
TYP_NAME
,
null
,
infos
);
TypeSystem
.
this
.
types
.
put
(
TYP_NAME
,
type
);
}
catch
(
MetadataException
me
)
{
throw
new
RuntimeException
(
me
);
}
}
public
StructType
getStructType
()
throws
MetadataException
{
return
getDataType
(
StructType
.
class
,
TYP_NAME
);
}
public
String
getName
()
{
return
TYP_NAME
;
}
public
String
idAttrName
()
{
return
ID_ATTRNAME
;}
public
String
typeNameAttrName
()
{
return
TYPENAME_ATTRNAME
;}
}
}
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