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

📄 file_parser.h

📁 这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料
💻 H
字号:
/* -*- C++ -*- */
// File_Parser.h,v 4.14 2003/12/24 12:49:28 jwillemsen Exp

// ============================================================================
//
// = LIBRARY
//    gateway
//
// = FILENAME
//    File_Parser.h
//
// = AUTHOR
//    Doug Schmidt
//
// ============================================================================

#ifndef _FILE_PARSER
#define _FILE_PARSER

#include "ace/Basic_Types.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

class FP
{
  // = TITLE
  //     This class serves as a namespace for the <Return_Type>.
public:
  enum Return_Type
  {
    RT_EOLINE,
    RT_EOFILE,
    RT_SUCCESS,
    RT_COMMENT,
    RT_DEFAULT,
    RT_PARSE_ERROR
  };
};

template <class ENTRY>
class File_Parser
{
  // = TITLE
  //     Class used to parse the configuration file for the
  //     <Consumer_Map>.
public:
  // = Open and Close the file specified
  int open (const char filename[]);
  int close (void);

  virtual FP::Return_Type read_entry (ENTRY &entry,
                                      int &line_number) = 0;
  // Pure virtual hook that subclasses override and use the protected
  // methods to fill in the <entry>.

protected:
  FP::Return_Type getword (char buf[]);
  // Read the next ASCII word.

  FP::Return_Type getint (ACE_INT32 &value);
  // Read the next integer.

  FP::Return_Type readword (char buf[]);
  // Read the next "word," which is demarcated by <delimiter>s.
  //
  // @@ This function is inherently flawed since it doesn't take a
  // count of the size of <buf>...

  int delimiter (char ch);
  // Returns true if <ch> is a delimiter, i.e., ' ', ',', or '\t'.

  int comments (char ch);
  // Returns true if <ch> is the comment character, i.e., '#'.

  int skipline (void);
  // Skips to the remainder of a line, e.g., when we find a comment
  // character.

  FILE *infile_;
  // Pointer to the file we're reading.
};

#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "File_Parser.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */

#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
#pragma implementation ("File_Parser.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */

#endif /* _FILE_PARSER */

⌨️ 快捷键说明

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