| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- //
- // Extraction.h
- //
- // $Id: //poco/Main/Data/include/Poco/Data/Extraction.h#7 $
- //
- // Library: Data
- // Package: DataCore
- // Module: Extraction
- //
- // Definition of the Extraction class.
- //
- // Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
- // and Contributors.
- //
- // Permission is hereby granted, free of charge, to any person or organization
- // obtaining a copy of the software and accompanying documentation covered by
- // this license (the "Software") to use, reproduce, display, distribute,
- // execute, and transmit the Software, and to prepare derivative works of the
- // Software, and to permit third-parties to whom the Software is furnished to
- // do so, all subject to the following:
- //
- // The copyright notices in the Software and this entire statement, including
- // the above license grant, this restriction and the following disclaimer,
- // must be included in all copies of the Software, in whole or in part, and
- // all derivative works of the Software, unless such copies or derivative
- // works are solely in the form of machine-executable object code generated by
- // a source language processor.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
- // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
- // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
- // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- // DEALINGS IN THE SOFTWARE.
- //
- #ifndef Data_Extraction_INCLUDED
- #define Data_Extraction_INCLUDED
- #include "Poco/Data/Data.h"
- #include "Poco/Data/AbstractExtraction.h"
- #include "Poco/Data/Prepare.h"
- #include "Poco/Data/TypeHandler.h"
- #include "Poco/Data/Column.h"
- #include "Poco/Data/DataException.h"
- #include <set>
- #include <vector>
- #include <list>
- #include <deque>
- #include <map>
- #include <cstddef>
- namespace Poco {
- namespace Data {
- template <class T>
- class Extraction: public AbstractExtraction
- /// Concrete Data Type specific extraction of values from a query result set.
- {
- public:
- Extraction(T& result): _rResult(result), _default(), _extracted(false)
- /// Creates an Extraction object, uses an empty object T as default value
- {
- }
- Extraction(T& result, const T& def): _rResult(result), _default(def), _extracted(false)
- /// Creates an Extraction object, uses the provided def object as default value
- {
- }
- ~Extraction()
- /// Destroys the Extraction object.
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<T>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return 1u;
- }
- std::size_t numOfRowsAllowed() const
- {
- return 1u;
- }
- void extract(std::size_t pos)
- {
- if (_extracted) throw ExtractException("value already extracted");
- _extracted = true;
- TypeHandler<T>::extract(pos, _rResult, _default, getExtractor());
- }
- void reset()
- {
- _extracted = false;
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<T>(pPrep, pos, _default);
- }
- private:
- T& _rResult;
- T _default; // copy the default
- bool _extracted;
- };
- template <class T>
- class Extraction<std::vector<T> >: public AbstractExtraction
- /// Vector Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::vector<T>& result): _rResult(result), _default()
- {
- }
- Extraction(std::vector<T>& result, const T& def): _rResult(result), _default(def)
- {
- }
- virtual ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<T>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- _rResult.push_back(_default);
- TypeHandler<T>::extract(pos, _rResult.back(), _default, getExtractor());
- }
- virtual void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<T>(pPrep, pos, _default);
- }
- protected:
- const std::vector<T>& result() const
- {
- return _rResult;
- }
- private:
- std::vector<T>& _rResult;
- T _default; // copy the default
- };
- template <class T>
- class Extraction<std::list<T> >: public AbstractExtraction
- /// List Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::list<T>& result): _rResult(result), _default()
- {
- }
- Extraction(std::list<T>& result, const T& def): _rResult(result), _default(def)
- {
- }
- virtual ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<T>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- _rResult.push_back(_default);
- TypeHandler<T>::extract(pos, _rResult.back(), _default, getExtractor());
- }
- virtual void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<T>(pPrep, pos, _default);
- }
- protected:
- const std::list<T>& result() const
- {
- return _rResult;
- }
- private:
- std::list<T>& _rResult;
- T _default; // copy the default
- };
- template <class T>
- class Extraction<std::deque<T> >: public AbstractExtraction
- /// Deque Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::deque<T>& result): _rResult(result), _default()
- {
- }
- Extraction(std::deque<T>& result, const T& def): _rResult(result), _default(def)
- {
- }
- virtual ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<T>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- _rResult.push_back(_default);
- TypeHandler<T>::extract(pos, _rResult.back(), _default, getExtractor());
- }
- virtual void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<T>(pPrep, pos, _default);
- }
- protected:
- const std::deque<T>& result() const
- {
- return _rResult;
- }
- private:
- std::deque<T>& _rResult;
- T _default; // copy the default
- };
- template <class T, class C = std::vector<T> >
- class InternalExtraction: public Extraction<C>
- /// Container Data Type specialization extension for extraction of values from a query result set.
- ///
- /// This class is intended for PocoData internal use - it is used by StatementImpl
- /// to automaticaly create internal Extraction in cases when statement returns data and no external storage
- /// was supplied. It is later used by RecordSet to retrieve the fetched data after statement execution.
- /// It takes ownership of the Column pointer supplied as constructor argument. Column object, in turn
- /// owns the data vector pointer.
- ///
- /// InternalExtraction objects can not be copied or assigned.
- {
- public:
- explicit InternalExtraction(C& result, Column<T,C>* pColumn):
- Extraction<C>(result),
- _pColumn(pColumn)
- /// Creates InternalExtraction.
-
- {
- }
- ~InternalExtraction()
- /// Destroys InternalExtraction.
- {
- delete _pColumn;
- }
- void reset()
- {
- _pColumn->reset();
- }
- const T& value(int index) const
- {
- try
- {
- return Extraction<C>::result().at(index);
- }
- catch (std::out_of_range& ex)
- {
- throw RangeException(ex.what());
- }
- }
- const Column<T,C>& column() const
- {
- return *_pColumn;
- }
- private:
- InternalExtraction();
- InternalExtraction(const InternalExtraction&);
- InternalExtraction& operator = (const InternalExtraction&);
- Column<T,C>* _pColumn;
- };
- template <class T>
- class Extraction<std::set<T> >: public AbstractExtraction
- /// Set Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::set<T>& result): _rResult(result), _default()
- {
- }
- Extraction(std::set<T>& result, const T& def): _rResult(result), _default(def)
- {
- }
- ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<T>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- T tmp;
- TypeHandler<T>::extract(pos, tmp, _default, getExtractor());
- _rResult.insert(tmp);
- }
- void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<T>(pPrep, pos, _default);
- }
- private:
- std::set<T>& _rResult;
- T _default; // copy the default
- };
- template <class T>
- class Extraction<std::multiset<T> >: public AbstractExtraction
- /// Multiset Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::multiset<T>& result): _rResult(result), _default()
- {
- }
- Extraction(std::multiset<T>& result, const T& def): _rResult(result), _default(def)
- {
- }
- ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<T>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- T tmp;
- TypeHandler<T>::extract(pos, tmp, _default, getExtractor());
- _rResult.insert(tmp);
- }
- void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<T>(pPrep, pos, _default);
- }
- private:
- std::multiset<T>& _rResult;
- T _default; // copy the default
- };
- template <class K, class V>
- class Extraction<std::map<K, V> >: public AbstractExtraction
- /// Map Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::map<K, V>& result): _rResult(result), _default()
- {
- }
- Extraction(std::map<K, V>& result, const V& def): _rResult(result), _default(def)
- {
- }
- ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<V>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- V tmp;
- TypeHandler<V>::extract(pos, tmp, _default, getExtractor());
- _rResult.insert(std::make_pair(tmp(), tmp));
- }
- void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<V>(pPrep, pos, _default);
- }
- private:
- std::map<K, V>& _rResult;
- V _default; // copy the default
- };
- template <class K, class V>
- class Extraction<std::multimap<K, V> >: public AbstractExtraction
- /// Multimap Data Type specialization for extraction of values from a query result set.
- {
- public:
- Extraction(std::multimap<K, V>& result): _rResult(result), _default()
- {
- }
- Extraction(std::multimap<K, V>& result, const V& def): _rResult(result), _default(def)
- {
- }
- ~Extraction()
- {
- }
- std::size_t numOfColumnsHandled() const
- {
- return TypeHandler<V>::size();
- }
- std::size_t numOfRowsHandled() const
- {
- return _rResult.size();
- }
- std::size_t numOfRowsAllowed() const
- {
- return getLimit();
- }
- void extract(std::size_t pos)
- {
- V tmp;
- TypeHandler<V>::extract(pos, tmp, _default, getExtractor());
- _rResult.insert(std::make_pair(tmp(), tmp));
- }
- void reset()
- {
- }
- AbstractPrepare* createPrepareObject(AbstractPreparation* pPrep, std::size_t pos) const
- {
- return new Prepare<V>(pPrep, pos, _default);
- }
- private:
- std::multimap<K, V>& _rResult;
- V _default; // copy the default
- };
- template <typename T> Extraction<T>* into(T& t)
- /// Convenience function to allow for a more compact creation of a default extraction object
- {
- return new Extraction<T>(t);
- }
- template <typename T> Extraction<T>* into(T& t, const T& def)
- /// Convenience function to allow for a more compact creation of an extraction object with the given default
- {
- return new Extraction<T>(t, def);
- }
- } } // namespace Poco::Data
- #endif // Data_Extraction_INCLUDED
|