-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathrunModel.ts
More file actions
261 lines (237 loc) · 7.81 KB
/
runModel.ts
File metadata and controls
261 lines (237 loc) · 7.81 KB
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
import path = require("path");
import { RunModelType } from "@altimateai/dbt-integration";
import { Uri, window } from "vscode";
import { GenerateModelFromSourceParams } from "../code_lens_provider/sourceModelCreationCodeLensProvider";
import { DBTProjectContainer } from "../dbt_client/dbtProjectContainer";
import { toProjectQuickPickItem } from "../quickpick/projectQuickPick";
import { QueryManifestService } from "../services/queryManifestService";
import { NodeTreeItem } from "../treeview_provider/modelTreeviewProvider";
import { extendErrorWithSupportLinks } from "../utils";
export class RunModel {
constructor(
private dbtProjectContainer: DBTProjectContainer,
private queryManifestService: QueryManifestService,
) {}
runModelOnActiveWindow(type?: RunModelType) {
if (!window.activeTextEditor) {
return;
}
const fullPath = window.activeTextEditor.document.uri;
this.runDBTModel(fullPath, type);
}
buildModelOnActiveWindow(type?: RunModelType) {
if (!window.activeTextEditor) {
return;
}
const fullPath = window.activeTextEditor.document.uri;
this.buildDBTModel(fullPath, type);
}
runTestsOnActiveWindow() {
if (!window.activeTextEditor) {
return;
}
const fullPath = window.activeTextEditor.document.uri;
this.runDBTModelTest(fullPath);
}
compileModelOnActiveWindow() {
if (!window.activeTextEditor) {
return;
}
const fullPath = window.activeTextEditor.document.uri;
this.compileDBTModel(fullPath);
}
async compileQueryOnActiveWindow() {
if (!window.activeTextEditor) {
return;
}
const fullPath = window.activeTextEditor.document.uri;
if (fullPath.scheme === "untitled") {
const resolved = await this.ensureProjectForUntitledUri();
if (!resolved) {
return;
}
}
const query = window.activeTextEditor.document.getText();
if (query !== undefined) {
this.compileDBTQuery(fullPath, query);
}
}
/**
* Ensures a dbt project is stored in workspace state for untitled files.
* If no project is stored yet — or the stored project is stale (removed
* between sessions) — falls back to getOrPickProjectFromWorkspace() which
* auto-selects the single project or prompts the user to pick one.
* Returns true if a project is available, false if the user cancelled or
* no projects exist.
*/
private async ensureProjectForUntitledUri(): Promise<boolean> {
const selectedProject = this.dbtProjectContainer.getFromWorkspaceState(
"dbtPowerUser.projectSelected",
);
if (selectedProject?.uri) {
// Validate the stored project still exists in the workspace
const raw = selectedProject.uri;
// Workspace state deserializes Uri as a plain object — .fsPath is a
// getter on the Uri prototype and won't survive, so use .path.
const storedUri = Uri.file(raw.path);
if (this.dbtProjectContainer.findDBTProject(storedUri)) {
return true;
}
// Stale — clear it and fall through to re-pick
this.dbtProjectContainer.setToWorkspaceState(
"dbtPowerUser.projectSelected",
undefined,
);
}
const project =
await this.queryManifestService.getOrPickProjectFromWorkspace();
if (!project) {
window.showErrorMessage("Unable to find dbt project for this query.");
return false;
}
this.dbtProjectContainer.setToWorkspaceState(
"dbtPowerUser.projectSelected",
toProjectQuickPickItem(project),
);
return true;
}
private getQuery() {
if (!window.activeTextEditor) {
return;
}
const cursor = window.activeTextEditor.selection;
return window.activeTextEditor.document.getText(
cursor.isEmpty ? undefined : cursor,
);
}
async executeQueryOnActiveWindow() {
const query = this.getQuery();
if (query === undefined) {
return;
}
const modelPath = window.activeTextEditor?.document.uri;
if (!modelPath) {
return;
}
if (modelPath.scheme === "untitled") {
const resolved = await this.ensureProjectForUntitledUri();
if (!resolved) {
return;
}
}
const modelName =
modelPath.scheme === "untitled"
? "untitled"
: path.basename(modelPath.fsPath, ".sql");
this.executeSQL(modelPath, query, modelName);
}
runModelOnNodeTreeItem(type: RunModelType) {
return (model?: NodeTreeItem) => {
if (model === undefined) {
this.runModelOnActiveWindow(type);
return;
}
if (!model.url) {
return;
}
switch (type) {
case RunModelType.TEST: {
if (model.label) {
this.runDBTTest(
Uri.file(model.url),
model.label.toString().split(".")[0],
);
}
break;
}
case RunModelType.BUILD_CHILDREN:
case RunModelType.BUILD_CHILDREN_PARENTS:
case RunModelType.BUILD_PARENTS: {
// Catch Parents || Children RunTypes
this.buildDBTModel(Uri.file(model.url), type);
break;
}
case RunModelType.RUN_CHILDREN:
case RunModelType.RUN_PARENTS: {
// Catch Parents || Children RunTypes
this.runDBTModel(Uri.file(model.url), type);
break;
}
}
};
}
showCompiledSQLOnActiveWindow() {
const fullPath = window.activeTextEditor?.document.uri;
if (fullPath !== undefined) {
this.showCompiledSQL(fullPath);
}
}
generateSchemaYMLOnActiveWindow() {
const fullPath = window.activeTextEditor?.document.uri;
if (fullPath !== undefined) {
this.generateSchemaYML(fullPath);
}
}
showRunSQLOnActiveWindow() {
const fullPath = window.activeTextEditor?.document.uri;
if (fullPath !== undefined) {
this.showRunSQL(fullPath);
}
}
generateDBTDocsOnActiveWindow() {
const fullPath = window.activeTextEditor?.document.uri;
if (fullPath !== undefined) {
this.generateDBTDocs(fullPath);
}
}
runDBTModel(modelPath: Uri, type?: RunModelType) {
this.dbtProjectContainer.runModel(modelPath, type);
}
buildDBTModel(modelPath: Uri, type?: RunModelType) {
this.dbtProjectContainer.buildModel(modelPath, type);
}
compileDBTModel(modelPath: Uri, type?: RunModelType) {
this.dbtProjectContainer.compileModel(modelPath, type);
}
generateDBTDocs(modelPath: Uri, type?: RunModelType) {
this.dbtProjectContainer.generateDocs(modelPath);
}
compileDBTQuery(modelPath: Uri, query: string) {
this.dbtProjectContainer.compileQuery(modelPath, query);
}
runDBTTest(modelPath: Uri, testName: string) {
this.dbtProjectContainer.runTest(modelPath, testName);
}
runDBTModelTest(modelPath: Uri) {
const modelName = path.basename(modelPath.fsPath, ".sql");
this.dbtProjectContainer.runModelTest(modelPath, modelName);
}
async executeSQL(uri: Uri, query: string, modelName: string) {
this.dbtProjectContainer.executeSQL(uri, query, modelName);
}
showCompiledSQL(modelPath: Uri) {
this.dbtProjectContainer.showCompiledSQL(modelPath);
}
generateSchemaYML(modelPath: Uri) {
const modelName = path.basename(modelPath.fsPath, ".sql");
this.dbtProjectContainer.generateSchemaYML(modelPath, modelName);
}
showRunSQL(modelPath: Uri) {
this.dbtProjectContainer.showRunSQL(modelPath);
}
createModelBasedonSourceConfig(params: GenerateModelFromSourceParams) {
const project = this.dbtProjectContainer.findDBTProject(params.currentDoc);
const sourcePath = path.dirname(params.currentDoc.fsPath);
if (project) {
project.generateModel(params.sourceName, params.tableName, sourcePath);
} else {
window.showErrorMessage(
extendErrorWithSupportLinks(
"Could not generate model! No project found for " +
params.currentDoc.fsPath +
".",
),
);
}
}
}