-
Notifications
You must be signed in to change notification settings - Fork 73
Add an api implementation #746
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gcampbell-msft
wants to merge
6
commits into
main
Choose a base branch
from
dev/gcampbell/AddApi
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9a42915
implement a version of the MakefileTools api
gcampbell-msft 62810a7
slightly modify name
gcampbell-msft 968dc39
add api telemetry
gcampbell-msft a512b9e
update parameter for logApiTelemetry
gcampbell-msft 7f792cb
use exitCode instead of result, also correct method call
gcampbell-msft 264b914
use setImmediate to let all cancellation listeners happen. This works…
gcampbell-msft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| import * as api from "vscode-makefile-tools-api"; | ||
| import * as vscode from "vscode"; | ||
| import * as make from "./make"; | ||
| import { getTargets } from "./configuration"; | ||
| import { logEvent } from "./telemetry"; | ||
|
|
||
| export class MakefileToolsApiImpl implements api.MakefileToolsApi { | ||
| constructor(public version: api.Version = api.Version.v1) { | ||
| } | ||
|
|
||
| build(target?: string, clean?: boolean, cancellationToken?: vscode.CancellationToken): Promise<api.CommandResult> { | ||
| logApiTelemetry("build", this.version); | ||
| return make.buildTarget(make.TriggeredBy.api, target ?? "", clean ?? false, cancellationToken); | ||
| } | ||
| clean(cancellationToken: vscode.CancellationToken): Promise<api.CommandResult> { | ||
| logApiTelemetry("clean", this.version); | ||
| return make.buildTarget(make.TriggeredBy.api, "clean", false, cancellationToken); | ||
| } | ||
| async listBuildTargets(): Promise<string[] | undefined> { | ||
| logApiTelemetry("listBuildTargets", this.version); | ||
| return getTargets(); | ||
| } | ||
| } | ||
|
|
||
| function logApiTelemetry(method: string, version: api.Version): void { | ||
| logEvent("api", { | ||
| method: method, | ||
| version: version.toString(), | ||
| }); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| import * as vscode from 'vscode'; | ||
| import * as util from '../util'; | ||
| import { getCurPID } from '../make'; | ||
|
|
||
| abstract class CommandConsumer { | ||
| output(line: string): void { | ||
| this._stdout.push(line); | ||
| } | ||
| error(error: string): void { | ||
| this._stderr.push(error); | ||
| } | ||
| get stdout() { | ||
| return this._stdout.join('\n'); | ||
| } | ||
| protected readonly _stdout = new Array<string>(); | ||
|
|
||
| get stderr() { | ||
| return this._stderr.join('\n'); | ||
| } | ||
| protected readonly _stderr = new Array<string>(); | ||
| } | ||
|
|
||
| const endOfLine: string = "\r\n"; | ||
|
|
||
| export class CustomBuildTaskTerminal extends CommandConsumer implements vscode.Pseudoterminal { | ||
|
|
||
| constructor(private command: string, private args: string[], private cwd: string, private env?: { [key: string]: string }) { | ||
| super(); | ||
| } | ||
|
|
||
| private writeEmitter = new vscode.EventEmitter<string>(); | ||
| private closeEmitter = new vscode.EventEmitter<number>(); | ||
| public get onDidWrite(): vscode.Event<string> { | ||
| return this.writeEmitter.event; | ||
| } | ||
| public get onDidClose(): vscode.Event<number> { | ||
| return this.closeEmitter.event; | ||
| } | ||
|
|
||
| override output(line: string): void { | ||
| this.writeEmitter.fire(line + endOfLine); | ||
| super.output(line); | ||
| } | ||
|
|
||
| override error(error: string): void { | ||
| this.writeEmitter.fire(error + endOfLine); | ||
| super.error(error); | ||
| } | ||
|
|
||
| private _process: util.SpawnProcess | undefined; | ||
| async open(_initialDimensions: vscode.TerminalDimensions | undefined): Promise<void> { | ||
| this._process = util.spawnChildProcess( | ||
| this.command, | ||
| this.args, | ||
| { | ||
| workingDirectory: this.cwd, | ||
| stdoutCallback: (line: string) => this.output(line), | ||
| stderrCallback: (error: string) => this.error(error), | ||
| env: this.env | ||
| } | ||
| ) | ||
| const res: util.SpawnProcessResult = await this._process.result; | ||
| this.closeEmitter.fire(res.returnCode); | ||
| } | ||
| async close(): Promise<void> { | ||
| if (this._process) { | ||
| if (this._process.child) { | ||
| await util.killTree(getCurPID()); | ||
| } | ||
| this._process = undefined; | ||
| } | ||
| } | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
build and tests will fail until this is updated after api is published