NdbEnv.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "NdbEnv.h"
  14. #include <string.h>
  15. #include <stdlib.h>
  16. const char* NdbEnv_GetEnv(const char* name, char * buf, int buflen)
  17. {
  18.   /**
  19.    * All environment variables are associated with a process
  20.    * it's important to read env from the correct process
  21.    * for now read from own process, own block and last the "ose_shell" process.
  22.    *
  23.    * TODO! What process should this be read from in the future?
  24.    *
  25.    */
  26.   PROCESS proc_;
  27.   char* p = NULL;
  28.   /* Look in own process */
  29.   p = get_env(current_process(), (char*)name);
  30.   if (p == NULL){
  31.     /* Look in block process */
  32.     p = get_env(get_bid(current_process()), (char*)name);
  33.     if (p == NULL){
  34.       /* Look in ose_shell process */
  35.       if (hunt("ose_shell", 0, &proc_, NULL)){
  36. p = get_env(proc_, (char*)name);
  37.       }
  38.     }
  39.   }
  40.   if (p != NULL){
  41.     strncpy(buf, p, buflen);    
  42.     buf[buflen-1] = 0;
  43.     free_buf((union SIGNAL **)&p);
  44.     p = buf;
  45.   }
  46.   return p;
  47. }