23
23
#include < QNetworkAccessManager>
24
24
#include < QNetworkReply>
25
25
26
- #include < texteditor/textdocument.h>
27
-
28
26
#include " CodeHandler.hpp"
29
27
#include " context/ContextManager.hpp"
30
28
#include " context/DocumentContextReader.hpp"
@@ -44,12 +42,14 @@ LLMClientInterface::LLMClientInterface(
44
42
LLMCore::IProviderRegistry &providerRegistry,
45
43
LLMCore::IPromptProvider *promptProvider,
46
44
LLMCore::RequestHandlerBase &requestHandler,
45
+ Context::IDocumentReader &documentReader,
47
46
IRequestPerformanceLogger &performanceLogger)
48
47
: m_generalSettings(generalSettings)
49
48
, m_completeSettings(completeSettings)
50
49
, m_providerRegistry(providerRegistry)
51
50
, m_promptProvider(promptProvider)
52
51
, m_requestHandler(requestHandler)
52
+ , m_documentReader(documentReader)
53
53
, m_performanceLogger(performanceLogger)
54
54
{
55
55
connect (
@@ -261,12 +261,10 @@ LLMCore::ContextData LLMClientInterface::prepareContext(
261
261
QJsonObject params = request[" params" ].toObject ();
262
262
QJsonObject doc = params[" doc" ].toObject ();
263
263
QJsonObject position = doc[" position" ].toObject ();
264
-
265
264
auto filePath = Context::extractFilePathFromRequest (request);
266
- TextEditor::TextDocument *textDocument = TextEditor::TextDocument::textDocumentForFilePath (
267
- Utils::FilePath::fromString (filePath));
268
265
269
- if (!textDocument) {
266
+ auto documentInfo = m_documentReader.readDocument (filePath);
267
+ if (!documentInfo.document ) {
270
268
LOG_MESSAGE (" Error: Document is not available for" + filePath);
271
269
return LLMCore::ContextData{};
272
270
}
@@ -275,7 +273,7 @@ LLMCore::ContextData LLMClientInterface::prepareContext(
275
273
int lineNumber = position[" line" ].toInt ();
276
274
277
275
Context::DocumentContextReader
278
- reader (textDocument-> document (), textDocument-> mimeType (), filePath);
276
+ reader (documentInfo. document , documentInfo. mimeType , documentInfo. filePath );
279
277
return reader.prepareContext (lineNumber, cursorPosition, m_completeSettings);
280
278
}
281
279
0 commit comments