Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/doc/src/libraries/core/Identifier.h @ 7297

Last change on this file since 7297 was 7297, checked in by landauf, 14 years ago

fixed lots of Doxygen warnings

Note: Doxygen prints a warning if only a part of the parameters of a function are documented.

Added documentation for missing parameters (as good as I could), removed documentation of obsolete parameters and fixed names of renamed parameters.
Some parameters are tagged with "FIXME", please replace this with an appropriate documentation if you know what it does.

  • Property svn:eol-style set to native
File size: 24.9 KB
RevLine 
[790]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1505]3 *                    > www.orxonox.net <
[790]4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[871]29/**
[2171]30    @file
[5929]31    @brief Definition of the Identifier class, definition and implementation of the ClassIdentifier class.
[790]32
[5695]33    The Identifier contains all needed information about the class it belongs to:
[790]34     - the name
35     - a list with all objects
[1024]36     - parents and children
[790]37     - the factory (if available)
38     - the networkID that can be synchronised with the server
39     - all configurable variables (if available)
40
41    Every object has a pointer to the Identifier of its class. This allows the use isA(...),
[871]42    isExactlyA(...), isChildOf(...) and isParentOf(...).
[790]43
44    To create the class-hierarchy, the Identifier has some intern functions and variables.
45
46    Every Identifier is in fact a ClassIdentifier, but they are derived from Identifier.
47*/
48
49#ifndef _Identifier_H__
50#define _Identifier_H__
[1052]51
[1062]52#include "CorePrereqs.h"
53
[3196]54#include <cassert>
55#include <map>
[1052]56#include <set>
[790]57#include <string>
[1639]58#include <typeinfo>
[7266]59#include <loki/TypeTraits.h>
[790]60
[3196]61#include "util/Debug.h"
[1747]62#include "MetaObjectList.h"
[3196]63#include "ObjectList.h"
64#include "ObjectListBase.h"
[5781]65#include "Super.h"
[790]66
67namespace orxonox
68{
69    // ###############################
70    // ###       Identifier        ###
71    // ###############################
[5695]72    //! The Identifier is used to identify the class of an object and to store information about the class.
[790]73    /**
[5695]74        The Identifier contains all needed information about the class it belongs to:
[790]75         - the name
76         - a list with all objects
[1755]77         - parents and children
[790]78         - the factory (if available)
79         - the networkID that can be synchronised with the server
80         - all configurable variables (if available)
81
82        Every object has a pointer to the Identifier of its class. This allows the use isA(...),
[871]83        isExactlyA(...), isChildOf(...) and isParentOf(...).
[790]84
85        You can't directly create an Identifier, it's just the base-class for ClassIdentifier.
86    */
87    class _CoreExport Identifier
88    {
[5929]89        public:
90            /** @brief Returns the name of the class the Identifier belongs to. @return The name */
91            inline const std::string& getName() const { return this->name_; }
92            void setName(const std::string& name);
[790]93
[5929]94            /** @brief Returns the network ID to identify a class through the network. @return the network ID */
95            inline const uint32_t getNetworkID() const { return this->networkID_; }
96            void setNetworkID(uint32_t id);
[790]97
[5929]98            /** @brief Returns the unique ID of the class */
99            FORCEINLINE unsigned int getClassID() const { return this->classID_; }
100
101            /** @brief Returns the list of all existing objects of this class. @return The list */
102            inline ObjectListBase* getObjects() const { return this->objects_; }
103
[790]104            /** @brief Sets the Factory. @param factory The factory to assign */
[5929]105            inline void addFactory(Factory* factory) { this->factory_ = factory; }
106            /** @brief Returns true if the Identifier has a Factory. */
107            inline bool hasFactory() const { return (this->factory_ != 0); }
[790]108
[2087]109            BaseObject* fabricate(BaseObject* creator);
[5929]110
111            /** @brief Returns true if the class can be loaded through XML. */
112            inline bool isLoadable() const { return this->bLoadable_; }
113            /** @brief Set the class to be loadable through XML or not. */
114            inline void setLoadable(bool bLoadable) { this->bLoadable_ = bLoadable; }
115
[790]116            bool isA(const Identifier* identifier) const;
[871]117            bool isExactlyA(const Identifier* identifier) const;
[1052]118            bool isChildOf(const Identifier* identifier) const;
[871]119            bool isDirectChildOf(const Identifier* identifier) const;
[1052]120            bool isParentOf(const Identifier* identifier) const;
[871]121            bool isDirectParentOf(const Identifier* identifier) const;
[790]122
[5781]123
[5929]124            /////////////////////////////
125            ////// Class Hierarchy //////
126            /////////////////////////////
127            static void createClassHierarchy();
[790]128
[5929]129            /** @brief Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents. @return The status of the class-hierarchy creation */
130            inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); }
[790]131
[1052]132            /** @brief Returns the parents of the class the Identifier belongs to. @return The list of all parents */
133            inline const std::set<const Identifier*>& getParents() const { return this->parents_; }
134            /** @brief Returns the begin-iterator of the parents-list. @return The begin-iterator */
135            inline std::set<const Identifier*>::const_iterator getParentsBegin() const { return this->parents_.begin(); }
136            /** @brief Returns the end-iterator of the parents-list. @return The end-iterator */
137            inline std::set<const Identifier*>::const_iterator getParentsEnd() const { return this->parents_.end(); }
138
139            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
[5929]140            inline const std::set<const Identifier*>& getChildren() const { return this->children_; }
[1052]141            /** @brief Returns the begin-iterator of the children-list. @return The begin-iterator */
[5929]142            inline std::set<const Identifier*>::const_iterator getChildrenBegin() const { return this->children_.begin(); }
[1052]143            /** @brief Returns the end-iterator of the children-list. @return The end-iterator */
[5929]144            inline std::set<const Identifier*>::const_iterator getChildrenEnd() const { return this->children_.end(); }
[1052]145
146            /** @brief Returns the direct parents of the class the Identifier belongs to. @return The list of all direct parents */
147            inline const std::set<const Identifier*>& getDirectParents() const { return this->directParents_; }
148            /** @brief Returns the begin-iterator of the direct-parents-list. @return The begin-iterator */
149            inline std::set<const Identifier*>::const_iterator getDirectParentsBegin() const { return this->directParents_.begin(); }
150            /** @brief Returns the end-iterator of the direct-parents-list. @return The end-iterator */
151            inline std::set<const Identifier*>::const_iterator getDirectParentsEnd() const { return this->directParents_.end(); }
152
153            /** @brief Returns the direct children the class the Identifier belongs to. @return The list of all direct children */
[5929]154            inline const std::set<const Identifier*>& getDirectChildren() const { return this->directChildren_; }
[1052]155            /** @brief Returns the begin-iterator of the direct-children-list. @return The begin-iterator */
[5929]156            inline std::set<const Identifier*>::const_iterator getDirectChildrenBegin() const { return this->directChildren_.begin(); }
[1052]157            /** @brief Returns the end-iterator of the direct-children-list. @return The end-iterator */
[5929]158            inline std::set<const Identifier*>::const_iterator getDirectChildrenEnd() const { return this->directChildren_.end(); }
[1052]159
160
[5929]161            //////////////////////////
162            ///// Identifier Map /////
163            //////////////////////////
164            static void destroyAllIdentifiers();
[1052]165
[5929]166            static Identifier* getIdentifierByString(const std::string& name);
167            static Identifier* getIdentifierByLowercaseString(const std::string& name);
168            static Identifier* getIdentifierByID(uint32_t id);
169
170            static void clearNetworkIDs();
171
172            /** @brief Returns the map that stores all Identifiers with their names. @return The map */
173            static inline const std::map<std::string, Identifier*>& getStringIdentifierMap() { return Identifier::getStringIdentifierMapIntern(); }
174            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names. @return The const_iterator */
175            static inline std::map<std::string, Identifier*>::const_iterator getStringIdentifierMapBegin() { return Identifier::getStringIdentifierMap().begin(); }
176            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names. @return The const_iterator */
177            static inline std::map<std::string, Identifier*>::const_iterator getStringIdentifierMapEnd() { return Identifier::getStringIdentifierMap().end(); }
178
[1052]179            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
[5929]180            static inline const std::map<std::string, Identifier*>& getLowercaseStringIdentifierMap() { return Identifier::getLowercaseStringIdentifierMapIntern(); }
[1052]181            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
[5929]182            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseStringIdentifierMapBegin() { return Identifier::getLowercaseStringIdentifierMap().begin(); }
[1052]183            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
[5929]184            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseStringIdentifierMapEnd() { return Identifier::getLowercaseStringIdentifierMap().end(); }
[1052]185
[5929]186            /** @brief Returns the map that stores all Identifiers with their IDs. @return The map */
187            static inline const std::map<uint32_t, Identifier*>& getIDIdentifierMap() { return Identifier::getIDIdentifierMapIntern(); }
188            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their IDs. @return The const_iterator */
189            static inline std::map<uint32_t, Identifier*>::const_iterator getIDIdentifierMapBegin() { return Identifier::getIDIdentifierMap().begin(); }
190            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their IDs. @return The const_iterator */
191            static inline std::map<uint32_t, Identifier*>::const_iterator getIDIdentifierMapEnd() { return Identifier::getIDIdentifierMap().end(); }
[1052]192
[5929]193
194            /////////////////////////
195            ///// Config Values /////
196            /////////////////////////
197            virtual void updateConfigValues(bool updateChildren = true) const = 0;
198
199            /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */
200            inline bool hasConfigValues() const { return this->bHasConfigValues_; }
201
202            void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container);
203            ConfigValueContainer* getConfigValueContainer(const std::string& varname);
[1052]204
[5929]205
206            ///////////////////
207            ///// XMLPort /////
208            ///////////////////
[5781]209            /** @brief Returns the map that stores all XMLPort params. @return The const_iterator */
210            inline const std::map<std::string, XMLPortParamContainer*>& getXMLPortParamMap() const { return this->xmlportParamContainers_; }
211            /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort params. @return The const_iterator */
212            inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapBegin() const { return this->xmlportParamContainers_.begin(); }
213            /** @brief Returns a const_iterator to the end of the map that stores all XMLPort params. @return The const_iterator */
214            inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapEnd() const { return this->xmlportParamContainers_.end(); }
215
216            /** @brief Returns the map that stores all XMLPort objects. @return The const_iterator */
217            inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortObjectMap() const { return this->xmlportObjectContainers_; }
218            /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort objects. @return The const_iterator */
219            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapBegin() const { return this->xmlportObjectContainers_.begin(); }
220            /** @brief Returns a const_iterator to the end of the map that stores all XMLPort objects. @return The const_iterator */
221            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapEnd() const { return this->xmlportObjectContainers_.end(); }
222
223            void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
224            XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname);
225
226            void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container);
227            XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname);
228
229
[1052]230        protected:
[1747]231            Identifier();
232            Identifier(const Identifier& identifier); // don't copy
233            virtual ~Identifier();
234
235            static Identifier* getIdentifierSingleton(const std::string& name, Identifier* proposal);
[5781]236            virtual void createSuperFunctionCaller() const = 0;
[1747]237
[5929]238            void initializeClassHierarchy(std::set<const Identifier*>* parents, bool bRootClass);
239
240            /** @brief Returns the map that stores all Identifiers with their names. @return The map */
241            static std::map<std::string, Identifier*>& getStringIdentifierMapIntern();
[1052]242            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
[5929]243            static std::map<std::string, Identifier*>& getLowercaseStringIdentifierMapIntern();
244            /** @brief Returns the map that stores all Identifiers with their network IDs. @return The map */
245            static std::map<uint32_t, Identifier*>& getIDIdentifierMapIntern();
[1052]246
247            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
[5929]248            inline std::set<const Identifier*>& getChildrenIntern() const { return this->children_; }
[1052]249            /** @brief Returns the direct children of the class the Identifier belongs to. @return The list of all direct children */
[5929]250            inline std::set<const Identifier*>& getDirectChildrenIntern() const { return this->directChildren_; }
[1052]251
[1747]252            ObjectListBase* objects_;                                      //!< The list of all objects of this class
253
254        private:
[5929]255            /** @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents. */
256            inline static void startCreatingHierarchy() { hierarchyCreatingCounter_s++; }
257            /** @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents. */
258            inline static void stopCreatingHierarchy()  { hierarchyCreatingCounter_s--; }
[790]259
[2662]260            static std::map<std::string, Identifier*>& getTypeIDIdentifierMap();
261
[1856]262            void initialize(std::set<const Identifier*>* parents);
263
[1052]264            std::set<const Identifier*> parents_;                          //!< The parents of the class the Identifier belongs to
[5929]265            mutable std::set<const Identifier*> children_;                 //!< The children of the class the Identifier belongs to
[790]266
[1052]267            std::set<const Identifier*> directParents_;                    //!< The direct parents of the class the Identifier belongs to
[5929]268            mutable std::set<const Identifier*> directChildren_;           //!< The direct children of the class the Identifier belongs to
[1052]269
[1856]270            bool bCreatedOneObject_;                                       //!< True if at least one object of the given type was created (used to determine the need of storing the parents)
[1747]271            bool bSetName_;                                                //!< True if the name is set
[5781]272            bool bLoadable_;                                               //!< False = it's not permitted to load the object through XML
[1052]273            std::string name_;                                             //!< The name of the class the Identifier belongs to
[5929]274            Factory* factory_;                                             //!< The Factory, able to create new objects of the given class (if available)
[1052]275            static int hierarchyCreatingCounter_s;                         //!< Bigger than zero if at least one Identifier stores its parents (its an int instead of a bool to avoid conflicts with multithreading)
[5781]276            uint32_t networkID_;                                           //!< The network ID to identify a class through the network
[3325]277            const unsigned int classID_;                                   //!< Uniquely identifies a class (might not be the same as the networkID_)
278            static unsigned int classIDCounter_s;                          //!< Static counter for the unique classIDs
[1052]279
280            bool bHasConfigValues_;                                        //!< True if this class has at least one assigned config value
281            std::map<std::string, ConfigValueContainer*> configValues_;    //!< A map to link the string of configurable variables with their ConfigValueContainer
[5781]282
283            std::map<std::string, XMLPortParamContainer*> xmlportParamContainers_;     //!< All loadable parameters
284            std::map<std::string, XMLPortObjectContainer*> xmlportObjectContainers_;   //!< All attachable objects
[790]285    };
286
[1052]287    _CoreExport std::ostream& operator<<(std::ostream& out, const std::set<const Identifier*>& list);
[790]288
[1052]289
[790]290    // ###############################
291    // ###     ClassIdentifier     ###
292    // ###############################
293    //! The ClassIdentifier is derived from Identifier and holds all class-specific functions and variables the Identifier cannot have.
294    /**
295        ClassIdentifier is a Singleton, which means that only one object of a given type T exists.
[5695]296        This makes it possible to store information about a class, sharing them with all
[1052]297        objects of that class without defining static variables in every class.
298
299        To be really sure that not more than exactly one object exists (even with libraries),
[1543]300        ClassIdentifiers are stored in the Identifier Singleton.
[790]301    */
302    template <class T>
303    class ClassIdentifier : public Identifier
[1052]304    {
[5781]305        #define SUPER_INTRUSIVE_DECLARATION_INCLUDE
306        #include "Super.h"
307
[790]308        public:
[5929]309            static ClassIdentifier<T>* getIdentifier();
310            static ClassIdentifier<T>* getIdentifier(const std::string& name);
[1052]311
[3325]312            bool initialiseObject(T* object, const std::string& className, bool bRootClass);
313
[1747]314            void updateConfigValues(bool updateChildren = true) const;
[1052]315
[790]316        private:
[2784]317            static void initialiseIdentifier();
[790]318            ClassIdentifier(const ClassIdentifier<T>& identifier) {}    // don't copy
[1747]319            ClassIdentifier()
320            {
[5781]321                SuperFunctionInitialization<0, T>::initialize(this);
[1747]322            }
323            ~ClassIdentifier()
324            {
[5781]325                SuperFunctionDestruction<0, T>::destroy(this);
[1747]326            }
[790]327
[1856]328            static ClassIdentifier<T>* classIdentifier_s;
[790]329    };
330
[1543]331    template <class T>
[2784]332    ClassIdentifier<T>* ClassIdentifier<T>::classIdentifier_s = 0;
[1543]333
[790]334    /**
[1747]335        @brief Returns the only instance of this class.
[1543]336        @return The unique Identifier
337    */
338    template <class T>
[3196]339    inline ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier()
[1543]340    {
[5929]341        // check if the Identifier already exists
342        if (!ClassIdentifier<T>::classIdentifier_s)
[2784]343            ClassIdentifier<T>::initialiseIdentifier();
[1543]344
345        return ClassIdentifier<T>::classIdentifier_s;
346    }
347
348    /**
[1747]349        @brief Does the same as getIdentifier() but sets the name if this wasn't done yet.
350        @param name The name of this Identifier
351        @return The Identifier
[790]352    */
353    template <class T>
[3196]354    inline ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier(const std::string& name)
[790]355    {
[1747]356        ClassIdentifier<T>* identifier = ClassIdentifier<T>::getIdentifier();
357        identifier->setName(name);
358        return identifier;
[790]359    }
360
361    /**
[2784]362        @brief Assigns the static field for the identifier singleton.
363    */
364    template <class T>
365    void ClassIdentifier<T>::initialiseIdentifier()
366    {
367        // Get the name of the class
[6417]368        const std::string& name = typeid(T).name();
[2784]369
370        // create a new identifier anyway. Will be deleted in Identifier::getIdentifier if not used.
371        ClassIdentifier<T>* proposal = new ClassIdentifier<T>();
372
373        // Get the entry from the map
374        ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*)Identifier::getIdentifierSingleton(name, proposal);
375
376        if (ClassIdentifier<T>::classIdentifier_s == proposal)
377        {
378            COUT(4) << "*** Identifier: Requested Identifier for " << name << " was not yet existing and got created." << std::endl;
379        }
380        else
381        {
382            COUT(4) << "*** Identifier: Requested Identifier for " << name << " was already existing and got assigned." << std::endl;
383        }
384    }
385
386    /**
[790]387        @brief Adds an object of the given type to the ObjectList.
388        @param object The object to add
[7297]389        @param className The name of the class T
390        @param bRootClass True if this is a root class (i.e. it inherits directly from OrxonoxClass)
[790]391    */
392    template <class T>
[3325]393    bool ClassIdentifier<T>::initialiseObject(T* object, const std::string& className, bool bRootClass)
[790]394    {
[3325]395        if (bRootClass)
396            COUT(5) << "*** Register Root-Object: " << className << std::endl;
397        else
398            COUT(5) << "*** Register Object: " << className << std::endl;
399
400        object->identifier_ = this;
401        if (Identifier::isCreatingHierarchy())
402        {
403            if (bRootClass && !object->parents_)
404                object->parents_ = new std::set<const Identifier*>();
405
406            if (object->parents_)
407            {
408                this->initializeClassHierarchy(object->parents_, bRootClass);
409                object->parents_->insert(object->parents_->end(), this);
410            }
411
412            object->setConfigValues();
413            return true;
414        }
415        else
416        {
417            COUT(5) << "*** ClassIdentifier: Added object to " << this->getName() << "-list." << std::endl;
418            object->metaList_->add(this->objects_, this->objects_->add(new ObjectListElement<T>(object)));
419
420            // Add pointer of type T to the map in the OrxonoxClass instance that enables "dynamic_casts"
[3333]421            object->objectPointers_.push_back(std::make_pair(this->getClassID(), static_cast<void*>(object)));
[3325]422            return false;
423        }
[790]424    }
425
426    /**
[1052]427        @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function.
[790]428    */
429    template <class T>
[1747]430    void ClassIdentifier<T>::updateConfigValues(bool updateChildren) const
[790]431    {
[1747]432        if (!this->hasConfigValues())
433            return;
[790]434
[1747]435        for (ObjectListIterator<T> it = ObjectList<T>::begin(); it; ++it)
436            it->setConfigValues();
[1052]437
[1747]438        if (updateChildren)
439            for (std::set<const Identifier*>::const_iterator it = this->getChildrenBegin(); it != this->getChildrenEnd(); ++it)
440                (*it)->updateConfigValues(false);
[1052]441    }
442
443
[790]444    // ###############################
[3325]445    // ###      orxonox_cast       ###
446    // ###############################
447    /**
448    @brief
449        Casts on object of type OrxonoxClass to any derived type that is
450        registered in the class hierarchy.
451    @return
452        Returns NULL if the cast is not possible
453    @note
454        In case of NULL return (and using MSVC), a dynamic_cast might still be possible if
455        a class forgot to register its objects.
456        Also note that the function is implemented differently for GCC/MSVC.
457    */
458    template <class T, class U>
[7271]459    FORCEINLINE T orxonox_cast(U* source)
[3325]460    {
[3332]461#ifdef ORXONOX_COMPILER_MSVC
[3333]462        typedef Loki::TypeTraits<typename Loki::TypeTraits<T>::PointeeType>::NonConstType ClassType;
[3370]463        if (source != NULL)
464            return source->template getDerivedPointer<ClassType>(ClassIdentifier<ClassType>::getIdentifier()->getClassID());
465        else
466            return NULL;
[3332]467#else
468        return dynamic_cast<T>(source);
469#endif
[3325]470    }
[790]471}
472
473#endif /* _Identifier_H__ */
Note: See TracBrowser for help on using the repository browser.