Abyss-lord commented on PR #6327:
URL: https://github.com/apache/gravitino/pull/6327#issuecomment-2603887095

   > Hi @Abyss-lord, thanks for the PR, while I feel this change is a little 
bit heavy, which may make the CLI code harder to maintain. Regarding the 
feature, would you add more information in the issue description, so that we 
can understand the scenario? Thank you!
   
   @shaofengshi As the CLI continues to evolve, we face growing challenges with 
code maintainability. There are two main issues we need to address:
   
   1. Parameter Management Challenge:Currently, commands require numerous 
individual arguments. Adding a new option requires modifications across all 
commands.This approach doesn't scale well as we add more functionality
   2. Inconsistent Output Handling:Output methods are fragmented between 
`System.out/err` and `OutputFormat#output` and Lack of standardized output 
handling makes the interface inconsistent
   
   To address these issues, I propose the following solutions:
   For the first question, I propose grouping related options into logical 
parameter clusters according to action not entity. This approach will improve 
code organization and maintainability. The proposed structure is illustrated in 
the following class diagram...
   
   
![image](https://github.com/user-attachments/assets/7003738e-1655-4f04-b946-6005cfb8be84)
   
   When the refactoring is complete the command just needs to pass the 
**configuration** + **FullName**,  e.g.
   `newDeleteTable(url, ignore, force, metalake, catalog, schema, table)`  -> 
`newDeleteTable(DeleteConfig config, FullName fullname)`
   
   For the second problem, I've redesigned the OutputFormat interface to 
improve extensibility. I refactor the `OutputFormat` to increase its 
extensibility, but also leave room for extension, such as `sorting`, `limit` 
and other functions.
   
   
![image](https://github.com/user-attachments/assets/1cef7d9f-4fd9-4f57-9bae-6d8835d25279)
   
   Now all of the CLI's information can be displayed using a single output 
method.
   
![image](https://github.com/user-attachments/assets/2e4b42cc-728d-41cb-b241-6c7435cf58c3)
   
   Although this is a lot of code changes, IMHO I think it will be a big 
benefit for future client development.
   
   design doc: 
https://docs.google.com/document/d/1JU20XPHBMb-boOhdNmeZC9acyYupuj7EvQKfc1JaJBo/edit?usp=sharing
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to