mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 06:42:57 +00:00
180 lines
4.8 KiB
Rust
180 lines
4.8 KiB
Rust
// Copyright 2023 Greptime Team
|
|
//
|
|
// Licensed 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.
|
|
|
|
use clap::Parser;
|
|
use cli::Tool;
|
|
use common_telemetry::logging::{LoggingOptions, TracingOptions};
|
|
use plugins::SubCommand;
|
|
use snafu::ResultExt;
|
|
use tracing_appender::non_blocking::WorkerGuard;
|
|
|
|
use crate::options::GlobalOptions;
|
|
use crate::{error, App, Result};
|
|
pub const APP_NAME: &str = "greptime-cli";
|
|
use async_trait::async_trait;
|
|
|
|
pub struct Instance {
|
|
tool: Box<dyn Tool>,
|
|
|
|
// Keep the logging guard to prevent the worker from being dropped.
|
|
_guard: Vec<WorkerGuard>,
|
|
}
|
|
|
|
impl Instance {
|
|
pub fn new(tool: Box<dyn Tool>, guard: Vec<WorkerGuard>) -> Self {
|
|
Self {
|
|
tool,
|
|
_guard: guard,
|
|
}
|
|
}
|
|
|
|
pub async fn start(&mut self) -> Result<()> {
|
|
self.tool.do_work().await.context(error::StartCliSnafu)
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl App for Instance {
|
|
fn name(&self) -> &str {
|
|
APP_NAME
|
|
}
|
|
|
|
async fn start(&mut self) -> Result<()> {
|
|
self.start().await
|
|
}
|
|
|
|
fn wait_signal(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
async fn stop(&self) -> Result<()> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[derive(Parser)]
|
|
pub struct Command {
|
|
#[clap(subcommand)]
|
|
cmd: SubCommand,
|
|
}
|
|
|
|
impl Command {
|
|
pub async fn build(&self, opts: LoggingOptions) -> Result<Instance> {
|
|
let guard = common_telemetry::init_global_logging(
|
|
APP_NAME,
|
|
&opts,
|
|
&TracingOptions::default(),
|
|
None,
|
|
);
|
|
|
|
let tool = self.cmd.build().await.context(error::BuildCliSnafu)?;
|
|
let instance = Instance {
|
|
tool,
|
|
_guard: guard,
|
|
};
|
|
Ok(instance)
|
|
}
|
|
|
|
pub fn load_options(&self, global_options: &GlobalOptions) -> Result<LoggingOptions> {
|
|
let mut logging_opts = LoggingOptions::default();
|
|
|
|
if let Some(dir) = &global_options.log_dir {
|
|
logging_opts.dir.clone_from(dir);
|
|
}
|
|
|
|
logging_opts.level.clone_from(&global_options.log_level);
|
|
|
|
Ok(logging_opts)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use clap::Parser;
|
|
use client::{Client, Database};
|
|
use common_catalog::consts::{DEFAULT_CATALOG_NAME, DEFAULT_SCHEMA_NAME};
|
|
use common_telemetry::logging::LoggingOptions;
|
|
|
|
use crate::error::Result as CmdResult;
|
|
use crate::options::GlobalOptions;
|
|
use crate::{cli, standalone, App};
|
|
|
|
#[tokio::test(flavor = "multi_thread")]
|
|
async fn test_export_create_table_with_quoted_names() -> CmdResult<()> {
|
|
let output_dir = tempfile::tempdir().unwrap();
|
|
|
|
let standalone = standalone::Command::parse_from([
|
|
"standalone",
|
|
"start",
|
|
"--data-home",
|
|
&*output_dir.path().to_string_lossy(),
|
|
]);
|
|
|
|
let standalone_opts = standalone.load_options(&GlobalOptions::default()).unwrap();
|
|
let mut instance = standalone.build(standalone_opts).await?;
|
|
instance.start().await?;
|
|
|
|
let client = Client::with_urls(["127.0.0.1:4001"]);
|
|
let database = Database::new(DEFAULT_CATALOG_NAME, DEFAULT_SCHEMA_NAME, client);
|
|
database
|
|
.sql(r#"CREATE DATABASE "cli.export.create_table";"#)
|
|
.await
|
|
.unwrap();
|
|
database
|
|
.sql(
|
|
r#"CREATE TABLE "cli.export.create_table"."a.b.c"(
|
|
ts TIMESTAMP,
|
|
TIME INDEX (ts)
|
|
) engine=mito;
|
|
"#,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
let output_dir = tempfile::tempdir().unwrap();
|
|
let cli = cli::Command::parse_from([
|
|
"cli",
|
|
"export",
|
|
"--addr",
|
|
"127.0.0.1:4000",
|
|
"--output-dir",
|
|
&*output_dir.path().to_string_lossy(),
|
|
"--target",
|
|
"schema",
|
|
]);
|
|
let mut cli_app = cli.build(LoggingOptions::default()).await?;
|
|
cli_app.start().await?;
|
|
|
|
instance.stop().await?;
|
|
|
|
let output_file = output_dir
|
|
.path()
|
|
.join("greptime")
|
|
.join("cli.export.create_table")
|
|
.join("create_tables.sql");
|
|
let res = std::fs::read_to_string(output_file).unwrap();
|
|
let expect = r#"CREATE TABLE IF NOT EXISTS "a.b.c" (
|
|
"ts" TIMESTAMP(3) NOT NULL,
|
|
TIME INDEX ("ts")
|
|
)
|
|
|
|
ENGINE=mito
|
|
;
|
|
"#;
|
|
assert_eq!(res.trim(), expect.trim());
|
|
|
|
Ok(())
|
|
}
|
|
}
|