Add an option under a specific section using UCI's C API

寵の児 提交于 2019-12-12 04:22:55

问题


How can I add a NEW option under a specific section in an UCI config file? I would like to achieve that programmatically using the C API. Can someone put an example here ?


回答1:


#include <uci.h>
#include <stdio.h>

int main() {
    uci_context* ctx = uci_alloc_context();

    if (!ctx) {
        printf("failed to alloc uci ctx\n");
        return 1;
    }

    uci_ptr config;
    char section_name[] = "your_package.your_section";

    if (uci_lookup_ptr(ctx, &config, section_name, true) != UCI_OK || !config.s) {
        printf("failed to find the specified section\n");
        return 1;
    }

    config.option = "new_option_name";
    config.value = "new_option_value";

    if (uci_set(ctx, &config) != UCI_OK) {
        printf("failed to set new option\n");
        return 1;
    }

    if (uci_commit(ctx, &config.p, false) != UCI_OK) {
        printf("failed to commit changes\n");
        return 1;
    }

    return 0;
}


来源:https://stackoverflow.com/questions/42996903/add-an-option-under-a-specific-section-using-ucis-c-api

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!