-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split EncryptInsertSelectProjectionTokenGenerator and EncryptSelectPr…
…ojectionTokenGenerator (#32285) * Split EncryptInsertSelectProjectionTokenGenerator and EncryptSelectProjectionTokenGenerator * Split EncryptInsertSelectProjectionTokenGenerator and EncryptSelectProjectionTokenGenerator
- Loading branch information
Showing
7 changed files
with
139 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...crypt/rewrite/token/generator/projection/EncryptInsertSelectProjectionTokenGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.shardingsphere.encrypt.rewrite.token.generator.projection; | ||
|
||
import lombok.Setter; | ||
import org.apache.shardingsphere.encrypt.rewrite.aware.DatabaseTypeAware; | ||
import org.apache.shardingsphere.encrypt.rewrite.aware.EncryptRuleAware; | ||
import org.apache.shardingsphere.encrypt.rule.EncryptRule; | ||
import org.apache.shardingsphere.infra.binder.context.statement.SQLStatementContext; | ||
import org.apache.shardingsphere.infra.binder.context.statement.dml.InsertStatementContext; | ||
import org.apache.shardingsphere.infra.database.core.type.DatabaseType; | ||
import org.apache.shardingsphere.infra.rewrite.sql.token.generator.CollectionSQLTokenGenerator; | ||
import org.apache.shardingsphere.infra.rewrite.sql.token.generator.aware.PreviousSQLTokensAware; | ||
import org.apache.shardingsphere.infra.rewrite.sql.token.pojo.SQLToken; | ||
|
||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
/** | ||
* Projection token generator for encrypt. | ||
*/ | ||
@Setter | ||
public final class EncryptInsertSelectProjectionTokenGenerator implements CollectionSQLTokenGenerator<InsertStatementContext>, PreviousSQLTokensAware, EncryptRuleAware, DatabaseTypeAware { | ||
|
||
private List<SQLToken> previousSQLTokens; | ||
|
||
private EncryptRule encryptRule; | ||
|
||
private DatabaseType databaseType; | ||
|
||
@Override | ||
public boolean isGenerateSQLToken(final SQLStatementContext sqlStatementContext) { | ||
return sqlStatementContext instanceof InsertStatementContext && null != ((InsertStatementContext) sqlStatementContext).getInsertSelectContext(); | ||
} | ||
|
||
@Override | ||
public Collection<SQLToken> generateSQLTokens(final InsertStatementContext sqlStatementContext) { | ||
return new EncryptProjectionTokenGenerator(previousSQLTokens, encryptRule, databaseType).generateSQLTokens(sqlStatementContext.getInsertSelectContext().getSelectStatementContext()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...ere/encrypt/rewrite/token/generator/projection/EncryptSelectProjectionTokenGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.shardingsphere.encrypt.rewrite.token.generator.projection; | ||
|
||
import lombok.Setter; | ||
import org.apache.shardingsphere.encrypt.rewrite.aware.DatabaseTypeAware; | ||
import org.apache.shardingsphere.encrypt.rewrite.aware.EncryptRuleAware; | ||
import org.apache.shardingsphere.encrypt.rule.EncryptRule; | ||
import org.apache.shardingsphere.infra.binder.context.statement.SQLStatementContext; | ||
import org.apache.shardingsphere.infra.binder.context.statement.dml.SelectStatementContext; | ||
import org.apache.shardingsphere.infra.database.core.type.DatabaseType; | ||
import org.apache.shardingsphere.infra.rewrite.sql.token.generator.CollectionSQLTokenGenerator; | ||
import org.apache.shardingsphere.infra.rewrite.sql.token.generator.aware.PreviousSQLTokensAware; | ||
import org.apache.shardingsphere.infra.rewrite.sql.token.pojo.SQLToken; | ||
|
||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
/** | ||
* Projection token generator for encrypt. | ||
*/ | ||
@Setter | ||
public final class EncryptSelectProjectionTokenGenerator implements CollectionSQLTokenGenerator<SelectStatementContext>, PreviousSQLTokensAware, EncryptRuleAware, DatabaseTypeAware { | ||
|
||
private List<SQLToken> previousSQLTokens; | ||
|
||
private EncryptRule encryptRule; | ||
|
||
private DatabaseType databaseType; | ||
|
||
@Override | ||
public boolean isGenerateSQLToken(final SQLStatementContext sqlStatementContext) { | ||
return sqlStatementContext instanceof SelectStatementContext && !((SelectStatementContext) sqlStatementContext).getTablesContext().getSimpleTables().isEmpty(); | ||
} | ||
|
||
@Override | ||
public Collection<SQLToken> generateSQLTokens(final SelectStatementContext sqlStatementContext) { | ||
return new EncryptProjectionTokenGenerator(previousSQLTokens, encryptRule, databaseType).generateSQLTokens(sqlStatementContext); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters