/*
 *  Copyright 2014 Frank Hunleth
 *
 * 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.
 *
 * Common Erlang->C port communications code
 */

#include "erlcmd.h"

#include <err.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

/**
 * Initialize an Erlang command handler.
 *
 * @param handler the structure to initialize
 * @param request_handler callback for each message received
 * @param cookie optional data to pass back to the handler
 */
void erlcmd_init(struct erlcmd *handler,
                 void (*request_handler)(const char *req, void *cookie),
                 void *cookie)
{
    memset(handler, 0, sizeof(*handler));

    handler->request_handler = request_handler;
    handler->cookie = cookie;
}

/**
 * @brief Synchronously send a response back to Erlang
 *
 * @param response what to send back
 */
void erlcmd_send(char *response, size_t len)
{
    uint16_t be_len = htons(len - sizeof(uint16_t));
    memcpy(response, &be_len, sizeof(be_len));

    size_t wrote = 0;
    do {
        ssize_t amount_written = write(STDOUT_FILENO, response + wrote, len - wrote);
        if (amount_written < 0) {
            if (errno == EINTR)
                continue;

            err(EXIT_FAILURE, "write");
        }

        wrote += amount_written;
    } while (wrote < len);
}

/**
 * @brief Dispatch commands in the buffer
 * @return the number of bytes processed
 */
static size_t erlcmd_try_dispatch(struct erlcmd *handler)
{
    /* Check for length field */
    if (handler->index < sizeof(uint16_t))
        return 0;

    uint16_t be_len;
    memcpy(&be_len, handler->buffer, sizeof(uint16_t));
    size_t msglen = ntohs(be_len);
    if (msglen + sizeof(uint16_t) > sizeof(handler->buffer))
        errx(EXIT_FAILURE, "Message too long");

    /* Check whether we've received the entire message */
    if (msglen + sizeof(uint16_t) > handler->index)
        return 0;

    handler->request_handler(handler->buffer, handler->cookie);

    return msglen + sizeof(uint16_t);
}

/**
 * @brief call to process any new requests from Erlang
 */
void erlcmd_process(struct erlcmd *handler)
{
    ssize_t amount_read = read(STDIN_FILENO, handler->buffer + handler->index, sizeof(handler->buffer) - handler->index);
    if (amount_read < 0) {
        /* EINTR is ok to get, since we were interrupted by a signal. */
        if (errno == EINTR)
            return;

        /* Everything else is unexpected. */
        err(EXIT_FAILURE, "read");
    } else if (amount_read == 0) {
        /* EOF. Erlang process was terminated. This happens after a release or if there was an error. */
        exit(EXIT_SUCCESS);
    }

    handler->index += amount_read;
    for (;;) {
        size_t bytes_processed = erlcmd_try_dispatch(handler);

        if (bytes_processed == 0) {
            /* Only have part of the command to process. */
            break;
        } else if (handler->index > bytes_processed) {
            /* Processed the command and there's more data. */
            memmove(handler->buffer, &handler->buffer[bytes_processed], handler->index - bytes_processed);
            handler->index -= bytes_processed;
        } else {
            /* Processed the whole buffer. */
            handler->index = 0;
            break;
        }
    }
}

/**
 * @brief Decode a string from Erlang that was either encoded as a list of characters (Erlang)
 *        or as a binary (Elixir). This function also checks the length of the string.
 * @param buf the request
 * @param index the index into the request
 * @param dest where to store the response
 * @param maxlength the length of the destination
 * @return -1 on error; 0 on success
 */
int erlcmd_decode_string(const char *buf, int *index, char *dest, int maxlength)
{
    int type;
    int size;
    if (ei_get_type(buf, index, &type, &size) < 0)
        return -1;

    if (type == ERL_STRING_EXT) {
        if (size + 1 > maxlength)
            return -1;

        return ei_decode_string(buf, index, dest);
    } else if (type == ERL_BINARY_EXT) {
        if (size + 1 > maxlength)
            return -1;

        dest[size] = '\0';
        long unused;
        return ei_decode_binary(buf, index, dest, &unused);
    } else
        return -1;
}

/**
 * @brief Helper for decoding atoms that checks the length of the atom
 * @param buf the request
 * @param index the index into the request
 * @param dest where to store the response
 * @param maxlength the length of the destination
 * @return -1 on error; 0 on success
 */
int erlcmd_decode_atom(const char *buf, int *index, char *dest, int maxlength)
{
    int type;
    int size;
    if (ei_get_type(buf, index, &type, &size) < 0 ||
            type != ERL_ATOM_EXT ||
            size + 1 > maxlength)
        return -1;

    return ei_decode_atom(buf, index, dest);
}

/**
 * @brief Encode the atom "ok" for the common success response.
 * @param buf where to store the atom
 * @param index the index into buf
 * @return 0 on success; -1 on error
 */
int erlcmd_encode_ok(char *buf, int *index)
{
    return ei_encode_atom(buf, index, "ok");
}

/**
 * @brief Encode {error, <error_atom>} for the common error response
 * @param buf where to store the atom
 * @param index the index into buf
 * @param error_atom the atom's name
 * @return 0 on success; -1 on error
 */
int erlcmd_encode_error_tuple(char *buf, int *index, const char *error_atom)
{
    if (ei_encode_tuple_header(buf, index, 2) == 0 &&
        ei_encode_atom(buf, index, "error") == 0 &&
        ei_encode_atom(buf, index, error_atom) == 0)
        return 0;
    else
        return -1;
}

/**
 * @brief Encode {error, reason} where reason is based off an errno value
 * @param buf where to store the atom
 * @param index the index into buf
 * @param err the value of errno
 * @return 0 on success; -1 on error
 */
int erlcmd_encode_errno_error(char *buf, int *index, int err)
{
    const char *reason;
    switch (err) {
    case 0:       reason = "ok"; break;
    case EPERM:   reason = "eperm"; break;
    case ENOENT:  reason = "enoent"; break;
    case ESRCH:   reason = "esrch"; break;
    case EINTR:   reason = "eintr"; break;
    case EIO:     reason = "eio"; break;
    case ENXIO:   reason = "enxio"; break;
    case E2BIG:   reason = "e2big"; break;
    case ENOEXEC: reason = "enoexec"; break;
    case EBADF:   reason = "ebadf"; break;
    case ECHILD:  reason = "echild"; break;
    case EAGAIN:  reason = "eagain"; break;
    case ENOMEM:  reason = "enomem"; break;
    case EACCES:  reason = "eacces"; break;
    case EFAULT:  reason = "efault"; break;
    case ENOTBLK: reason = "enotblk"; break;
    case EBUSY:   reason = "ebusy"; break;
    case EEXIST:  reason = "eexist"; break;
    case EXDEV:   reason = "exdev"; break;
    case ENODEV:  reason = "enodev"; break;
    case ENOTDIR: reason = "enotdir"; break;
    case EISDIR:  reason = "eisdir"; break;
    case EINVAL:  reason = "einval"; break;
    case ENFILE:  reason = "enfile"; break;
    case EMFILE:  reason = "emfile"; break;
    case ENOTTY:  reason = "enotty"; break;
    case ETXTBSY: reason = "etxtbsy"; break;
    case EFBIG:   reason = "efbig"; break;
    case ENOSPC:  reason = "enospc"; break;
    case ESPIPE:  reason = "espipe"; break;
    case EROFS:   reason = "erofs"; break;
    case EMLINK:  reason = "emlink"; break;
    case EPIPE:   reason = "epipe"; break;
    default:      reason = "unknown"; break;
    }
    return erlcmd_encode_error_tuple(buf, index, reason);
}

