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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
/* This file is part of KDevelop
Copyright 2006 Hamish Rodda <rodda@kde.org>
Copyright 2007-2008 David Nolden <david.nolden.kdevelop@art-master.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KDEVPLATFORM_DECLARATION_H
#define KDEVPLATFORM_DECLARATION_H
#include <QList>
#include <QMap>
#include "types/abstracttype.h"
#include "duchainbase.h"
#include "instantiationinformation.h"
#include "identifier.h"
#include "indexeddeclaration.h"
class QByteArray;
namespace KDevelop {
class AbstractType;
class DUContext;
class IndexedString;
class DeclarationData;
class DeclarationId;
class Declaration;
class IndexedTopDUContext;
class TopDUContext;
/**
* \short Represents a single declaration in a definition-use chain.
*
* \note A du-context can be freely edited as long as it's parent-context is zero.
* In the moment the parent-context is set, the context may only be edited when it
* is allowed to edited it's top-level context (@see TopLevelContext::inDUChain())
*/
class KDEVPLATFORMLANGUAGE_EXPORT Declaration
: public DUChainBase
{
public:
/// Access types
enum AccessPolicy : quint8 {
Public /**< a public declaration */,
Protected /**< a protected declaration */,
Private /**< a private declaration */,
DefaultAccess /**<a declaration with default access; in java, only package-level access. */
};
/// Enumeration of the types of declarations
enum Kind : quint8 {
Type /**< A type is declared, like a class-declaration or function-declaration, or a typedef("class MyClass {};") */,
Instance /**< An instance of a type is declared("MyClass m;") */,
NamespaceAlias /**< This is a namespace-alias. You can safely cast this object to NamespaceAliasDeclaration. */,
Alias, /**<This is an alias-declaration. You can safely cast this object to AliasDeclaration. */
Namespace, /**< Declaration of a namespace. */
Import, /**< Declaration marks the Import of a file. */
Macro /**< Declaration of a macro such as "#define FOO 1". */
};
/**
* Constructor.
*
* If \a parentContext is in the symbol table, the declaration will automatically
* be added into the symbol table.
*
* \param range range of the alias declaration's identifier
* \param parentContext context in which this declaration occurred
* */
Declaration(const RangeInRevision& range, DUContext* parentContext);
///Copy-constructor for cloning
Declaration(const Declaration& rhs);
/// Destructor
~Declaration() override;
/// Uses the given data
explicit Declaration(DeclarationData& dd);
Declaration& operator=(const Declaration& rhs) = delete;
TopDUContext* topContext() const override;
/**
* Determine whether this declaration is a forward declaration.
*
* \returns true if this is a forward declaration, otherwise returns false.
*/
virtual bool isForwardDeclaration() const;
/**
* Determine whether this declaration is a function declaration.
*
* \returns true if this is a function declaration, otherwise returns false.
*/
virtual bool isFunctionDeclaration() const;
/**
* Determine whether this declaration is accessible through the du-chain.
* If it is, it cannot be edited without holding the du-chain write lock.
*
* \sa DUChain::lock()
* \sa DUChainWriteLocker
*
* \returns true if the Declaration is already inserted into a duchain.
*/
virtual bool inDUChain() const;
/**
* Determine whether this declaration is also a definition.
*
* \returns true if this declaration is also a definition, otherwise false.
*/
bool isDefinition() const;
/**
* Set whether this declaration is also a definition.
*
* \param dd set this to true if this declaration is also a definition, otherwise false.
*/
void setDeclarationIsDefinition(bool dd);
/**
* Determine if this declaration is a type-alias (in c++ typedef).
*
* \returns true if the declaration is a type alias, otherwise false.
*/
bool isTypeAlias() const;
/**
* Set whether this declaration is a type alias.
*
* \param typeAlias true if the declaration is a type alias, otherwise false.
*/
void setIsTypeAlias(bool typeAlias);
/**
* Determine whether the declaration is deprecated.
*/
bool isDeprecated() const;
/**
* Set whether the declaration is deprecated.
*
* \param deprecated true if the declaration is deprecated, otherwise false.
*/
void setDeprecated(bool deprecated);
/**
* Changes whether this declaration must be direct in all cases or not.
*
* By default this is set to false.
*
* \param direct true to force direct, false otherwise.
*/
void setAlwaysForceDirect(bool direct);
/**
* Determine whether this declaration must always be direct.
*/
bool alwaysForceDirect() const;
/**
* Changes whether this declaration is "implicitly created".
*
* An implicit declaration is not declared in the class context,
* but written somewhere else outside.
*
* Declarations are by default not implicitly declared.
*
* \param _auto true for implicit, false for default behaviour
*/
void setAutoDeclaration(bool _auto);
/**
* Determine whether this declaration is implicitly created or not.
*/
bool isAutoDeclaration() const;
/**
* Changes whether this declaration is "explicitly deleted", i.e. not implicitly declared or accessible.
*
* \param deleted true for deleted, false for default behaviour
* */
void setExplicitlyDeleted(bool deleted);
/**
* Determine whether this declaration is "explicitly deleted" or not.
*/
bool isExplicitlyDeleted() const;
/**
* Changes whether this declaration is explicitly typed.
*
* Explicitly typed declaration has the type written as part of the
* declaration. The opposite, implicitly typed declaration, has the type
* deduced by the compiler.
*
* E.g. in C++ variable declarations are explicitly typed unless the "auto"
* keyword is used.
*
* \param explicitlyTyped true for explicitly typed, false for implicitly typed
*/
void setExplicitlyTyped(bool explicitlyTyped);
/**
* Determine whether this declaration is explicitly typed.
*/
bool isExplicitlyTyped() const;
/**
* Retrieve the declaration which is specialized with the given
* \a specialization index as seen from \a topContext.
*
* \param specialization the specialization index (see DeclarationId)
* \param topContext the top context representing the perspective from which to specialize.
* if @p topContext is zero, only already existing specializations are returned,
* and if none exists, zero is returned.
* \param upDistance upwards distance in the context-structure of the
* given specialization-info. This allows specializing children.
*/
virtual Declaration* specialize(const IndexedInstantiationInformation& specialization,
const TopDUContext* topContext, int upDistance = 0);
/**
* Retrieve the context that is opened by this declaration, if one exists.
*
* For example, a class will have a declaration which is contained within the context in which
* it is declared, and a new context will be created to hold class members. This function returns
* that context.
* The declaration has to be part of the same top-context.
*
* \returns the internal context for this declaration or, if none exists, nullptr
*/
DUContext* internalContext() const;
/**
* Set the internal \a context for this declaration.
*
* \param context the internal context
*/
void setInternalContext(DUContext* context);
/**
* Determine the logical internal context for the resolved form of this declaration.
*
* \li If this declaration has a definition, and the definition is resolved,
* it returns the internal context of the definition.
* \li If this declaration is a forward-declaration, the forward-declaration is
* resolved, it returns the internal context of the resolved declaration.
* \li If this is a type-alias, it returns the internal context of the actual type.
* \li Otherwise, it returns the same as internalContext().
*
* \param topContext Needed to resolve forward-declarations.
* \returns the resolved internal context, as described above
*/
virtual DUContext* logicalInternalContext(const TopDUContext* topContext) const;
/**
* This is a convenience function to determine the resolved declaration, if this is a forward declaration.
* Otherwise, it just returns this declaration.
* \param topContext Context within which to search for the resolved declaration.
* \returns the resolved declaration if one was found, otherwise this declaration.
* */
const Declaration* logicalDeclaration(const TopDUContext* topContext) const;
/// \copydoc
Declaration* logicalDeclaration(const TopDUContext* topContext);
/**
* Access the parent context of this declaration.
* \returns the parent context of this declaration.
*/
DUContext* context() const;
/**
* Set the context in which this declaration occurs.
*
* When setContext() is called, this declaration is inserted into the given context.
* You only need to be able to write this declaration. You do not need write-privileges
* for the context, because addDeclaration(..) works separately to that.
*
* If the given context is not in the symbol-table, or if the declaration is inserted anonymously,
* or if the context is zero, this declaration is removed from the symbol-table.
* Else it is added to the symbol table with the new scope. See TopDUContext for information
* about the symbol table.
*
* \param context New context which contains this declaration. The context must have a
* top-context if it is not zero.
* \param anonymous If this is set, this declaration will be added anonymously into the parent-context.
* This way it can never be found through any of the context's functions, and will
* not be deleted when the context is deleted, so it must be deleted from elsewhere.
*/
void setContext(DUContext* context, bool anonymous = false);
/**
* Convenience function to return this declaration's type dynamically casted to \a T.
*
* \returns this declaration's type as \a T, or null if there is no type or it is not of type \a T.
*/
template <class T>
TypePtr<T> type() const { return TypePtr<T>::dynamicCast(abstractType()); }
/**
* Access this declaration's type.
*
* \note You should not compare or permanently store instances of AbstractType::Ptr. Use IndexedType instead.
* \returns this declaration's type, or null if none has been assigned.
*/
AbstractType::Ptr abstractType() const;
/**
* Set this declaration's type.
*
* \param type the type to assign.
*/
template <class T>
void setType(TypePtr<T> type) { setAbstractType(AbstractType::Ptr::staticCast(type)); }
/**
* Set this declaration's \a type.
*
* \param type this declaration's new type.
*/
virtual void setAbstractType(AbstractType::Ptr type);
/**
* Return an indexed form of this declaration's type.
* Should be preferred, this is the fastest way, and the correct way for doing equality-comparison.
*
* \returns the declaration's type.
*/
IndexedType indexedType() const;
/**
* Set this declaration's \a identifier.
*
* \param identifier this declaration's new identifier
*/
void setIdentifier(const Identifier& identifier);
/**
* Access this declaration's \a identifier.
*
* \returns this declaration's identifier.
*/
Identifier identifier() const;
/**
* Access this declaration's \a identifier.
*
* \return this declaration's identifier in indexed form. This is faster than identifier(), because it
* equals the internal representation. Use this for example to do equality-comparison.
*/
const IndexedIdentifier& indexedIdentifier() const;
/**
* Determine the global qualified identifier of this declaration.
*
* \note This function is expensive, equalQualifiedIdentifier() is preferred if you
* just want to compare equality.
*/
QualifiedIdentifier qualifiedIdentifier() const;
/**
* Compares the qualified identifier of this declaration with the other one, without needing to compute it.
* This is more efficient than comparing the results of qualifiedIdentifier().
*
* \param rhs declaration to compare identifiers with
* \returns true if the identifiers are equal, otherwise false.
*/
bool equalQualifiedIdentifier(const Declaration* rhs) const;
/**
* Returns the kind of this declaration. @see Kind
*/
Kind kind() const;
/**
* Set the kind.
*
* \param kind new kind
*/
void setKind(Kind kind);
/**
* Returns the comment associated to this declaration in the source-code,
* or an invalid string if there is none.
*
* Stored in utf-8 encoding.
*/
QByteArray comment() const;
/**
* Sets the comment for this declaration.
*
* @note Should be utf-8 encoded.
*/
void setComment(const QByteArray& str);
/**
* Sets the comment for this declaration.
*/
void setComment(const QString& str);
/**
* Access whether this declaration is in the symbol table.
*
* \returns true if this declaration is in the symbol table, otherwise false.
*/
bool inSymbolTable() const;
/**
* Adds or removes this declaration to/from the symbol table.
*
* \param inSymbolTable true to add this declaration to the symbol table, false to remove it.
*/
virtual void setInSymbolTable(bool inSymbolTable);
/**
* Equivalence operator.
*
* \param other Other declaration to compare.
* \returns true if the declarations are equal, otherwise false.
*/
bool operator==(const Declaration& other) const;
/**
* Determine this declaration as a string. \returns this declaration as a string.
*/
virtual QString toString() const;
/**
* Returns a map of files to use-ranges.
*
* The key of the returned map is an url of a file. The value
* is a list with all use-ranges of this declaration in that file.
*
* \note The ranges are in the documents local revision,
* use \c DUChainUtils::transformFromRevision or \c usesCurrentRevision()
*
* \note The uses are unique, no 2 uses are returned that have the same range within the same file.
*
* \note This is a non-trivial operation and hence expensive.
*/
QMap<IndexedString, QVector<RangeInRevision>> uses() const;
/**
* Determines whether the declaration has any uses or not.
*
* Cheaper than calling uses().
*/
bool hasUses() const;
/**
* Returns a map of files to use-ranges.
*
* The key of the returned map is an url of a file. The value
* is a list with all use-ranges of this declaration in that file.
*
* \note The uses are unique, no 2 uses are returned that have the same range within the same file.
*
* \warning This must be called only from within the foreground, or with the foreground lock locked.
*
* \note This is a non-trivial operation and hence expensive.
*/
QMap<IndexedString, QVector<KTextEditor::Range>> usesCurrentRevision() const;
/**
* This hash-value should differentiate between multiple different
* declarations that have the same qualifiedIdentifier, but should have a different
* identity, and thus own Definitions and own Uses assigned.
*
* Affected by function-arguments, whether this is a template-declaration, etc..
*/
virtual uint additionalIdentity() const;
/**
* TODO document
* */
virtual IndexedInstantiationInformation specialization() const;
/**
* \see DeclarationId
*
* \param forceDirect When this is true, the DeclarationId is force to be direct,
* and can be resolved without a symbol-table and top-context.
* The same goes for Declarations that have \c alwaysForceDirect()
* set to true.
*/
virtual DeclarationId id(bool forceDirect = false) const;
/**
* Returns an index that uniquely identifies this declaration within its surrounding top-context.
*
* That index can be passed to \c TopDUContext::declarationFromIndex(index) to get the declaration.
* This is only valid when the declaration is not a specialization (\c specialization() returns 0),
* and if it is not anonymous in its context.
*
* \note for this to be valid, allocateOwnIndex() must have been called first.
* \note the highest big of the index is always zero!
* \returns the index of the declaration within its TopDUContext.
*/
uint ownIndex() const;
/**
* Whether this declaration has been inserted anonymously into its parent-context
*/
bool isAnonymous() const;
/**
* Clear the index for this declaration in the top context that was allocated with allocateOwnIndex().
*/
void clearOwnIndex();
/**
* Create an index to this declaration from the topContext(). Needed to be able to retrieve ownIndex().
*/
void allocateOwnIndex();
/**
* Returns a clone of this declaration, with the difference that the returned declaration
* has no context set, i.e. \c context() returns zero.
*
* The declaration will not be registered anywhere, so you must care about its deletion.
*
* This declaration's text-range will be referenced from the clone, so the clone must not
* live longer than the original.
*/
Declaration* clone() const;
/**
* Signalized that among multiple possible specializations, this one should be used in the UI from now on.
*
* Currently mainly used in C++ for template support. The default-implementation registers the current
* specialization of this declaration to SpecializationStore if it is nonzero.
*/
virtual void activateSpecialization();
enum {
Identity = 7
};
protected:
/**
* Constructor for copy constructors in subclasses.
*
* \param dd data to copy.
* \param range text range which this object covers.
*/
Declaration(DeclarationData& dd, const RangeInRevision& range);
/**
* Returns true if this declaration is being currently destroyed persistently,
* which means that it should eventually deregister itself from persistent storage facilities.
*
* Only call this from destructors.
*/
bool persistentlyDestroying() const;
DUCHAIN_DECLARE_DATA(Declaration)
private:
/**
* Sub-classes should implement this and should copy as much information into the clone as possible without breaking the du-chain.
* Sub-classes should also implement a public copy-constructor that can be used for cloning by sub-classes.
*
* \note You do not have to implement this for your language if you are not going to use it(the du-chain itself does not and should not depend on it).
* */
virtual Declaration* clonePrivate() const;
void updateCodeModel();
void rebuildDynamicData(DUContext* parent, uint ownIndex) override;
friend class DUContext;
friend class IndexedDeclaration;
friend class LocalIndexedDeclaration;
friend class TopDUContextDynamicData;
DUContext* m_context = nullptr;
TopDUContext* m_topContext = nullptr;
int m_indexInTopContext = 0;
};
}
#endif // KDEVPLATFORM_DECLARATION_H
|