content_iterator_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 101 行
H
101 行
// -*- C++ -*-
// Content_Iterator_i.h,v 1.8 2002/01/29 20:20:40 okellogg Exp
// ============================================================================
//
// = LIBRARY
// AMI_Iterator
//
// = FILENAME
// Content_Iterator_i.h
//
// = DESCRIPTION
// Header file for the Web_Server::Content_Iterator implementation.
//
// = AUTHOR
// Ossama Othman <ossama@uci.edu>
//
// ============================================================================
#ifndef CONTENT_ITERATOR_I_H
#define CONTENT_ITERATOR_I_H
#include "ace/FILE_Addr.h"
#include "ace/FILE_IO.h"
#include "Web_ServerS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
// This is to remove "inherits via dominance" warnings from MSVC.
// MSVC is being a little too paranoid.
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
class Content_Iterator_i :
public virtual POA_Web_Server::Content_Iterator,
public virtual PortableServer::RefCountServantBase
{
// = TITLE
// Implement the Web_Server::Content_Iterator interface.
//
// = DESCRIPTION
// This class implements the Iterator pattern to minimize memory
// requirements when retrieving data from a content server.
// Rather than retrieving one large chunk of data, this class
// iterates on the server so that smaller chunks of data are
// retrieved.
friend class Iterator_Factory_i;
public:
Content_Iterator_i (const char *filename, CORBA::ULong file_size);
// Constructor
~Content_Iterator_i (void);
// Destructor
virtual CORBA::Boolean next_chunk (CORBA::ULong offset,
Web_Server::Chunk_Type_out chunk
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
// This operation returns the next <chunk> of the file starting at
// <offset>. If there are no more bindings, false is returned.
virtual void destroy (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
// Destroy the iterator.
private:
int init (void);
// Initialize the Content_Iterator.
private:
ACE_FILE_Addr file_;
// The Addr representing the requested file.
ACE_FILE_IO file_io_;
// Object that handles all IO operations on the requested file.
CORBA::ULong file_size_;
// The size of the file being iterated over.
CORBA::ULong chunk_index_;
// The number of the current chunk of data being sent. (Used only
// for debugging purposes.)
};
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
#pragma warning(pop)
#endif /* _MSC_VER */
#endif /* CONTENT_ITERATOR_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?