Skip to content
config_set.c 4.55 KiB
Newer Older
f4grx's avatar
f4grx committed
/****************************************************************************
 * hn70ap/apps/config/config_set.c
 *
 *   Copyright (C) 2018 Sebastien Lorquet. All rights reserved.
 *   Author: Sebastien Lorquet <sebastien@lorquet.fr>
 *
 * 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 NuttX 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
 * COPYRIGHT OWNER OR CONTRIBUTORS 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.
 *
 ****************************************************************************/

/****************************************************************************
 * Included Files
 ****************************************************************************/

#include <nuttx/config.h>
#include <stdio.h>
#include <stdlib.h>
f4grx's avatar
f4grx committed
#include <string.h>
f4grx's avatar
f4grx committed

f4grx's avatar
f4grx committed
#include <arpa/inet.h>

f4grx's avatar
f4grx committed
#include <hn70ap/eeprom.h>

#include "config_internal.h"

/****************************************************************************
 * Public Functions
 ****************************************************************************/

f4grx's avatar
f4grx committed
int config_set(char *key, char *value)
f4grx's avatar
f4grx committed
{
f4grx's avatar
f4grx committed
  char name[16];
  uint32_t type;
  int ret;
  int index;
f4grx's avatar
f4grx committed

 /* Get config entry */
  index = hn70ap_eeconfig_find(key);
  if(index<0)
    {
      fprintf(stderr, "Config entry '%s' not found\n", key);
      return ERROR;
    }

  ret = hn70ap_eeconfig_describe(index, name, sizeof(name), &type);
f4grx's avatar
f4grx committed

  if(ret != OK)
    {
      fprintf(stderr, "Config entry '%s' not usable\n", key);
f4grx's avatar
f4grx committed
      return ERROR;
    }

  if(type == EECONFIG_TYPE_BOOL)
    {
      bool val;
      printf("Entry type is bool\n");
      if(!strcmp(value, "true") ||
         !strcmp(value, "True") ||
         !strcmp(value, "TRUE") ||
         !strcmp(value, "yes") ||
         !strcmp(value, "Yes") ||
         !strcmp(value, "YES") ||
         !strcmp(value, "y") ||
         !strcmp(value, "Y") ||
         !strcmp(value, "1")
      )
        {
        val = true;
        }
f4grx's avatar
f4grx committed
      else if(!strcmp(value, "false") ||
f4grx's avatar
f4grx committed
         !strcmp(value, "False") ||
         !strcmp(value, "FALSE") ||
         !strcmp(value, "no") ||
         !strcmp(value, "No") ||
         !strcmp(value, "NO") ||
         !strcmp(value, "n") ||
         !strcmp(value, "N") ||
         !strcmp(value, "0")
      )
        {
        val = false;
        }
      else
        {
f4grx's avatar
f4grx committed
          printf("Unrecognized boolean value: %s\n",value);
f4grx's avatar
f4grx committed
          return ERROR;
        }
      ret = hn70ap_eeconfig_setbool(name, val);
    }
  else if(type == EECONFIG_TYPE_IP)
    {
      in_addr_t val;
      printf("Entry type is IPv4\n");
f4grx's avatar
f4grx committed
      ret = inet_pton(AF_INET, value, &val);
      if(ret != 1)
        {
          printf("Invalid IPv4 address: %s\n", value);
          return ERROR;
        }
f4grx's avatar
f4grx committed
      ret = hn70ap_eeconfig_setip(name, val);
    }
  else if(type == EECONFIG_TYPE_CALL)
    {
      printf("Entry type is call\n");
      ret = hn70ap_eeconfig_setcall(name, value);
f4grx's avatar
f4grx committed
    }
  else if(type == EECONFIG_TYPE_BYTE)
    {
      unsigned long int val;
f4grx's avatar
f4grx committed
      printf("Entry type is byte\n");
      val = strtoul(value,NULL,0);
      if(val > 0xFF)
        {
          printf("Invalid byte: %s\n", value);
          return ERROR;
        }
      else
        {
          ret = hn70ap_eeconfig_setbyte(name, val);
        }
f4grx's avatar
f4grx committed
    }
  else
    {
f4grx's avatar
f4grx committed
      fprintf(stderr, "Unknown entry type!\n");
f4grx's avatar
f4grx committed
      return ERROR;
    }

  return ret;