Java Code Examples for org.apache.hadoop.hive.ql.parse.ASTNode#getType()
The following examples show how to use
org.apache.hadoop.hive.ql.parse.ASTNode#getType() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Parser.java From Eagle with Apache License 2.0 | 7 votes |
private void parseQL(ASTNode ast) { switch (ast.getType()) { case HiveParser.TOK_QUERY: visitSubtree(ast); break; case HiveParser.TOK_UPDATE_TABLE: setOperation("UPDATE"); visitSubtree(ast); break; case HiveParser.TOK_DELETE_FROM: setOperation("DELETE FROM"); visitSubtree(ast); break; default: LOG.error("Unsupporting query operation " + ast.getType()); throw new IllegalStateException("Query operation is not supported " + ast.getType()); } }
Example 2
Source File: Parser.java From eagle with Apache License 2.0 | 6 votes |
private void parseTokFunction(ASTNode ast, Set<String> set) { switch(ast.getType()) { case HiveParser.TOK_TABLE_OR_COL: String colRealName = convAliasToReal(columnAliasMap, ast.getChild(0).getText()); set.add(colRealName); break; case HiveParser.TOK_FUNCTION: for (int i = 0; i < ast.getChildCount(); i++) { ASTNode n = (ASTNode)ast.getChild(i); if (n != null) { parseTokFunction(n, set); } } break; } }
Example 3
Source File: SentryHiveAuthorizationTaskFactoryImpl.java From incubator-sentry with Apache License 2.0 | 6 votes |
@Override public Task<? extends Serializable> createShowRoleGrantTask(ASTNode ast, Path resultFile, HashSet<ReadEntity> inputs, HashSet<WriteEntity> outputs) throws SemanticException { ASTNode child = (ASTNode) ast.getChild(0); PrincipalType principalType = PrincipalType.USER; switch (child.getType()) { case HiveParser.TOK_USER: principalType = PrincipalType.USER; break; case HiveParser.TOK_GROUP: principalType = PrincipalType.GROUP; break; case HiveParser.TOK_ROLE: principalType = PrincipalType.ROLE; break; } if (principalType != PrincipalType.GROUP) { String msg = SentryHiveConstants.GRANT_REVOKE_NOT_SUPPORTED_FOR_PRINCIPAL + principalType; throw new SemanticException(msg); } String principalName = BaseSemanticAnalyzer.unescapeIdentifier(child.getChild(0).getText()); RoleDDLDesc roleDesc = new RoleDDLDesc(principalName, principalType, RoleDDLDesc.RoleOperation.SHOW_ROLE_GRANT, null); roleDesc.setResFile(resultFile.toString()); return createTask(new DDLWork(inputs, outputs, roleDesc)); }
Example 4
Source File: Parser.java From Eagle with Apache License 2.0 | 5 votes |
private void parseTokFunction(ASTNode ast, Set<String> set) { if (ast.getType() == HiveParser.TOK_TABLE_OR_COL) { String colRealName = convAliasToReal(columnAliasMap, ast.getChild(0).getText()); set.add(colRealName); } for (int i = 0; i < ast.getChildCount(); i++) { ASTNode n = (ASTNode)ast.getChild(i); if (n != null) { parseTokFunction(n, set); } } }
Example 5
Source File: Parser.java From eagle with Apache License 2.0 | 5 votes |
private void parseQL(ASTNode ast) { switch (ast.getType()) { case HiveParser.TOK_QUERY: parseQueryClause(ast); addTablesColumnsToMap(tableSet, columnSet); break; case HiveParser.TOK_UPDATE_TABLE: setOperation("UPDATE"); visitSubtree(ast); break; case HiveParser.TOK_DELETE_FROM: setOperation("DELETE"); visitSubtree(ast); break; case HiveParser.TOK_CREATETABLE: setOperation("CREATE"); visitSubtree(ast); break; case HiveParser.TOK_DROPTABLE: setOperation("DROP"); visitSubtree(ast); break; case HiveParser.TOK_ALTERTABLE: setOperation("ALTER"); visitSubtree(ast); break; default: LOG.error("Unsupported query operation " + ast.getText()); throw new IllegalStateException("Query operation is not supported " + ast.getText()); } }
Example 6
Source File: SentryHiveAuthorizationTaskFactoryImpl.java From incubator-sentry with Apache License 2.0 | 5 votes |
@Override public Task<? extends Serializable> createGrantTask(ASTNode ast, HashSet<ReadEntity> inputs, HashSet<WriteEntity> outputs) throws SemanticException { List<PrivilegeDesc> privilegeDesc = analyzePrivilegeListDef( (ASTNode) ast.getChild(0)); List<PrincipalDesc> principalDesc = analyzePrincipalListDef( (ASTNode) ast.getChild(1)); SentryHivePrivilegeObjectDesc privilegeObj = null; boolean grantOption = false; if (ast.getChildCount() > 2) { for (int i = 2; i < ast.getChildCount(); i++) { ASTNode astChild = (ASTNode) ast.getChild(i); if (astChild.getType() == HiveParser.TOK_GRANT_WITH_OPTION) { grantOption = true; } else if (astChild.getType() == HiveParser.TOK_PRIV_OBJECT) { privilegeObj = analyzePrivilegeObject(astChild); } } } String userName = null; if (SessionState.get() != null && SessionState.get().getAuthenticator() != null) { userName = SessionState.get().getAuthenticator().getUserName(); } Preconditions.checkNotNull(privilegeObj, "privilegeObj is null for " + ast.dump()); if (privilegeObj.getPartSpec() != null) { throw new SemanticException(SentryHiveConstants.PARTITION_PRIVS_NOT_SUPPORTED); } for (PrincipalDesc princ : principalDesc) { if (princ.getType() != PrincipalType.ROLE) { String msg = SentryHiveConstants.GRANT_REVOKE_NOT_SUPPORTED_FOR_PRINCIPAL + princ.getType(); throw new SemanticException(msg); } } GrantDesc grantDesc = new GrantDesc(privilegeObj, privilegeDesc, principalDesc, userName, PrincipalType.USER, grantOption); return createTask(new DDLWork(inputs, outputs, grantDesc)); }
Example 7
Source File: SentryHiveAuthorizationTaskFactoryImpl.java From incubator-sentry with Apache License 2.0 | 5 votes |
@Override public Task<? extends Serializable> createShowGrantTask(ASTNode ast, Path resultFile, HashSet<ReadEntity> inputs, HashSet<WriteEntity> outputs) throws SemanticException { SentryHivePrivilegeObjectDesc privHiveObj = null; ASTNode principal = (ASTNode) ast.getChild(0); PrincipalType type = PrincipalType.USER; switch (principal.getType()) { case HiveParser.TOK_USER: type = PrincipalType.USER; break; case HiveParser.TOK_GROUP: type = PrincipalType.GROUP; break; case HiveParser.TOK_ROLE: type = PrincipalType.ROLE; break; } if (type != PrincipalType.ROLE) { String msg = SentryHiveConstants.GRANT_REVOKE_NOT_SUPPORTED_FOR_PRINCIPAL + type; throw new SemanticException(msg); } String principalName = BaseSemanticAnalyzer.unescapeIdentifier(principal.getChild(0).getText()); PrincipalDesc principalDesc = new PrincipalDesc(principalName, type); // Partition privileges are not supported by Sentry if (ast.getChildCount() > 1) { ASTNode child = (ASTNode) ast.getChild(1); if (child.getToken().getType() == HiveParser.TOK_PRIV_OBJECT_COL) { privHiveObj = analyzePrivilegeObject(child); } else { throw new SemanticException("Unrecognized Token: " + child.getToken().getType()); } } ShowGrantDesc showGrant = new ShowGrantDesc(resultFile.toString(), principalDesc, privHiveObj); return createTask(new DDLWork(inputs, outputs, showGrant)); }
Example 8
Source File: SentryHiveAuthorizationTaskFactoryImpl.java From incubator-sentry with Apache License 2.0 | 5 votes |
private List<PrincipalDesc> analyzePrincipalListDef(ASTNode node) { List<PrincipalDesc> principalList = new ArrayList<PrincipalDesc>(); for (int i = 0; i < node.getChildCount(); i++) { ASTNode child = (ASTNode) node.getChild(i); PrincipalType type = null; switch (child.getType()) { case 880: type = PrincipalType.USER; break; case HiveParser.TOK_USER: type = PrincipalType.USER; break; case 685: type = PrincipalType.GROUP; break; case HiveParser.TOK_GROUP: type = PrincipalType.GROUP; break; case 782: type = PrincipalType.ROLE; break; case HiveParser.TOK_ROLE: type = PrincipalType.ROLE; break; } String principalName = BaseSemanticAnalyzer.unescapeIdentifier(child.getChild(0).getText()); PrincipalDesc principalDesc = new PrincipalDesc(principalName, type); LOG.debug("## Principal : [ " + principalName + ", " + type + "]"); principalList.add(principalDesc); } return principalList; }