forked from apache/gravitino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[apache#6144] improve(CLI): Refactor schema commands in Gravitino CLI (…
…apache#6178) ### What changes were proposed in this pull request? Refactor schema commands in Gravitino CLI. ### Why are the changes needed? Fix: apache#6144 ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Local test
- Loading branch information
1 parent
aa4fc60
commit bba9157
Showing
3 changed files
with
192 additions
and
80 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
185 changes: 185 additions & 0 deletions
185
clients/cli/src/main/java/org/apache/gravitino/cli/SchemaCommandHandler.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,185 @@ | ||
/* | ||
* 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.gravitino.cli; | ||
|
||
import com.google.common.collect.Lists; | ||
import java.util.List; | ||
import org.apache.commons.cli.CommandLine; | ||
import org.apache.gravitino.cli.commands.Command; | ||
|
||
public class SchemaCommandHandler extends CommandHandler { | ||
|
||
private final GravitinoCommandLine gravitinoCommandLine; | ||
private final CommandLine line; | ||
private final String command; | ||
private final boolean ignore; | ||
private final String url; | ||
private final FullName name; | ||
private final String metalake; | ||
private final String catalog; | ||
private String schema; | ||
|
||
/** | ||
* Constructs a {@link SchemaCommandHandler} instance. | ||
* | ||
* @param gravitinoCommandLine The Gravitino command line instance. | ||
* @param line The command line arguments. | ||
* @param command The command to execute. | ||
* @param ignore Ignore server version mismatch. | ||
*/ | ||
public SchemaCommandHandler( | ||
GravitinoCommandLine gravitinoCommandLine, CommandLine line, String command, boolean ignore) { | ||
this.gravitinoCommandLine = gravitinoCommandLine; | ||
this.line = line; | ||
this.command = command; | ||
this.ignore = ignore; | ||
|
||
this.url = getUrl(line); | ||
this.name = new FullName(line); | ||
this.metalake = name.getMetalakeName(); | ||
this.catalog = name.getCatalogName(); | ||
} | ||
|
||
@Override | ||
protected void handle() { | ||
String userName = line.getOptionValue(GravitinoOptions.LOGIN); | ||
Command.setAuthenticationMode(getAuth(line), userName); | ||
|
||
List<String> missingEntities = Lists.newArrayList(); | ||
if (metalake == null) missingEntities.add(CommandEntities.METALAKE); | ||
if (catalog == null) missingEntities.add(CommandEntities.CATALOG); | ||
|
||
if (CommandActions.LIST.equals(command)) { | ||
checkEntities(missingEntities); | ||
handleListCommand(); | ||
return; | ||
} | ||
|
||
this.schema = name.getSchemaName(); | ||
if (schema == null) missingEntities.add(CommandEntities.SCHEMA); | ||
checkEntities(missingEntities); | ||
|
||
if (!executeCommand()) { | ||
System.err.println(ErrorMessages.UNSUPPORTED_COMMAND); | ||
Main.exit(-1); | ||
} | ||
} | ||
|
||
/** | ||
* Executes the specific command based on the command type. | ||
* | ||
* @return true if the command is supported, false otherwise | ||
*/ | ||
private boolean executeCommand() { | ||
switch (command) { | ||
case CommandActions.DETAILS: | ||
handleDetailsCommand(); | ||
return true; | ||
|
||
case CommandActions.CREATE: | ||
handleCreateCommand(); | ||
return true; | ||
|
||
case CommandActions.DELETE: | ||
handleDeleteCommand(); | ||
return true; | ||
|
||
case CommandActions.SET: | ||
handleSetCommand(); | ||
return true; | ||
|
||
case CommandActions.REMOVE: | ||
handleRemoveCommand(); | ||
return true; | ||
|
||
case CommandActions.PROPERTIES: | ||
handlePropertiesCommand(); | ||
return true; | ||
|
||
default: | ||
return false; | ||
} | ||
} | ||
|
||
/** Handles the "LIST" command. */ | ||
private void handleListCommand() { | ||
gravitinoCommandLine.newListSchema(url, ignore, metalake, catalog).validate().handle(); | ||
} | ||
|
||
/** Handles the "DETAILS" command. */ | ||
private void handleDetailsCommand() { | ||
if (line.hasOption(GravitinoOptions.AUDIT)) { | ||
gravitinoCommandLine | ||
.newSchemaAudit(url, ignore, metalake, catalog, schema) | ||
.validate() | ||
.handle(); | ||
} else { | ||
gravitinoCommandLine | ||
.newSchemaDetails(url, ignore, metalake, catalog, schema) | ||
.validate() | ||
.handle(); | ||
} | ||
} | ||
|
||
/** Handles the "CREATE" command. */ | ||
private void handleCreateCommand() { | ||
String comment = line.getOptionValue(GravitinoOptions.COMMENT); | ||
gravitinoCommandLine | ||
.newCreateSchema(url, ignore, metalake, catalog, schema, comment) | ||
.validate() | ||
.handle(); | ||
} | ||
|
||
/** Handles the "DELETE" command. */ | ||
private void handleDeleteCommand() { | ||
boolean force = line.hasOption(GravitinoOptions.FORCE); | ||
gravitinoCommandLine | ||
.newDeleteSchema(url, ignore, force, metalake, catalog, schema) | ||
.validate() | ||
.handle(); | ||
} | ||
|
||
/** Handles the "SET" command. */ | ||
private void handleSetCommand() { | ||
String property = line.getOptionValue(GravitinoOptions.PROPERTY); | ||
String value = line.getOptionValue(GravitinoOptions.VALUE); | ||
gravitinoCommandLine | ||
.newSetSchemaProperty(url, ignore, metalake, catalog, schema, property, value) | ||
.validate() | ||
.handle(); | ||
} | ||
|
||
/** Handles the "REMOVE" command. */ | ||
private void handleRemoveCommand() { | ||
String property = line.getOptionValue(GravitinoOptions.PROPERTY); | ||
gravitinoCommandLine | ||
.newRemoveSchemaProperty(url, ignore, metalake, catalog, schema, property) | ||
.validate() | ||
.handle(); | ||
} | ||
|
||
/** Handles the "PROPERTIES" command. */ | ||
private void handlePropertiesCommand() { | ||
gravitinoCommandLine | ||
.newListSchemaProperties(url, ignore, metalake, catalog, schema) | ||
.validate() | ||
.handle(); | ||
} | ||
} |