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

F79659-03

coherence/util/LinkedList.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_LINKED_LIST_HPP
00008 #define COH_LINKED_LIST_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/Collection.hpp"
00013 #include "coherence/util/ListIterator.hpp"
00014 #include "coherence/util/AbstractList.hpp"
00015 #include "coherence/util/SubList.hpp"
00016 
00017 COH_OPEN_NAMESPACE2(coherence,util)
00018 
00019 
00020 /**
00021 * A linked list implementation of List.
00022 *
00023 * @author nsa 2008.02.04
00024 */
00025 class COH_EXPORT LinkedList
00026     : public cloneable_spec<LinkedList,
00027         extends<AbstractList> >
00028     {
00029     friend class factory<LinkedList>;
00030 
00031     // ----- constructors ---------------------------------------------------
00032 
00033     protected:
00034         /**
00035         * Create a new LinkedList.
00036         *
00037         * @return a new LinkedList
00038         */
00039         LinkedList();
00040 
00041         /**
00042         * Create a new LinkedList that has a reference to every element in
00043         * the supplied collection.
00044         *
00045         * @param vc  The collection to base the LinkedList on
00046         *
00047         * @return a new LinkedList
00048         */
00049         LinkedList(Collection::View vc);
00050 
00051         /**
00052         * @internal
00053         */
00054         LinkedList(const LinkedList& that);
00055 
00056         /**
00057         * Destructor.
00058         */
00059         virtual ~LinkedList();
00060 
00061 
00062     // ----- List interface -------------------------------------------------
00063 
00064     public:
00065         /**
00066         * {@inheritDoc}
00067         */
00068         virtual bool add(size32_t i, Object::Holder oh);
00069 
00070         /**
00071         * {@inheritDoc}
00072         */
00073         virtual bool addAll(size32_t i, Collection::View vc);
00074 
00075         /**
00076         * {@inheritDoc}
00077         */
00078         virtual Object::Holder get(size32_t i) const;
00079 
00080         /**
00081         * {@inheritDoc}
00082         */
00083         using List::get;
00084 
00085         /**
00086         * {@inheritDoc}
00087         */
00088         virtual size32_t indexOf(Object::View v) const;
00089 
00090         /**
00091         * {@inheritDoc}
00092         */
00093         virtual size32_t lastIndexOf(Object::View v) const;
00094 
00095         /**
00096         * {@inheritDoc}
00097         */
00098         virtual ListIterator::Handle listIterator(size32_t index = 0) const;
00099 
00100         /**
00101         * {@inheritDoc}
00102         */
00103         virtual ListMuterator::Handle listIterator(size32_t index = 0);
00104 
00105         /**
00106         * {@inheritDoc}
00107         */
00108         virtual Object::Holder remove(size32_t index);
00109 
00110         /**
00111         * {@inheritDoc}
00112         */
00113         virtual Object::Holder set(size32_t index, Object::Holder oh);
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual List::View subList(size32_t fromIndex, size32_t toIndex) const;
00119 
00120         /**
00121         * {@inheritDoc}
00122         */
00123         virtual List::Handle subList(size32_t fromIndex, size32_t toIndex);
00124 
00125 
00126     // ----- Collection interface -------------------------------------------
00127 
00128     public:
00129         /**
00130         * {@inheritDoc}
00131         */
00132         virtual size32_t size() const;
00133 
00134         /**
00135         * {@inheritDoc}
00136         */
00137         virtual Iterator::Handle iterator() const;
00138 
00139         /**
00140         * {@inheritDoc}
00141         */
00142         virtual Muterator::Handle iterator();
00143 
00144         /**
00145         * {@inheritDoc}
00146         */
00147         virtual bool add(Object::Holder oh);
00148 
00149         /**
00150         * {@inheritDoc}
00151         */
00152         virtual bool addAll(Collection::View vc);
00153 
00154         /**
00155         * {@inheritDoc}
00156         */
00157         virtual bool remove(Object::View v);
00158 
00159         /**
00160         * {@inheritDoc}
00161         */
00162         virtual bool removeAll(Collection::View vColl);
00163 
00164         /**
00165         * {@inheritDoc}
00166         */
00167         virtual bool retainAll(Collection::View vCol);
00168 
00169         /**
00170         * {@inheritDoc}
00171         */
00172         virtual void clear();
00173 
00174 
00175     // ----- Object interface -----------------------------------------------
00176 
00177     protected:
00178         /**
00179         * {@inheritDoc}
00180         */
00181         virtual void onEscape(bool fEscaped) const;
00182 
00183 
00184     // ----- nested class: ListElement --------------------------------------
00185 
00186     public:
00187         /**
00188         * ListElement is the foundation element for the linked list
00189         */
00190         class ListElement
00191             : public class_spec<ListElement>
00192             {
00193             friend class factory<ListElement>;
00194 
00195             // ----- constructor ----------------------------------------
00196 
00197             protected:
00198                 /**
00199                 * Create a new ListElement object.
00200                 *
00201                 * @param hNext  the element that will be next in the list
00202                 * @param hPrev  the element that will be previous in the
00203                 *               list
00204                 * @param hObj   the object this list element contains
00205                 *
00206                 * @return a newly created ListElement
00207                 */
00208                 ListElement(ListElement::Handle hNext,
00209                         ListElement::Handle hPrev, Object::Holder hObj);
00210 
00211 
00212             // ----- ListElement interface ------------------------------
00213 
00214             public:
00215                 /**
00216                 * Helper method to find a ListElement at the specified
00217                 * position
00218                 *
00219                 * @param thElement  the starting position to find the element
00220                 *                   from
00221                 * @param c          the index of the element to find
00222                 *
00223                 * @return a ListElement at the specified position
00224                 *
00225                 * @throws coherence::lang::IndexOutOfBoundsException if the
00226                 *         index is out of range
00227                 */
00228                 template<class T> static TypedHandle<T>
00229                         nextElement(const TypedHandle<T>& thElement, size32_t c);
00230 
00231             // ----- Object interface -----------------------------------
00232             public:
00233                 /**
00234                 * {@inheritDoc}
00235                 */
00236                 virtual size64_t sizeOf(bool fDeep = false) const;
00237 
00238             // ----- data members ---------------------------------------
00239 
00240             public:
00241                 /**
00242                 * Reference to the next element in the list
00243                 */
00244                 mutable MemberHandle<ListElement> next;
00245 
00246                 /**
00247                 * Reference to the previous element in the list
00248                 */
00249                 MemberHandle<ListElement> previous;
00250 
00251                 /**
00252                 * Reference to the actual object contained by this list
00253                 */
00254                 MemberHolder<Object> value;
00255             };
00256 
00257 
00258     // ----- nested class: SubLinkedList ----------------------------------
00259 
00260     public:
00261         /**
00262         * Utility class to implement a SubList of a LinkedList.
00263         * SubLinkedList delegates through the the LinkedList for all
00264         * modification operations
00265         */
00266         class SubLinkedList
00267             : public class_spec<SubLinkedList,
00268                 extends<SubList> >
00269             {
00270             friend class factory<SubLinkedList>;
00271 
00272             // ----- constructors ---------------------------------------
00273 
00274             protected:
00275                 /**
00276                 * create a new SubLinkedList.
00277                 *
00278                 * @param fromIndex  the starting point of the sublist in the
00279                 *                   list provided (inclusive).
00280                 * @param toIndex    the end point of the sublist in the list
00281                 *                   provided (exclusive)
00282                 * @param ohList     the list to create a sublist of
00283                 *
00284                 * @return a new SubLinkedList
00285                 */
00286                 SubLinkedList(size32_t fromIndex, size32_t toIndex,
00287                         List::Holder ohList);
00288 
00289 
00290             // ----- List interface --------------------------------------
00291 
00292             public:
00293                 /**
00294                 * {@inheritDoc}
00295                 */
00296                 virtual bool retainAll(Collection::View vColl);
00297 
00298                 /**
00299                 * {@inheritDoc}
00300                 */
00301                 virtual void clear();
00302 
00303                 /**
00304                 * {@inheritDoc}
00305                 */
00306                 virtual List::View
00307                         subList(size32_t fromIndex, size32_t toIndex) const;
00308 
00309                 /**
00310                 * {@inheritDoc}
00311                 */
00312                 virtual List::Handle
00313                         subList(size32_t fromIndex, size32_t toIndex);
00314             };
00315 
00316 
00317     // ----- helper methods -------------------------------------------------
00318 
00319     protected:
00320         /**
00321         * Helper method that will throw a
00322         * coherence::lang::IndexOutOfBoundsException if the supplied index
00323         * is out of range
00324         *
00325         * @param i  the index to test
00326         */
00327         virtual void assertIndex(size32_t i) const;
00328 
00329     private:
00330         /**
00331         * Remove a ListElement from the linked list.
00332         *
00333         * @param hElement  the element to remove
00334         */
00335         Object::Holder removeElement(ListElement::Handle hElement,
00336                 size32_t index);
00337 
00338         /**
00339         * Add a ListElement to the linked list.
00340         *
00341         * @param hNext  the element which will follow the new element
00342         * @param oh     the value portion of the new element
00343         */
00344         void addElement(ListElement::Handle hNext, Object::Holder oh);
00345 
00346     // ----- data members ---------------------------------------------------
00347 
00348     protected:
00349         /**
00350         * The number of elements in the list
00351         */
00352         size32_t m_cElements;
00353 
00354         /**
00355         * The head of the list.
00356         */
00357         mutable MemberHandle<ListElement> m_hHead;
00358 
00359         /**
00360         * The tail of the list.
00361         */
00362         mutable MemberHandle<ListElement> m_hTail;
00363 
00364 
00365     // ----- friends --------------------------------------------------------
00366 
00367     friend class SubLinkedList;
00368     friend class LinkedListIterator;
00369     };
00370 
00371 COH_CLOSE_NAMESPACE2
00372 
00373 #endif // COH_LINKED_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.