1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/*
SPDX-FileCopyrightText: 2011 Sven Brauch <svenbrauch@googlemail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef INDEXEDCONTAINER_H
#define INDEXEDCONTAINER_H
#include <language/duchain/types/structuretype.h>
#include <language/duchain/types/typesystemdata.h>
#include "types/unsuretype.h"
#include "pythonduchainexport.h"
using namespace KDevelop;
namespace Python {
KDEVPYTHONDUCHAIN_EXPORT DECLARE_LIST_MEMBER_HASH(IndexedContainerData, m_values, IndexedType)
class KDEVPYTHONDUCHAIN_EXPORT IndexedContainerData : public KDevelop::StructureTypeData
{
public:
/// Constructor
IndexedContainerData()
: KDevelop::StructureTypeData()
{
initializeAppendedLists(m_dynamic);
}
/// Copy constructor. \param rhs data to copy
IndexedContainerData( const IndexedContainerData& rhs )
: KDevelop::StructureTypeData(rhs)
{
initializeAppendedLists(m_dynamic);
copyListsFrom(rhs);
}
~IndexedContainerData() {
freeAppendedLists();
};
START_APPENDED_LISTS_BASE(IndexedContainerData, StructureTypeData)
APPENDED_LIST_FIRST(IndexedContainerData, IndexedType, m_values)
END_APPENDED_LISTS(IndexedContainerData, m_values)
};
class KDEVPYTHONDUCHAIN_EXPORT IndexedContainer : public KDevelop::StructureType
{
public:
typedef TypePtr<IndexedContainer> Ptr;
IndexedContainer();
IndexedContainer(const IndexedContainer& rhs);
IndexedContainer(IndexedContainerData& data);
void addEntry(AbstractType::Ptr typeToAdd);
AbstractType* clone() const override;
uint hash() const override;
int typesCount() const;
const IndexedType& typeAt(int index) const;
void replaceType(int index, AbstractType::Ptr newType);
AbstractType::Ptr asUnsureType() const;
QString toString() const override;
// "toString"s only the container type, not the content; used in declarationnavigationcontext to create
// separate links for the content and container type
// by keeping toString separate, it is possible to have a pretty type in unsure types etc. without additional
// efforts being necessary
QString containerToString() const;
bool equals(const AbstractType* rhs) const override;
enum {
// #warning check identity value (59)
Identity = 59
};
typedef IndexedContainerData Data;
protected:
TYPE_DECLARE_DATA(IndexedContainer);
};
}
#endif // INDEXEDCONTAINER_H
|