ncbi_host_info.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_host_info.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:36:58  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: ncbi_host_info.c,v 1000.0 2003/10/29 16:36:58 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anton Lavrentiev
  35.  *
  36.  * File Description:
  37.  *   NCBI host info constructor and getters
  38.  *
  39.  */
  40. #include "ncbi_lbsmd.h"
  41. #include <math.h>
  42. #include <stdlib.h>
  43. #include <string.h>
  44. #ifndef M_PI
  45. /* Not defined on MacOS.9 :-( */
  46. #  define M_PI 3.14159265358979323846
  47. #endif
  48. typedef struct SHostInfoTag {
  49.     const char* env;
  50.     double      pad;    /* for proper 'hinfo' alignment; also as a magic */
  51.     char        hinfo[1];
  52. } SHOST_Info;
  53. HOST_INFO HINFO_Create(const void* hinfo, size_t hinfo_size, const char* env)
  54. {
  55.     SHOST_Info* host_info;
  56.     size_t      size;
  57.     if (!hinfo)
  58.         return 0;
  59.     if (env && !*env)
  60.         env = 0;
  61.     size = sizeof(*host_info) + hinfo_size;
  62.     if (!(host_info = (SHOST_Info*) malloc(size + (env ? strlen(env) : 0))))
  63.         return 0;
  64.     host_info->env = env ? strcpy((char*) host_info + size - 1, env) : 0;
  65.     host_info->pad = M_PI;
  66.     memcpy(host_info->hinfo, hinfo, hinfo_size);
  67.     return host_info;
  68. }
  69. int HINFO_CpuCount(HOST_INFO host_info)
  70. {
  71.     if (!host_info || host_info->pad != M_PI)
  72.         return -1;
  73.     return LBSM_HINFO_CpuCount(host_info->hinfo);
  74. }
  75. int HINFO_TaskCount(HOST_INFO host_info)
  76. {
  77.     if (!host_info || host_info->pad != M_PI)
  78.         return -1;
  79.     return LBSM_HINFO_TaskCount(host_info->hinfo);
  80. }
  81. int/*bool*/ HINFO_LoadAverage(HOST_INFO host_info, double lavg[2])
  82. {
  83.     if (!host_info || host_info->pad != M_PI)
  84.         return 0;
  85.     return LBSM_HINFO_LoadAverage(host_info->hinfo, lavg);
  86. }
  87. int/*bool*/ HINFO_Status(HOST_INFO host_info, double status[2])
  88. {
  89.     if (!host_info || host_info->pad != M_PI)
  90.         return 0;
  91.     return LBSM_HINFO_Status(host_info->hinfo, status);
  92. }
  93. int/*bool*/ HINFO_BLASTParams(HOST_INFO host_info, unsigned int blast[8])
  94. {
  95.     if (!host_info || host_info->pad != M_PI)
  96.         return 0;
  97.     return LBSM_HINFO_BLASTParams(host_info->hinfo, blast);
  98. }
  99. const char* HINFO_Environment(HOST_INFO host_info)
  100. {
  101.     if (!host_info || host_info->pad != M_PI)
  102.         return 0;
  103.     return host_info->env;
  104. }
  105. /*
  106.  * --------------------------------------------------------------------------
  107.  * $Log: ncbi_host_info.c,v $
  108.  * Revision 1000.0  2003/10/29 16:36:58  gouriano
  109.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.6
  110.  *
  111.  * Revision 6.6  2003/01/17 19:44:46  lavr
  112.  * Reduce dependencies
  113.  *
  114.  * Revision 6.5  2002/10/29 22:19:07  lavr
  115.  * Fix typo in the file description
  116.  *
  117.  * Revision 6.4  2002/10/29 00:31:08  lavr
  118.  * Fixed hinfo overflow from the use of precalculated size
  119.  *
  120.  * Revision 6.3  2002/10/28 21:55:38  lavr
  121.  * LBSM_HINFO introduced for readability to replace plain "const void*"
  122.  *
  123.  * Revision 6.2  2002/10/28 20:49:04  lavr
  124.  * Conditionally define M_PI if it is not already defined by <math.h>
  125.  *
  126.  * Revision 6.1  2002/10/28 20:13:45  lavr
  127.  * Initial revision
  128.  *
  129.  * ==========================================================================
  130.  */