/** * @file ncd-request.c * @author Ambroz Bizjak * * @section LICENSE * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the author nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include #include static void request_handler_finished (void *user, int is_error); static void request_handler_reply (void *user, NCDValue reply_data); static int write_all (int fd, const uint8_t *data, size_t len); BReactor reactor; NCDRequest request; int main (int argc, char *argv[]) { int res = 1; if (argc != 3) { fprintf(stderr, "Usage: %s \n", (argc > 0 ? argv[0] : "")); goto fail0; } char *socket_path = argv[1]; char *request_payload_string = argv[2]; BLog_InitStderr(); BTime_Init(); if (!BNetwork_GlobalInit()) { BLog(BLOG_ERROR, "BNetwork_Init failed"); goto fail1; } if (!BReactor_Init(&reactor)) { BLog(BLOG_ERROR, "BReactor_Init failed"); goto fail1; } NCDValue request_payload; if (!NCDValueParser_Parse(request_payload_string, strlen(request_payload_string), &request_payload)) { BLog(BLOG_ERROR, "BReactor_Init failed"); goto fail2; } if (!NCDRequest_Init(&request, socket_path, &request_payload, &reactor, NULL, request_handler_finished, request_handler_reply)) { BLog(BLOG_ERROR, "NCDRequest_Init failed"); NCDValue_Free(&request_payload); goto fail2; } NCDValue_Free(&request_payload); res = BReactor_Exec(&reactor); NCDRequest_Free(&request); fail2: BReactor_Free(&reactor); fail1: BLog_Free(); fail0: DebugObjectGlobal_Finish(); return res; } static void request_handler_finished (void *user, int is_error) { if (is_error) { BLog(BLOG_ERROR, "error"); BReactor_Quit(&reactor, 1); return; } BReactor_Quit(&reactor, 0); } static void request_handler_reply (void *user, NCDValue reply_data) { char *str = NCDValueGenerator_Generate(&reply_data); if (!str) { BLog(BLOG_ERROR, "NCDValueGenerator_Generate failed"); goto fail0; } if (!write_all(1, str, strlen(str))) { goto fail1; } if (!write_all(1, "\n", 1)) { goto fail1; } NCDRequest_Next(&request); free(str); NCDValue_Free(&reply_data); return; fail1: free(str); fail0: NCDValue_Free(&reply_data); BReactor_Quit(&reactor, 1); } static int write_all (int fd, const uint8_t *data, size_t len) { while (len > 0) { ssize_t res = write(fd, data, len); if (res <= 0) { BLog(BLOG_ERROR, "write failed"); return 0; } data += res; len -= res; } return 1; }