C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/util/SubList.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_SUB_LIST_HPP
00008 #define COH_SUB_LIST_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/AbstractList.hpp"
00013 #include "coherence/util/List.hpp"
00014 
00015 COH_OPEN_NAMESPACE2(coherence,util)
00016 
00017 
00018 /**
00019 * SubList delegates all operations to it's full list while providing a
00020 * partial view of the list.
00021 *
00022 * @author nsa 2008.02.08
00023 */
00024 class COH_EXPORT SubList
00025     : public abstract_spec<SubList,
00026         extends<AbstractList> >
00027     {
00028     // ----- constructor ----------------------------------------------------
00029 
00030     public:
00031         /**
00032         * @internal
00033         */
00034         SubList(size32_t fromIndex, size32_t toIndex, List::Holder ohList);
00035 
00036     private:
00037         /**
00038         * Blocked copy constructor
00039         */
00040         SubList(const SubList&);
00041 
00042 
00043     // ----- List interface -------------------------------------------------
00044 
00045     public:
00046         /**
00047         * {@inheritDoc}
00048         */
00049         virtual bool add(size32_t i, Object::Holder oh);
00050 
00051         /**
00052         * {@inheritDoc}
00053         */
00054         virtual bool addAll(size32_t i, Collection::View vc);
00055 
00056         /**
00057         * {@inheritDoc}
00058         */
00059         virtual Object::Holder get(size32_t i) const;
00060 
00061         /**
00062         * {@inheritDoc}
00063         */
00064         using List::get;
00065 
00066         /**
00067         * {@inheritDoc}
00068         */
00069         virtual size32_t indexOf(Object::View v) const;
00070 
00071         /**
00072         * {@inheritDoc}
00073         */
00074         virtual size32_t lastIndexOf(Object::View v) const;
00075 
00076         /**
00077         * {@inheritDoc}
00078         */
00079         virtual ListIterator::Handle listIterator(size32_t index = 0) const;
00080 
00081         /**
00082         * {@inheritDoc}
00083         */
00084         virtual ListMuterator::Handle listIterator(size32_t index = 0);
00085 
00086         /**
00087         * {@inheritDoc}
00088         */
00089         virtual Object::Holder remove(size32_t idx);
00090 
00091         /**
00092         * {@inheritDoc}
00093         */
00094         virtual Object::Holder set(size32_t idx, Object::Holder oh);
00095 
00096 
00097     // ----- Collection interface -------------------------------------------
00098 
00099     public:
00100         /**
00101         * {@inheritDoc}
00102         */
00103         virtual size32_t size() const;
00104 
00105         /**
00106         * {@inheritDoc}
00107         */
00108         virtual Iterator::Handle iterator() const;
00109 
00110         /**
00111         * {@inheritDoc}
00112         */
00113         virtual Muterator::Handle iterator();
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual bool add(Object::Holder oh);
00119 
00120         /**
00121         * {@inheritDoc}
00122         */
00123         virtual bool addAll(Collection::View vc);
00124 
00125         /**
00126         * {@inheritDoc}
00127         */
00128         virtual bool remove(Object::View v);
00129 
00130 
00131     // ----- helper methods -------------------------------------------------
00132 
00133     protected:
00134         /**
00135         * Validate that the supplied index is in the appropriate range
00136         * for this SubList.
00137         *
00138         * @param i  the index to test against the SubList's boundaries
00139         *
00140         * @throws coherence::lang::IndexOutOfBoundsException iff the
00141         * supplied index is outside the range of this SubList.
00142         */
00143         void assertIndex(size32_t i) const;
00144 
00145         /**
00146         * Return the to delegate to.
00147         *
00148         * @return the list to delegate to
00149         */
00150         virtual List::Handle getDelegate();
00151 
00152         /**
00153         * Return the to delegate to.
00154         *
00155         * @return the list to delegate to
00156         */
00157         virtual List::View getDelegate() const;
00158 
00159     // ----- data members ---------------------------------------------------
00160 
00161     protected:
00162         /**
00163         * The underlying list this is a sublist of
00164         */
00165         FinalHolder<List> f_ohList;
00166 
00167         /**
00168         * The offset this list is based on from the underlying list.
00169         */
00170         size32_t m_iOffset;
00171 
00172         /**
00173         * The size of this sublist.
00174         */
00175         size32_t m_iSize;
00176     };
00177 
00178 COH_CLOSE_NAMESPACE2
00179 
00180 #endif // COH_SUB_LIST_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.