⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ipv2.h

📁 大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CHARMM并行计算。非常具有应用价值。
💻 H
字号:
//// ipv2.h//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB.  If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifndef _util_keyval_ipv2_ipv2_h#define _util_keyval_ipv2_ipv2_h#ifdef __GNUG__#pragma interface#endif#include <iostream>#include <util/misc/exenv.h>#include <util/keyval/ipv2_scan.h>#undef yyFlexLexer#define yyFlexLexer IPV2FlexLexer#include <FlexLexer.h>namespace sc {// For temporary data (only used while parsing)/* This integer list is used to keep track of the karray index. */struct intlist_struct {  int i;  struct intlist_struct *p;  };typedef struct intlist_struct intlist_t;// For permanent datastruct ip_keyword_tree_struct {  char *keyword;  char *classname;  char *truename;  struct ip_keyword_tree_struct *across; /* Circular list. */  struct ip_keyword_tree_struct *up;    /* Terminated by NULL. */  struct ip_keyword_tree_struct *down;  /* Terminated by NULL. */  char *variable;  /* If this node points to another name, this                    * is the name, otherwise NULL. */  char *value;  int seen;  };struct ip_keyword_tree_list_struct {  struct ip_keyword_tree_struct *kt;  struct ip_keyword_tree_list_struct *p;  };struct ip_cwk_stack_struct {  struct ip_keyword_tree_list_struct *ktl;  struct ip_cwk_stack_struct *p;  };typedef struct ip_cwk_stack_struct ip_cwk_stack_t;typedef struct ip_keyword_tree_struct ip_keyword_tree_t;typedef struct ip_keyword_tree_list_struct ip_keyword_tree_list_t;class IPV2{ public:  enum Status {      OK=0          ,  /* No problem. */      KeyNotFound=1 ,  /* The keyword was not found. */      OutOfBounds=2 ,  /* An array subscript was out of bounds. */      Malloc=3      ,  /* Memory allocation failed. */      NotAnArray=4  ,  /* Gave index for data which isn't an array */      NotAScalar=5  ,  /* Didn't give index for data which is an array */      Type=6        ,  /* The datum is not of the appropiate type. */      HasNoValue=7  ,  /* The keyword has no value. */      ValNotExpd=8     /* A value was not expected for the keyword. */      };  enum { KEYWORD_LENGTH=256 };   private:  char *filename_;      // These are needed only when the input is being read in:  ip_string_list_t* table_keywords;  ip_string_list_t* current_table_keyword;  ip_keyword_tree_t* table_sub_tree;  int table_row_number;  int table_array_depth;  intlist_t *karray_indices;  ip_keyword_tree_t *sub_tree;  int init_karray;  // this maintains a list of current working keyword lists (for cwk_push  // and cwk_pop)  ip_cwk_stack_t *cwkstack;  // This keeps track of whether or not we've been initialized  int ip_initialized;  // This is used for error processing  char lastkeyword[KEYWORD_LENGTH];    // These are needed always:  std::istream* ip_in;  std::ostream* ip_out;  ip_keyword_tree_t* ip_tree;  ip_keyword_tree_list_t* ip_cwk;  int ip_keyword;  // private routines mainly used for parsing the input  void ip_push_table_col(char*);  void ip_next_table_entry();  char* dup_string(const char*);  ip_keyword_tree_t* ip_get_variable_kt(char*);  char* ip_get_variable_value(char*);  void ip_internal_values();  void ip_push_keyword(char*);  void ip_push_keyclass(char*,char*,ip_string_list_t*);  void ip_pop_keyword();  void ip_begin_table(ip_string_list_t*);  void ip_done_table();  ip_string_list_t* ip_add_string_list(ip_string_list_t*,char*);  ip_string_list_t* ip_string_to_string_list(char*);  void ip_assign_variable(char*);  double ip_get_variable_double(char*);  char* ip_double_to_string(double);  void ip_assign_value(char*value);  void ip_start_karray();  void ip_init_karray();  void ip_incr_karray();  void ip_lastkeyword(const char*);  void ip_lastkeywordtree(ip_keyword_tree_t*);  void ip_lastkeyword_(ip_keyword_tree_t*);  ip_keyword_tree_t* ip_alloc_keyword_tree();  void ip_free_keyword_tree(ip_keyword_tree_t*);  void ip_cwk_add_kt(ip_keyword_tree_t*);  ip_keyword_tree_t* ip_cwk_descend_tree(const char*);  ip_keyword_tree_t* ip_descend_tree(ip_keyword_tree_t*,const char*);  char* ip_key_value(const char*);  void free_keyword_tree_list(ip_keyword_tree_list_t*);  ip_keyword_tree_list_t* splice_keyword_tree_list(ip_keyword_tree_t*,                                                   ip_keyword_tree_list_t*);  void ip_cwk_karray_add_v(int,int*);  void ip_cwk_karray_add(int,...);  ip_keyword_tree_t* ip_karray_descend_v(ip_keyword_tree_t*,int,int*);  ip_keyword_tree_t* ip_karray_descend(ip_keyword_tree_t*,int,...);  void print_tree_(std::ostream&,ip_keyword_tree_t*);  int ip_special_characters(char*);  char* ip_append_keystrings(char*,char*);  void ip_pop_karray();  void ip_initialize(std::istream&,std::ostream&);  void ip_append(std::istream&,std::ostream&);  char* get_truename(ip_keyword_tree_t*kt);  void showpos();  IPV2FlexLexer *lexer;  int ylex() { return lexer->yylex(); }  int yparse();  void yerror(const char* s); public:  IPV2();  virtual ~IPV2();  static int have_global();  static void set_global(IPV2*);  static IPV2* global();  // calls either ip_append or ip_initialize based on ip_initialized  void read(std::istream&,std::ostream&,const char *filename=0);  void append_from_input(const char*,std::ostream&);  void done();  const char* error_message(IPV2::Status);  void error(const char*);  void warn(const char*);  void cwk_root();  void cwk_clear();  void cwk_add(const char*);  void cwk_push();  void cwk_pop();  IPV2::Status boolean(const char*,int*,int,...);  IPV2::Status boolean_v(const char*,int*,int,int*);  int exist(const char*,int,...);  int exist_v(const char*,int,int*);  IPV2::Status data(const char*,const char*,void*,int,...);  IPV2::Status data_v(const char*,const char*,void*,int,int*);    // the character string produced by classname must not be delete[]'ed  IPV2::Status classname(const char*,const char**,int,...);  IPV2::Status classname_v(const char*,const char**,int,int*);    // the character string produced by truekeyword must not be delete[]'ed    // if there is no alias for the keyword the string pointer is set to    // null and if the keyword exists OK is returned  IPV2::Status truekeyword(const char*,const char**,int,...);  IPV2::Status truekeyword_v(const char*,const char**,int,int*);  IPV2::Status string(const char*,char**,int,...);  IPV2::Status string_v(const char*,char**,int,int*);    // the character string produced by value must not be delete[]'ed    // or free'ed.  IPV2::Status value(const char*,const char**,int,...);  IPV2::Status value_v(const char*,const char**,int,int*);  IPV2::Status construct_key_v(const char*,char*,int,int*);  IPV2::Status count(const char*,int*,int,...);  IPV2::Status count_v(const char*,int*,int,int*);  // some routines for debugging  void print_keyword(std::ostream&f=ExEnv::out0(),ip_keyword_tree_t*k=0);  void print_tree(std::ostream&f=ExEnv::out0(),ip_keyword_tree_t*k=0);  void print_unseen(std::ostream&f=ExEnv::out0(),ip_keyword_tree_t*k=0);  int have_unseen(ip_keyword_tree_t*k=0);};}#endif// Local Variables:// mode: c++// c-file-style: "CLJ"// End:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -