| 1 | // Copyright (C) 2023 The Qt Company Ltd. | 
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only | 
| 3 | |
| 4 | #include "qqmlgototypedefinitionsupport_p.h" | 
| 5 | #include "qqmllsutils_p.h" | 
| 6 | #include <QtLanguageServer/private/qlanguageserverspectypes_p.h> | 
| 7 | #include <QtQmlDom/private/qqmldomexternalitems_p.h> | 
| 8 | #include <QtQmlDom/private/qqmldomtop_p.h> | 
| 9 | |
| 10 | QT_BEGIN_NAMESPACE | 
| 11 | |
| 12 | using namespace Qt::StringLiterals; | 
| 13 | |
| 14 | QmlGoToTypeDefinitionSupport::QmlGoToTypeDefinitionSupport(QmlLsp::QQmlCodeModel *codeModel) | 
| 15 | : BaseT(codeModel) | 
| 16 | { | 
| 17 | } | 
| 18 | |
| 19 | QString QmlGoToTypeDefinitionSupport::name() const | 
| 20 | { | 
| 21 |     return u"QmlNavigationSupport"_s;  | 
| 22 | } | 
| 23 | |
| 24 | void QmlGoToTypeDefinitionSupport::setupCapabilities( | 
| 25 | const QLspSpecification::InitializeParams &, | 
| 26 | QLspSpecification::InitializeResult &serverCapabilities) | 
| 27 | { | 
| 28 | // just assume serverCapabilities.capabilities.typeDefinitionProvider is a bool for now | 
| 29 | // handle the TypeDefinitionOptions and TypeDefinitionRegistrationOptions cases later on, if | 
| 30 | // needed (as they just allow more fancy go-to-type-definition action). | 
| 31 | serverCapabilities.capabilities.typeDefinitionProvider = true; | 
| 32 | } | 
| 33 | |
| 34 | void QmlGoToTypeDefinitionSupport::registerHandlers(QLanguageServer *, | 
| 35 | QLanguageServerProtocol *protocol) | 
| 36 | { | 
| 37 | protocol->registerTypeDefinitionRequestHandler(handler: getRequestHandler()); | 
| 38 | } | 
| 39 | |
| 40 | void QmlGoToTypeDefinitionSupport::process(RequestPointerArgument request) | 
| 41 | { | 
| 42 | QList<QLspSpecification::Location> results; | 
| 43 | ResponseScopeGuard guard(results, request->m_response); | 
| 44 | |
| 45 | auto itemsFound = itemsForRequest(request); | 
| 46 | if (guard.setErrorFrom(itemsFound)) | 
| 47 | return; | 
| 48 | |
| 49 | auto &front = std::get<QList<QQmlLSUtils::ItemLocation>>(v&: itemsFound).front(); | 
| 50 | |
| 51 | auto base = QQmlLSUtils::findTypeDefinitionOf(item: front.domItem); | 
| 52 | |
| 53 | if (!base) { | 
| 54 |         qDebug() << u"Could not obtain the base from the item"_s;  | 
| 55 | return; | 
| 56 | } | 
| 57 | |
| 58 | QLspSpecification::Location l; | 
| 59 | l.uri = QUrl::fromLocalFile(localfile: base->filename()).toEncoded(); | 
| 60 | l.range = QQmlLSUtils::qmlLocationToLspLocation(qmlLocation: *base); | 
| 61 | |
| 62 | results.append(t: l); | 
| 63 | } | 
| 64 | |
| 65 | QT_END_NAMESPACE | 
| 66 | 
