メインコンテンツへスキップ
メインコンテンツへスキップ

C および C++ 向け chDB

chDB は、ClickHouse の機能をアプリケーションに直接組み込むためのネイティブ C/C++ API を提供します。この API は、簡単なクエリから、永続的な接続やクエリ結果のストリーミングなどの高度な機能までサポートします。

インストール

ステップ 1: libchdb をインストール

お使いのシステムに chDB ライブラリをインストールします。

curl -sL https://lib.chdb.io | bash

ステップ 2: ヘッダーをインクルードする

プロジェクトに chDB のヘッダーファイルをインクルードします:

#include <chdb.h>

chDB ライブラリを用いてアプリケーションをコンパイルおよびリンクします:

# Cコンパイル \{#c-compilation}
gcc -o myapp myapp.c -lchdb

C++のコンパイル

g++ -o myapp myapp.cpp -lchdb

C の例

基本的な接続とクエリ

#include <stdio.h>
#include <chdb.h>

int main() {
    // 接続引数を作成
    char* args[] = {"chdb", "--path", "/tmp/chdb-data"};
    int argc = 3;
    
    // chDBに接続
    chdb_connection* conn = chdb_connect(argc, args);
    if (!conn) {
        printf("chDBへの接続に失敗しました\n");
        return 1;
    }
    
    // クエリを実行
    chdb_result* result = chdb_query(*conn, "SELECT version()", "CSV");
    if (!result) {
        printf("クエリの実行に失敗しました\n");
        chdb_close_conn(conn);
        return 1;
    }
    
    // エラーを確認
    const char* error = chdb_result_error(result);
    if (error) {
        printf("クエリエラー: %s\n", error);
    } else {
        // 結果データを取得
        char* data = chdb_result_buffer(result);
        size_t length = chdb_result_length(result);
        double elapsed = chdb_result_elapsed(result);
        uint64_t rows = chdb_result_rows_read(result);
        
        printf("結果: %.*s\n", (int)length, data);
        printf("経過時間: %.3f秒\n", elapsed);
        printf("行数: %llu\n", rows);
    }
    
    // クリーンアップ
    chdb_destroy_query_result(result);
    chdb_close_conn(conn);
    return 0;
}

ストリーミングクエリ

#include <stdio.h>
#include <chdb.h>

int main() {
    char* args[] = {"chdb", "--path", "/tmp/chdb-stream"};
    chdb_connection* conn = chdb_connect(3, args);
    
    if (!conn) {
        printf("接続に失敗しました\n");
        return 1;
    }
    
    // ストリーミングクエリを開始
    chdb_result* stream_result = chdb_stream_query(*conn, 
        "SELECT number FROM system.numbers LIMIT 1000000", "CSV");
    
    if (!stream_result) {
        printf("ストリーミングクエリの開始に失敗しました\n");
        chdb_close_conn(conn);
        return 1;
    }
    
    uint64_t total_rows = 0;
    
    // チャンクを処理
    while (true) {
        chdb_result* chunk = chdb_stream_fetch_result(*conn, stream_result);
        if (!chunk) break;
        
        // このチャンクにデータが存在するか確認
        size_t chunk_length = chdb_result_length(chunk);
        if (chunk_length == 0) {
            chdb_destroy_query_result(chunk);
            break; // ストリームの終了
        }
        
        uint64_t chunk_rows = chdb_result_rows_read(chunk);
        total_rows += chunk_rows;
        
        printf("チャンク処理完了: %llu 行、%zu バイト\n", chunk_rows, chunk_length);
        
        // ここでチャンクデータを処理
        // char* data = chdb_result_buffer(chunk);
        
        chdb_destroy_query_result(chunk);
        
        // 進捗状況の報告
        if (total_rows % 100000 == 0) {
            printf("進捗状況: %llu 行処理済み\n", total_rows);
        }
    }
    
    printf("ストリーミング完了。合計行数: %llu\n", total_rows);
    
    // ストリーミングクエリのクリーンアップ
    chdb_destroy_query_result(stream_result);
    chdb_close_conn(conn);
    return 0;
}

さまざまなデータ形式を扱う

#include <stdio.h>
#include <chdb.h>

int main() {
    char* args[] = {"chdb"};
    chdb_connection* conn = chdb_connect(1, args);
    
    const char* query = "SELECT number, toString(number) as str FROM system.numbers LIMIT 3";
    
    // CSV形式
    chdb_result* csv_result = chdb_query(*conn, query, "CSV");
    printf("CSV結果:\n%.*s\n\n", 
           (int)chdb_result_length(csv_result), 
           chdb_result_buffer(csv_result));
    chdb_destroy_query_result(csv_result);
    
    // JSON形式
    chdb_result* json_result = chdb_query(*conn, query, "JSON");
    printf("JSON結果:\n%.*s\n\n", 
           (int)chdb_result_length(json_result), 
           chdb_result_buffer(json_result));
    chdb_destroy_query_result(json_result);

// 整形表示 chdb_result* pretty_result = chdb_query(*conn, query, "Pretty"); printf("Pretty Result:\n%.*s\n\n", (int)chdb_result_length(pretty_result), chdb_result_buffer(pretty_result)); chdb_destroy_query_result(pretty_result);

chdb_close_conn(conn); return 0; }

C++ の例

#include <iostream>
#include <string>
#include <vector>
#include <chdb.h>

class ChDBConnection {
private:
    chdb_connection* conn;
    
public:
    ChDBConnection(const std::vector<std::string>& args) {
        // 文字列ベクトルをchar*配列に変換
        std::vector<char*> argv;
        for (const auto& arg : args) {
            argv.push_back(const_cast<char*>(arg.c_str()));
        }
        
        conn = chdb_connect(argv.size(), argv.data());
        if (!conn) {
            throw std::runtime_error("chDBへの接続に失敗しました");
        }
    }
    
    ~ChDBConnection() {
        if (conn) {
            chdb_close_conn(conn);
        }
    }
    
    std::string query(const std::string& sql, const std::string& format = "CSV") {
        chdb_result* result = chdb_query(*conn, sql.c_str(), format.c_str());
        if (!result) {
            throw std::runtime_error("クエリの実行に失敗しました");
        }
        
        const char* error = chdb_result_error(result);
        if (error) {
            std::string error_msg(error);
            chdb_destroy_query_result(result);
            throw std::runtime_error("クエリエラー: " + error_msg);
        }
        
        std::string data(chdb_result_buffer(result), chdb_result_length(result));
        
        // クエリ統計情報を取得
        std::cout << "クエリ統計情報:\n";
        std::cout << "  経過時間: " << chdb_result_elapsed(result) << " 秒\n";
        std::cout << "  読み取り行数: " << chdb_result_rows_read(result) << "\n";
        std::cout << "  読み取りバイト数: " << chdb_result_bytes_read(result) << "\n";
        
        chdb_destroy_query_result(result);
        return data;
    }
};

int main() {
    try {
        // 接続を作成
        ChDBConnection db({{"chdb", "--path", "/tmp/chdb-cpp"}});
        
        // テーブルを作成してデータを投入
        db.query("CREATE TABLE test (id UInt32, value String) ENGINE = MergeTree() ORDER BY id");
        db.query("INSERT INTO test VALUES (1, 'hello'), (2, 'world'), (3, 'chdb')");
        
        // 異なる形式でクエリを実行
        std::cout << "CSV結果:\n" << db.query("SELECT * FROM test", "CSV") << "\n";
        std::cout << "JSON結果:\n" << db.query("SELECT * FROM test", "JSON") << "\n";
        
        // 集計クエリ
        std::cout << "件数: " << db.query("SELECT COUNT(*) FROM test") << "\n";
        
    } catch (const std::exception& e) {
        std::cerr << "エラー: " << e.what() << std::endl;
        return 1;
    }
    
    return 0;
}

エラー処理のベストプラクティス

#include <stdio.h>
#include <chdb.h>

int safe_query_example() {
    chdb_connection* conn = NULL;
    chdb_result* result = NULL;
    int return_code = 0;
    
    // 接続を作成
    char* args[] = {"chdb"};
    conn = chdb_connect(1, args);
    if (!conn) {
        printf("接続の作成に失敗しました\n");
        return 1;
    }
    
    // クエリを実行
    result = chdb_query(*conn, "SELECT invalid_syntax", "CSV");
    if (!result) {
        printf("クエリの実行に失敗しました\n");
        return_code = 1;
        goto cleanup;
    }
    
    // クエリエラーを確認
    const char* error = chdb_result_error(result);
    if (error) {
        printf("クエリエラー: %s\n", error);
        return_code = 1;
        goto cleanup;
    }
    
    // 成功した結果を処理
    printf("結果: %.*s\n", 
           (int)chdb_result_length(result), 
           chdb_result_buffer(result));
    
cleanup:
    if (result) chdb_destroy_query_result(result);
    if (conn) chdb_close_conn(conn);
    return return_code;
}

GitHub リポジトリ