Ubiquitous Iterator <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
This article is contributed by Wang HaiLong.
Preface
As one of 23 basic Design Patterns, Iterator seems to appear everywhere. This article discusses some scenarios where Iterator Pattern is applied, including STL, Collection in Java, IEnumXXXX interface in COM, IRowset interface in OLE DB, RecordSet Object in <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">ADO</span></place></city>, ResultSet in JDBC, Cursor in Oracle's SQL/PL.
Iterator Concept
Iterator Pattern separates the iteration operation from Container/Collection. To satisfy Iterator Pattern, there must be two Objects: a Container and its Iterator.
The aim of Iterator Pattern is to unify the way of iterating a Container, in spite of what kiand of data is put in the Container, and how the Container's internal structure is implemented.
The following is a simple example imitating STL.
// SimpleArray.cpp
template<typename T>
class SimpleArray
{
T data[100];
public:
class Iterator
{
SimpleArray<T>* m_pArray;
int m_iCurrentIndex;
friend class SimpleArray<T>;
public:
Iterator( SimpleArray<T>* pArray = 0) : m_pArray(pArray)
{
}
void Reset()
{
m_iCurrentIndex = 0;
}
T operator *()
{
return m_pArray->data[m_iCurrentIndex];
}
void operator --()
{
m_iCurrentIndex--;
}
void operator ++()
{
m_iCurrentIndex++;
}
bool operator !=(const Iterator& another)
{
if( m_pArray != another.m_pArray )
return true;
if( m_iCurrentIndex != another.m_iCurrentIndex )
return true;
return false;
}
};
Iterator begin()
{
Iterator it(this);
it.m_iCurrentIndex = 0;
return it;
}
Iterator end()
{
Iterator it(this);
it.m_iCurrentIndex = 100;
return it;
}
friend class Iterator;
};
template<class Container>
int sum(Container & con)
{
Container::Iterator it;
int total = 0;
for( it = con.begin(); it != con.end(); it++)
{
total += *it;
}
return total;
}
void test()
{
SimpleArray<int> con;
int total = sum(con);
}
If later we don't want to use the SimpleArray any more, we can change the test function as below.
#include <set>
void test()
{
set<int> con;
int total = sum(con);
}
Hence the separation of data structure and algorithm.
STL
The above example demonstrates the usage of STL and how to write STL-style programs. Now lets discuss some STL features in more depth.
As we have seen, algorithms can exist independent of data structure using STL. The key concept is "Function Object", which is detailed in chapter 21 "STL Algorithms" of <<Thinking in C++>>.
Now lets take a glimpse of what is a "Function Object".
Take the method "sort" of list in STL, for example.
template<class Pred> void sort(greater<T> pr);
The parameter pr inherits the "Function Object" greater and is also a "Function Object".
And the implementation likely takes the following shape.
struct CCompareTwoItem : public std::greater< T >
{
public:
bool operator()( T item1, T item2 )
{
}
};
Iterator in Java and C++
Enumeration interface and Iterator interface( in Java2) are self-explanatory. What is more, sub view is supported in Java.
similar effect can be approximated through filter iterator.
IEnumXXXX interface in COM
The definition of IEnumXXXX is:
Interface IEnumXXX : IUnknown
{
virtual HRESULT Next(unsigned long celt, XXXX* rgelt, unsigned long * pceltFetched) = 0;
virtual HRESULT Skip(unsigned long celt) = 0;
virtual HRESULT Reset() = 0;
virtual HRESULT Clone(IEnumXXXX** ppeunm);
}
An good example is "Connectable Objects" in COM.
interface IConnectionPoint : IUnknown
{
HRESULT GetConnectionInterface(IID* pIID);
HRESULT GetConnectionPointContainer(IConnectionPointContainer** ppCPC);
HRESULT Advise(IUnknown* pUnk, DWORD* pdwCookie);
HRESULT Unadvise(DWORD dwCookie);
HRESULT EnumConnections(IenumConnections** ppEnum);
}
interface IconnectionPointContainer : IUnknown
{
HRESULT EnumConnectionPoints(IEnumConnectionPoints** ppEnum);
HRESULT FindConnectionPoint(REFIID riid, IConnectionPoint** ppCP);
}
interface IEnumConnectionPoints
{
HRESULT Next(ULONG cConnections, IConnectionPoint** rgpcn,ULONG* pcFetched);
HRESULT Skip(ULONG cConnections);
HRESULT Reset(void);
HRESULT Clone(IEnumConnectionPoints** ppEnum);
}
IConnectionPointContainer holds IConnectionPoint and IConnectionPointContainer's method EnumConnectionPoints returns an IEnumConnectionPoints which can iterate the IConnectionPointContainer to get every IConnectionPoint.
IRowset interface in OLE DB
IRowset method description:
AddRefRows Adds a reference count to an existing row handle.
GetData Retrieves data from the rowset's copy of the row.
GetNextRows Fetches rows sequentially, remembering the previous position.
ReleaseRows Releases rows.
RestartPosition Repositions the next fetch position to its initial position; that is, its position when the rowset was first created.
The definition of ICommand::Excute is:
HRESULT Execute (IUnknown* pUnkOuter, REFIID riid, DBPARAMS* pParams, LONG* pcRowsAffected, IUnknown** ppRowset);
This method returns an IRowset interface which can iterate through the result of "Excute".
RecordSet Object in <city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">ADO</span></place></city>
The follow text is extracted from <city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">ADO</span></place></city> help.
A Recordset object represents the entire set of records from a base table or the results of an executed command. At any time, the Recordset object only refers to a single record within the set as the current record.
Using the Open method on a Recordset object opens a cursor that represents records from a base table or the results of a query.
Ways to get RecordSet Object include:
On a Command object: Set recordset = command.Execute(RecordsAffected, Parameters, Options)
On a Connection object: Set recordset = connection.Execute(CommandText, RecordsAffected, Options)
ResultSet in JDBC
Connection Con = getConnection();
Statement stmt = con.createStatement(ResultSet.TYPE_SCROOL_INSENTIVE,
ResultSet.CONCUR_READ_ONLY);
ResultSet rs = stmt.excuteQuery(query);
While(rs.next()){c};
Cursor in Oracle's SQL/PL
We can look on Cursor as a forward-only iterator.
Appendix
Some great books about Design Patterns:
<<Design Patterns>> by <city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">Zurich</span></place></city>, <city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">Sydney</span></place></city>, <city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">Urbana</span></place></city>, <city><place><span lang="EN-US" style="FONT-FAMILY: 'Courier New'">Hawthorne</span></place></city>;
<<Thinking in C++>> and <<Thinking in Java >> by Bruce Eckel;
<<The Design Patterns Java Companion>> by James W. Cooper.
分享到:
相关推荐
《计算机科学与泛在计算的进展》(Advances in Computer Science and Ubiquitous Computing)是一部汇集了当前计算机科学领域前沿研究的重要著作。该书由Doo-Soon Park、Han-Chieh Chao、Young-Sik Jeong和James J. ...
Stefan Poslad编著的Ubiquitous Computing原版PDF书籍 下载于http://onlinelibrary.wiley.com 书籍的信息请参见http://www.elec.qmul.ac.uk/people/stefan/ubicom
### 《无处不在的B树》:理解B树及其变体 #### 摘要与背景 在计算机科学领域,数据存储与检索是至关重要的技术之一。随着信息技术的发展,如何高效地组织和访问大量数据成为了研究的重点。本文讨论的主题是B树(B-...
Lecture Notes of the Institute for Computer Sciences, Social Informatics and Telecommunications Engineering
The audience for the books in LNEE consists of advanced level students,researchers, and industry professionals working at the forefront of their fi elds.Much like Springer's other Lecture Notes ...
《机器学习中的自动微分综述》这篇论文深入探讨了自动微分在现代机器学习中的应用和重要性。自动微分(Automatic Differentiation,AD),也被称为算法微分或“自动微分”,是一系列技术,用于高效且准确地计算通过...
### 关于普适计算的研究综述 #### 一、引言与背景 本文献综述主要探讨了29种不同的软件基础设施和框架,这些设施和框架支持分布式交互系统的构建。这些系统涵盖了从小型项目(只有一个实施原型)到大型研究项目的...
### 商业普适计算(Ubiquitous Computing for Business) #### 核心概念解析 **商业普适计算**这一概念融合了信息技术与商业管理两大领域,旨在利用无处不在的计算能力来改善企业的运营效率和顾客体验。随着科技的...
《普适计算与移动计算》教材的PPT幻灯片集合涵盖了多个章节的内容,这些章节包括但不限于 Ubiquitous Computing 的基础概念、系统架构、技术应用以及未来趋势等关键主题。以下是对每个章节幻灯片的详细解读: 1. **...
在探讨了Ubiquitous-X的基础上,文章接着讨论了AIoT在Ubiquitous-X环境下的定义和架构。此处,AIoT网络具备智能感知的能力,可以支持智能控制和智能分析,为用户提供无缝的服务体验。文章进一步指出了新型AIoT应用的...
随着技术的不断发展,普适计算(Ubiquitous Computing,又称Ubicomp)已成为一个重要的研究领域。普适计算强调的是将计算能力无缝地融入到日常生活中,使得用户能够在任何地点、任何时间获取所需的信息和服务。本文...
随着便携式设备的出现以及无线网络技术的进步,泛在计算(Ubiquitous Computing)这一愿景正逐渐变为现实。泛在计算旨在通过无缝利用周围环境中可用的服务来简化用户的任务。在这些分布式环境中,开放性是其主要特征...
With the right investments, innovations, and policies, robots could become as ubiquitous as PCs in homes and offices, significantly reshaping our daily lives. The future, as Bill Gates suggests, may ...
PID control is ubiquitous. While simple in theory, design and implementation of PID controllers can be difficult and time consuming in practice. PID control involves several tasks that include:
Electromagnetic radiation fields are ubiquitous in modern society. It is well known that long-term exposure in strong fields can result in bad effects to health due to some unknown mechanism. There ...