mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-06-07 04:36:33 +00:00
109 lines
4.0 KiB
TypeScript
109 lines
4.0 KiB
TypeScript
import { inject, injectable } from 'inversify';
|
|
import { OutputChannelManager } from '@theia/output/lib/common/output-channel';
|
|
import { CoreService } from '../../common/protocol';
|
|
import { ArduinoMenus } from '../menu/arduino-menus';
|
|
import { ArduinoToolbar } from '../toolbar/arduino-toolbar';
|
|
import { BoardsDataStore } from '../boards/boards-data-store';
|
|
import { BoardsServiceProvider } from '../boards/boards-service-provider';
|
|
import { SketchContribution, Command, CommandRegistry, MenuModelRegistry, KeybindingRegistry, TabBarToolbarRegistry } from './contribution';
|
|
|
|
@injectable()
|
|
export class VerifySketch extends SketchContribution {
|
|
|
|
@inject(CoreService)
|
|
protected readonly coreService: CoreService;
|
|
|
|
@inject(BoardsDataStore)
|
|
protected readonly boardsDataStore: BoardsDataStore;
|
|
|
|
@inject(BoardsServiceProvider)
|
|
protected readonly boardsServiceClientImpl: BoardsServiceProvider;
|
|
|
|
@inject(OutputChannelManager)
|
|
protected readonly outputChannelManager: OutputChannelManager;
|
|
|
|
registerCommands(registry: CommandRegistry): void {
|
|
registry.registerCommand(VerifySketch.Commands.VERIFY_SKETCH, {
|
|
execute: () => this.verifySketch()
|
|
});
|
|
registry.registerCommand(VerifySketch.Commands.EXPORT_BINARIES, {
|
|
execute: () => this.verifySketch(true)
|
|
});
|
|
registry.registerCommand(VerifySketch.Commands.VERIFY_SKETCH_TOOLBAR, {
|
|
isVisible: widget => ArduinoToolbar.is(widget) && widget.side === 'left',
|
|
execute: () => registry.executeCommand(VerifySketch.Commands.VERIFY_SKETCH.id)
|
|
});
|
|
}
|
|
|
|
registerMenus(registry: MenuModelRegistry): void {
|
|
registry.registerMenuAction(ArduinoMenus.SKETCH__MAIN_GROUP, {
|
|
commandId: VerifySketch.Commands.VERIFY_SKETCH.id,
|
|
label: 'Verify/Compile',
|
|
order: '0'
|
|
});
|
|
registry.registerMenuAction(ArduinoMenus.SKETCH__MAIN_GROUP, {
|
|
commandId: VerifySketch.Commands.EXPORT_BINARIES.id,
|
|
label: 'Export compiled Binary',
|
|
order: '3'
|
|
});
|
|
}
|
|
|
|
registerKeybindings(registry: KeybindingRegistry): void {
|
|
registry.registerKeybinding({
|
|
command: VerifySketch.Commands.VERIFY_SKETCH.id,
|
|
keybinding: 'CtrlCmd+R'
|
|
});
|
|
registry.registerKeybinding({
|
|
command: VerifySketch.Commands.EXPORT_BINARIES.id,
|
|
keybinding: 'CtrlCmd+Alt+S'
|
|
});
|
|
}
|
|
|
|
registerToolbarItems(registry: TabBarToolbarRegistry): void {
|
|
registry.registerItem({
|
|
id: VerifySketch.Commands.VERIFY_SKETCH_TOOLBAR.id,
|
|
command: VerifySketch.Commands.VERIFY_SKETCH_TOOLBAR.id,
|
|
tooltip: 'Verify',
|
|
priority: 0
|
|
});
|
|
}
|
|
|
|
async verifySketch(exportBinaries: boolean = false): Promise<void> {
|
|
const uri = await this.sketchServiceClient.currentSketchFile();
|
|
if (!uri) {
|
|
return;
|
|
}
|
|
try {
|
|
const { boardsConfig } = this.boardsServiceClientImpl;
|
|
const fqbn = await this.boardsDataStore.appendConfigToFqbn(boardsConfig.selectedBoard?.fqbn);
|
|
const verbose = this.preferences.get('arduino.compile.verbose');
|
|
this.outputChannelManager.getChannel('Arduino: compile').clear();
|
|
await this.coreService.compile({
|
|
sketchUri: uri,
|
|
fqbn,
|
|
optimizeForDebug: this.editorMode.compileForDebug,
|
|
verbose,
|
|
exportBinaries
|
|
});
|
|
this.messageService.info('Done compiling.', { timeout: 1000 });
|
|
} catch (e) {
|
|
this.messageService.error(e.toString());
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
export namespace VerifySketch {
|
|
export namespace Commands {
|
|
export const VERIFY_SKETCH: Command = {
|
|
id: 'arduino-verify-sketch'
|
|
};
|
|
export const EXPORT_BINARIES: Command = {
|
|
id: 'arduino-export-binaries'
|
|
};
|
|
export const VERIFY_SKETCH_TOOLBAR: Command = {
|
|
id: 'arduino-verify-sketch--toolbar'
|
|
};
|
|
}
|
|
}
|