ks_sys.c 文件分析

        ks_sys.c  用来创建配置文件,主要配置:[HOST]  [ IP] [ DHCP]  [HCLONE] [PPPOE]  [SWITCH]...... 

        把这个文件反复看了几遍,因为要用到里面的几个文件操作函数,试着分析了一下,能力有限,错误难免.

      static char *fconfig  = "/tmp/sysconfig";                         /*  file name   */

       char glvalue[256];                                                            /*  globe var    */

/*

 *    计算行的字符数

 */

static int fgetline(FILE * fwd, char * linebuf)
{
  int data;
  int i;

  i = 0;
  while (((data = fgetc(fwd)) != EOF) && (data != '/n')) { //  读取文件数据判断有效并不是回车
    *(linebuf+i) = data;                /*  给指针赋值.并指向下一个地址. */
    i++;
  }
  *(linebuf+i) = '/0';                     /*  最后补上/0,字符串.          */
  if (data == EOF)                      /*  无值.                                   */
    return EOF;
  return i;                                    /*  得到的行字符数返回.       */
}

/*  this is the entry point for shell program sysconfig  */
int sysconfig(int argc, char argv[3][200], char *supBuf)

/* index the number of item to be skipped, starting from 1 */

static int print_config(FILE *handle, char *category, char* item, int index )
{
 int i, result;

 if ( 0 == (result= find_category(handle, category)))   // 找寻目录[  ]
 {
  /*skip first index items*/
  for ( i=1; i<index; i++)
  {
     result = find_item(handle, item);               // 找寻[ ] 中的一行值.
     if ( 0 != result )
      return (result);
  }
  /*get to the target item */
  if ( 0 == (result = find_item(handle, item)))
                     print_item_value(handle);        // 输出到配置文件
 }
 return (result);
}

/*  文件位置 */

static long find_postion(FILE *handle, char *item, int flag)
{
   int   index;
   long  position;
   char  tmp[3], temp[128], fg;
  
   if ( flag == 0 )
    fg = '/n';   /*by whole item string match*/
   else
    fg = '=';    /*by item number in the list first one is 1 */

   do
   {
     index = 0;
  position = ftell(handle);                // 得到文件位置值.
     do
  {
     if ( 0 != fread(tmp, sizeof(char), 1, handle) )   // 读文件最开始的一个值.
  {
        temp[index++] = tmp[0];  // 读到的第一个值存入temp[]数组中.
     if ( tmp[0] == '[')                    // 最开始值为'['
      return -1L;
  }
     else
     return (-1L);
  }while ( tmp[0] != fg );           // fg 为上面得到的值,由flag参数习决定.
     
  if ( fg == '=')
     temp[index] = '/0';
  else
        temp[index-1] = '/0';
#ifndef WINDOWS
  if (!strcasecmp (item, temp))
#else
     if (!stricmp(item, temp))
#endif
  {
      if ( 0 == fseek(handle, position, SEEK_SET))
     return (position);
   else
     return (-1L);
  }
  else
  {
    if ( fg == '=')
    {
    do
    {
      if ( 0 == fread(tmp, sizeof(char), 1, handle))
       return (-1L);
    }while (tmp[0] != '/n');
    }
    position = ftell(handle);
  }
   } while (tmp[0] != '[');
   return (-1L);
}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


 

`make` 命令报错 "make[1]: *** [Makefile:1516: ks_tables.h] Error 136" 通常表示在构建过程中出现了错误。错误代码 136 可能是由于编译器或其他构建工具发生了问题导致的。 以下是一些可能的解决方法: 1. 检查错误信息:在这种情况下,错误信息指向了 Makefile 中的第 1516 行以及 ks_tables.h 文件。检查这些文件,并根据错误信息尝试找出问题所在。可能是文件缺失、语法错误或其他问题。 2. 清理并重新编译:尝试清理构建环境并重新编译。运行 `make clean` 命令清理之前生成的对象文件和目标文件,然后再运行 `make` 命令重新编译。 3. 检查依赖项:确保你的系统中已经安装了所有必需的依赖项。这些依赖项可能包括开发工具链、库文件等。检查 Makefile 或项目文档中的依赖项列表,并确保你的系统满足这些要求。 4. 更新工具链和库:如果你的编译工具链或库版本过旧,可能会导致构建过程中出现问题。尝试更新你的工具链和库到最新版本,并重新尝试编译。 5. 查找相关文档或社区支持:如果以上步骤无法解决问题,建议查阅相关文档或寻求社区支持。在开发者论坛、邮件列表或社区平台上,你可能会找到其他人遇到类似问题的解决方法或建议。 请注意,错误原因和解决方法可能因具体情况而异。如果问题仍然存在,提供更多的错误信息和上下文可能有助于更精确地定位问题所在。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值