forked from arduino/arduino-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboards-service.ts
1024 lines (950 loc) · 31.3 KB
/
boards-service.ts
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { nls } from '@theia/core/lib/common/nls';
import type { MaybePromise, Mutable } from '@theia/core/lib/common/types';
import URI from '@theia/core/lib/common/uri';
import {
All,
Contributed,
Partner,
Type as TypeLabel,
Updatable,
} from '../nls';
import { Defined } from '../types';
import { naturalCompare } from './../utils';
import type { ArduinoComponent } from './arduino-component';
import { Installable } from './installable';
import { Searchable } from './searchable';
export interface DetectedPort {
readonly port: Port;
readonly boards: Pick<Board, 'name' | 'fqbn'>[];
}
/**
* The closest representation what the Arduino CLI detects with the `board list --watch` gRPC equivalent.
* The keys are unique identifiers generated from the port object (via `Port#keyOf`).
* The values are the detected ports with all their optional `properties` and matching board list.
*/
export type DetectedPorts = Readonly<Record<string, DetectedPort>>;
export function resolveDetectedPort(
port: PortIdentifier,
detectedPorts: DetectedPorts
): Port | undefined {
const portKey = Port.keyOf(port);
const detectedPort = detectedPorts[portKey];
if (detectedPort) {
return detectedPort.port;
}
return undefined;
}
export function groupDetectedPortsByProtocol(
availablePorts: DetectedPorts
): Map<string, DetectedPorts> {
const grouped = new Map<string, Mutable<DetectedPorts>>();
for (const portID of Object.keys(availablePorts)) {
const { port, boards } = availablePorts[portID];
let ports = grouped.get(port.protocol);
if (!ports) {
ports = {} as DetectedPorts;
}
ports[portID] = { port, boards };
grouped.set(port.protocol, ports);
}
return grouped;
}
export interface BoardListItem {
readonly port: Port;
readonly board?: BoardIdentifier;
}
/**
* Compare precedence:
* 1. `BoardListItem#port#protocol`: `'serial'`, `'network'`, then natural compare of the `protocol` string.
* 1. `BoardListItem`s with a `board` comes before items without a `board`.
* 1. `BoardListItem#board`:
* 1. Items with `'arduino'` vendor ID in the `fqbn` come before other vendors.
* 1. Natural compare of the `name`.
* 1. If the `BoardListItem`s do not have a `board` property, `BoardListItem#port#address` natural compare is the fallback.
*/
function boardListItemComparator(
left: BoardListItem,
right: BoardListItem
): number {
// sort by port protocol
let result = portProtocolComparator(left.port, right.port);
if (result) {
return result;
}
// compare by board
result = boardIdentifierComparator(left.board, right.board);
if (result) {
return result;
}
// fallback compare based on the address
return naturalCompare(left.port.address, right.port.address);
}
// the smaller the number, the higher the priority
const portProtocolPriorities: Record<string, number> = {
serial: 0,
network: 1,
} as const;
/**
* A list of boards discovered by the Arduino CLI. With the `board list --watch` gRPC equivalent command,
* the CLI provides a `1..*` mapping between a port and the matching boards list. This type inverts the mapping
* and makes a `1..1` association between a board identifier and the port it belongs to.
*/
export type BoardList<T extends BoardListItem = BoardListItem> =
readonly T[] & {
/**
* A snapshot of the board and port configuration this board list has been initialized with.
*/
readonly boardsConfig: Readonly<BoardsConfig>;
/**
* When a port and board is configured, this property accessor returns with the matching board list item.
* When there is a matching item, its `board` property is defined. It comes handy when identifying unrecognized
* boards. In such case, the `initParams#selectedBoard` is the `board` of the `derived` item. `index` property
* could be used to access the genuine board list item; it's `board` might be absent.
*/
get matchingItem():
| Readonly<{ index: number; derived: Required<T> }>
| undefined;
/**
* Contains all boards recognized from the detected port, and an optional unrecognized one that is derived from the detected port and the `initParam#selectedBoard`.
*/
get boards(): readonly Required<BoardListItem>[];
/**
* All distinct ports.
*/
get ports(): readonly DetectedPort[];
};
export function createBoardList(
detectedPorts: DetectedPorts,
boardsConfig: Readonly<BoardsConfig> = emptyBoardsConfig()
): BoardList {
const items: BoardListItem[] = [];
for (const detectedPort of Object.values(detectedPorts)) {
const { port, boards } = detectedPort;
if (!boards.length) {
// If a port does not have matching board list, include it once.
items.push({ port });
} else {
// Otherwise, include the port for each board.
for (const { name, fqbn } of boards) {
items.push({ port, board: { name, fqbn } });
}
}
}
items.sort(boardListItemComparator);
let matchingItem: BoardList['matchingItem'] | 'uninitialized' =
'uninitialized';
const length = items.length;
const findMatchingItem = (): BoardList['matchingItem'] => {
if (!isDefinedBoardsConfig(boardsConfig)) {
return undefined;
}
const portKey = Port.keyOf(boardsConfig.selectedPort);
for (let index = 0; index < length; index++) {
const { board, port } = items[index];
if (!board) {
continue;
}
if (
Port.keyOf(port) === portKey &&
boardIdentifierEquals(board, boardsConfig.selectedBoard)
) {
return { index, derived: { board, port } };
}
}
// TODO: can this be done in one iteration?
for (let index = 0; index < length; index++) {
const { port } = items[index];
if (Port.keyOf(port) === portKey) {
return {
index,
derived: { board: boardsConfig.selectedBoard, port },
};
}
}
return undefined;
};
const matchingItemMemoized = () => {
if (matchingItem === 'uninitialized') {
matchingItem = findMatchingItem();
}
return matchingItem;
};
let _boards: Required<BoardListItem>[] | undefined;
let _ports: DetectedPort[] | undefined;
const boardList: BoardList = Object.assign(items, {
boardsConfig,
get matchingItem() {
return matchingItemMemoized();
},
get boards() {
if (!_boards) {
const match = matchingItemMemoized();
_boards = [];
for (let i = 0; i < length; i++) {
const item = items[i];
if (item.board) {
_boards.push(<Required<BoardListItem>>item);
} else if (match?.index === i) {
_boards.push(match.derived);
}
}
}
return _boards;
},
get ports() {
if (!_ports) {
_ports = [];
// to keep the order or the detected ports
const visitedPortKeys = new Set<string>();
for (let i = 0; i < length; i++) {
const { port } = items[i];
const portKey = Port.keyOf(port);
if (!visitedPortKeys.has(portKey)) {
visitedPortKeys.add(portKey);
_ports.push(detectedPorts[portKey]);
}
}
}
return _ports;
},
});
return boardList;
}
export const BoardsServicePath = '/services/boards-service';
export const BoardsService = Symbol('BoardsService');
export interface BoardsService
extends Installable<BoardsPackage>,
Searchable<BoardsPackage, BoardSearch> {
install(options: {
item: BoardsPackage;
progressId?: string;
version?: Installable.Version;
noOverwrite?: boolean;
/**
* Only for testing to avoid confirmation dialogs from Windows User Access Control when installing a platform.
*/
skipPostInstall?: boolean;
}): Promise<void>;
getDetectedPorts(): Promise<DetectedPorts>;
getBoardDetails(options: { fqbn: string }): Promise<BoardDetails | undefined>;
getBoardPackage(options: { id: string }): Promise<BoardsPackage | undefined>;
getContainerBoardPackage(options: {
fqbn: string;
}): Promise<BoardsPackage | undefined>;
searchBoards({ query }: { query?: string }): Promise<BoardWithPackage[]>;
getInstalledBoards(): Promise<BoardWithPackage[]>;
getBoardUserFields(options: {
fqbn: string;
protocol: string;
}): Promise<BoardUserField[]>;
}
export interface BoardSearch extends Searchable.Options {
readonly type?: BoardSearch.Type;
}
export namespace BoardSearch {
export const Default: BoardSearch = { type: 'All' };
export const TypeLiterals = [
'All',
'Updatable',
'Arduino',
'Contributed',
'Arduino Certified',
'Partner',
'Arduino@Heart',
] as const;
export type Type = (typeof TypeLiterals)[number];
export namespace Type {
export function is(arg: unknown): arg is Type {
return typeof arg === 'string' && TypeLiterals.includes(arg as Type);
}
}
export const TypeLabels: Record<Type, string> = {
All: All,
Updatable: Updatable,
Arduino: 'Arduino',
Contributed: Contributed,
'Arduino Certified': nls.localize(
'arduino/boardsType/arduinoCertified',
'Arduino Certified'
),
Partner: Partner,
'Arduino@Heart': 'Arduino@Heart',
};
export const PropertyLabels: Record<
keyof Omit<BoardSearch, 'query'>,
string
> = {
type: TypeLabel,
};
export namespace UriParser {
export const authority = 'boardsmanager';
export function parse(uri: URI): BoardSearch | undefined {
if (uri.scheme !== 'http') {
throw new Error(
`Invalid 'scheme'. Expected 'http'. URI was: ${uri.toString()}.`
);
}
if (uri.authority !== authority) {
throw new Error(
`Invalid 'authority'. Expected: '${authority}'. URI was: ${uri.toString()}.`
);
}
const segments = Searchable.UriParser.normalizedSegmentsOf(uri);
if (segments.length !== 1) {
return undefined;
}
let searchOptions: BoardSearch | undefined = undefined;
const [type] = segments;
if (!type) {
searchOptions = BoardSearch.Default;
} else if (BoardSearch.Type.is(type)) {
searchOptions = { type };
}
if (searchOptions) {
return {
...searchOptions,
...Searchable.UriParser.parseQuery(uri),
};
}
return undefined;
}
}
}
export interface Port {
readonly address: string;
readonly addressLabel: string;
readonly protocol: string;
readonly protocolLabel: string;
readonly properties?: Record<string, string>;
readonly hardwareId?: string;
}
export namespace Port {
export type Properties = Record<string, string>;
export namespace Properties {
export function create(
properties: [string, string][] | undefined
): Properties {
if (!properties) {
return {};
}
return properties.reduce((acc, curr) => {
const [key, value] = curr;
acc[key] = value;
return acc;
}, {} as Record<string, string>);
}
}
export function is(arg: unknown): arg is Port {
if (typeof arg === 'object') {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const object = arg as any;
return (
'address' in object &&
typeof object['address'] === 'string' &&
'addressLabel' in object &&
typeof object['addressLabel'] === 'string' &&
'protocol' in object &&
typeof object['protocol'] === 'string' &&
'protocolLabel' in object &&
typeof object['protocolLabel'] === 'string'
);
}
return false;
}
/**
* Key is the combination of address and protocol formatted like `'${address}|${protocol}'` used to uniquely identify a port.
*/
export function keyOf({ protocol, address }: PortIdentifier): string {
return `${address}|${protocol}`;
}
export function toString({ addressLabel, protocolLabel }: Port): string {
return `${addressLabel} ${protocolLabel}`;
}
export function compare(left: Port, right: Port): number {
// Ports must be sorted in this order:
// 1. Serial
// 2. Network
// 3. Other protocols
const priorityResult = portProtocolComparator(left, right);
return priorityResult || naturalCompare(left.address, right.address);
}
export function sameAs(
left: Port | undefined,
right: Port | undefined
): boolean {
if (left && right) {
return left.address === right.address && left.protocol === right.protocol;
}
return false;
}
// See https://github.com/arduino/arduino-ide/commit/79ea0fa9a6ad2b01eaac22cef2f494d3b68284e6#diff-fb37f20bea00881acee3aafddb1ecefcecf41ce59845ca1510da79e918ee0837L338-L348
// See https://github.com/arduino/arduino-ide/commit/79ea0fa9a6ad2b01eaac22cef2f494d3b68284e6#diff-e42c82bb67e277cfa4598239952afd65db44dba55dc7d68df619dfccfa648279L441-L455
// See https://github.com/arduino/arduino-ide/commit/74bfdc4c56d7a1577a4e800a378c21b82c1da5f8#diff-e42c82bb67e277cfa4598239952afd65db44dba55dc7d68df619dfccfa648279L405-R424
/**
* All ports with `'serial'` or `'network'` `protocol`, or any other port `protocol` that has at least one recognized board connected to.
*/
export function isVisiblePort(detectedPort: DetectedPort): boolean {
const protocol = detectedPort.port.protocol;
if (protocol === 'serial' || protocol === 'network') {
// Allow all `serial` and `network` boards.
// IDE2 must support better label for unrecognized `network` boards: https://github.com/arduino/arduino-ide/issues/1331
return true;
}
// All other ports with different protocol are
// only shown if there is a recognized board
// connected
return Boolean(detectedPort.boards.length);
}
export namespace Protocols {
// IDE2 does not want to handle any other port protocols in a special way
export const KnownProtocolLiterals = ['serial', 'network'] as const;
export type KnownProtocol = (typeof KnownProtocolLiterals)[number];
export namespace KnownProtocol {
export function is(protocol: unknown): protocol is KnownProtocol {
return (
typeof protocol === 'string' &&
KnownProtocolLiterals.includes(protocol as KnownProtocol)
);
}
}
export const ProtocolLabels: Record<KnownProtocol, string> = {
serial: nls.localize('arduino/portProtocol/serial', 'Serial'),
network: nls.localize('arduino/portProtocol/network', 'Network'),
};
export function protocolLabel(protocol: string): string {
if (KnownProtocol.is(protocol)) {
return ProtocolLabels[protocol];
}
return protocol;
}
}
}
export interface BoardsPackage extends ArduinoComponent {
readonly id: string;
readonly boards: Board[];
}
export namespace BoardsPackage {
export function equals(left: BoardsPackage, right: BoardsPackage): boolean {
return left.id === right.id;
}
export function contains(
selectedBoard: Board, // TODO: change to BoardIdentifier?
{ id, boards }: BoardsPackage
): boolean {
if (
boards.some(({ name, fqbn }) =>
Board.sameAs(
{ name, fqbn },
{ name: selectedBoard.name, fqbn: selectedBoard.fqbn }
)
)
) {
return true;
}
if (selectedBoard.fqbn) {
const [platform, architecture] = selectedBoard.fqbn.split(':');
if (platform && architecture) {
return `${platform}:${architecture}` === id;
}
}
return false;
}
}
export interface Board {
readonly name: string;
readonly fqbn?: string;
readonly port?: Port;
}
export interface BoardUserField {
readonly toolId: string;
readonly name: string;
readonly label: string;
readonly secret: boolean;
value: string;
}
export interface BoardWithPackage extends Board {
readonly packageName: string;
readonly packageId: string;
readonly manuallyInstalled: boolean;
}
export namespace BoardWithPackage {
export function is(
board: Board & Partial<{ packageName: string; packageId: string }>
): board is BoardWithPackage {
return !!board.packageId && !!board.packageName;
}
}
export interface InstalledBoardWithPackage extends BoardWithPackage {
readonly fqbn: string;
}
export namespace InstalledBoardWithPackage {
export function is(
boardWithPackage: BoardWithPackage
): boardWithPackage is InstalledBoardWithPackage {
return !!boardWithPackage.fqbn;
}
}
export interface BoardDetails {
readonly fqbn: string;
readonly requiredTools: Tool[];
readonly configOptions: ConfigOption[];
readonly programmers: Programmer[];
readonly debuggingSupported: boolean;
readonly VID: string;
readonly PID: string;
readonly buildProperties: string[];
}
export interface Tool {
readonly packager: string;
readonly name: string;
readonly version: Installable.Version;
}
export interface ConfigOption {
readonly option: string;
readonly label: string;
readonly values: ConfigValue[];
}
export namespace ConfigOption {
/**
* Appends the configuration options to the `fqbn` argument.
* Throws an error if the `fqbn` does not have the `segment(':'segment)*` format.
* The provided output format is always segment(':'segment)*(':'option'='value(','option'='value)*)?
*/
export function decorate(
fqbn: string,
configOptions: ConfigOption[]
): string {
if (!configOptions.length) {
return fqbn;
}
const toValue = (values: ConfigValue[]) => {
const selectedValue = values.find(({ selected }) => selected);
if (!selectedValue) {
console.warn(
`None of the config values was selected. Values were: ${JSON.stringify(
values
)}`
);
return undefined;
}
return selectedValue.value;
};
const options = configOptions
.map(({ option, values }) => [option, toValue(values)])
.filter(([, value]) => !!value)
.map(([option, value]) => `${option}=${value}`)
.join(',');
return `${fqbn}:${options}`;
}
export class ConfigOptionError extends Error {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, ConfigOptionError.prototype);
}
}
export const LABEL_COMPARATOR = (left: ConfigOption, right: ConfigOption) =>
naturalCompare(
left.label.toLocaleLowerCase(),
right.label.toLocaleLowerCase()
);
}
export interface ConfigValue {
readonly label: string;
readonly value: string;
readonly selected: boolean;
}
export interface Programmer {
readonly name: string;
readonly platform: string;
readonly id: string;
}
export namespace Programmer {
export function equals(
left: Programmer | undefined,
right: Programmer | undefined
): boolean {
if (!left) {
return !right;
}
if (!right) {
return !left;
}
return (
left.id === right.id &&
left.name === right.name &&
left.platform === right.platform
);
}
}
export namespace Board {
export function is(board: any): board is Board {
return !!board && 'name' in board;
}
export function equals(left: Board, right: Board): boolean {
return left.name === right.name && left.fqbn === right.fqbn;
}
export function hardwareIdEquals(left: Board, right: Board): boolean {
if (left.port && right.port) {
const { hardwareId: leftHardwareId } = left.port;
const { hardwareId: rightHardwareId } = right.port;
if (leftHardwareId && rightHardwareId) {
return leftHardwareId === rightHardwareId;
}
}
return false;
}
export function sameAs(
left: BoardIdentifier,
right: string | BoardIdentifier
): boolean {
// How to associate a selected board with one of the available cores: https://typefox.slack.com/archives/CJJHJCJSJ/p1571142327059200
// 1. How to use the FQBN if any and infer the package ID from it: https://typefox.slack.com/archives/CJJHJCJSJ/p1571147549069100
// 2. How to trim the `/Genuino` from the name: https://arduino.slack.com/archives/CJJHJCJSJ/p1571146951066800?thread_ts=1571142327.059200&cid=CJJHJCJSJ
const other: BoardIdentifier =
typeof right === 'string' ? { name: right, fqbn: undefined } : right;
if (left.fqbn && other.fqbn) {
return left.fqbn === other.fqbn;
}
return (
left.name.replace('/Genuino', '') === other.name.replace('/Genuino', '')
);
}
export function compare(left: Board, right: Board): number {
let result = naturalCompare(left.name, right.name);
if (result === 0) {
result = naturalCompare(left.fqbn || '', right.fqbn || '');
}
return result;
}
export function installed(board: Board): boolean {
return !!board.fqbn;
}
export function toString(
board: BoardIdentifier,
options: { useFqbn: boolean } = { useFqbn: true }
): string {
const fqbn =
options && options.useFqbn && board.fqbn ? ` [${board.fqbn}]` : '';
return `${board.name}${fqbn}`;
}
export type Detailed = Board &
Readonly<{
selected: boolean;
missing: boolean;
packageName: string;
packageId: string;
details?: string;
manuallyInstalled: boolean;
}>;
export function decorateBoards(
selectedBoard: BoardIdentifier | undefined,
boards: Array<BoardWithPackage>
): Array<Detailed> {
// Board names are not unique. We show the corresponding core name as a detail.
// https://github.com/arduino/arduino-cli/pull/294#issuecomment-513764948
const distinctBoardNames = new Map<string, number>();
for (const { name } of boards) {
const counter = distinctBoardNames.get(name) || 0;
distinctBoardNames.set(name, counter + 1);
}
// Due to the non-unique board names, we have to check the package name as well.
const selected = (board: BoardWithPackage) => {
if (!!selectedBoard) {
if (
boardIdentifierEquals(
{ name: board.name, fqbn: board.fqbn },
selectedBoard
)
) {
// TODO: this won't work anymore with the current BoardIdentifier as it does not contain the container packager info.
// Possible duplicate items in board select dialog for non-installed boards from different platforms.
if ('packageName' in selectedBoard) {
return board.packageName === (selectedBoard as any).packageName;
}
if ('packageId' in selectedBoard) {
return board.packageId === (selectedBoard as any).packageId;
}
return true;
}
}
return false;
};
return boards.map((board) => ({
...board,
details:
(distinctBoardNames.get(board.name) || 0) > 1
? ` - ${board.packageName}`
: undefined,
selected: selected(board),
missing: !installed(board),
}));
}
}
/**
* Throws an error if the `fqbn` argument is not sanitized. A sanitized FQBN has the `VENDOR:ARCHITECTURE:BOARD_ID` construct.
*/
export function assertSanitizedFqbn(fqbn: string): void {
if (fqbn.split(':').length !== 3) {
throw new Error(
`Expected a sanitized FQBN with three segments in the following format: 'VENDOR:ARCHITECTURE:BOARD_ID'. Got ${fqbn} instead.`
);
}
}
/**
* Converts the `VENDOR:ARCHITECTURE:BOARD_ID[:MENU_ID=OPTION_ID[,MENU2_ID=OPTION_ID ...]]` FQBN to
* `VENDOR:ARCHITECTURE:BOARD_ID` format.
* See the details of the `{build.fqbn}` entry in the [specs](https://arduino.github.io/arduino-cli/latest/platform-specification/#global-predefined-properties).
*/
export function sanitizeFqbn(fqbn: string | undefined): string | undefined {
if (!fqbn) {
return undefined;
}
const [vendor, arch, id] = fqbn.split(':');
return `${vendor}:${arch}:${id}`;
}
/**
* Bare minimum information to identify port.
*/
export type PortIdentifier = Readonly<Pick<Port, 'protocol' | 'address'>>;
export function portIdentifierEquals(
left: PortIdentifier,
right: PortIdentifier
): boolean {
return left.protocol === right.protocol && left.address === right.address;
}
export function isPortIdentifier(arg: unknown): arg is PortIdentifier {
return (
Boolean(arg) &&
typeof arg === 'object' &&
(<PortIdentifier>arg).protocol !== undefined &&
typeof (<PortIdentifier>arg).protocol === 'string' &&
(<PortIdentifier>arg).address !== undefined &&
typeof (<PortIdentifier>arg).address === 'string'
);
}
/**
* See `boardListItemComparator`.
*/
export function portProtocolComparator(
left: PortIdentifier,
right: PortIdentifier
): number {
const leftPriority =
portProtocolPriorities[left.protocol] ?? Number.MAX_SAFE_INTEGER;
const rightPriority =
portProtocolPriorities[right.protocol] ?? Number.MAX_SAFE_INTEGER;
return leftPriority - rightPriority;
}
/**
* Lightweight information to identify a board.\
* \
* Note: the `name` property of the board identifier must never participate in the board's identification.
* Hence, it should only be used as the final fallback for the UI when the board's platform is not installed and only the board's name is available.
*/
export interface BoardIdentifier {
/**
* The name of the board. It's only purpose is to provide a fallback for the UI. Preferably do not use this property for any sophisticated logic. When
*/
readonly name: string;
/**
* The FQBN might contain boards config options if selected from the discovered ports (see [arduino/arduino-ide#1588](https://github.com/arduino/arduino-ide/issues/1588)).
*/
// TODO: decide whether to persist the boards config if any
readonly fqbn: string | undefined;
}
export function isBoardIdentifier(arg: unknown): arg is BoardIdentifier {
return (
(Boolean(arg) &&
typeof arg === 'object' &&
(<BoardIdentifier>arg).name !== undefined &&
typeof (<BoardIdentifier>arg).name === 'string' &&
(<BoardIdentifier>arg).fqbn === undefined) ||
((<BoardIdentifier>arg).fqbn !== undefined &&
typeof (<BoardIdentifier>arg).fqbn === 'string')
);
}
/**
* @param options if `loose` is `true`, FQBN config options are ignored. Hence, `{ name: 'x', fqbn: 'a:b:c:o1=v1 }` equals `{ name: 'y', fqbn: 'a:b:c' }`. It's `true` by default.
*/
export function boardIdentifierEquals(
left: BoardIdentifier,
right: BoardIdentifier,
options: { loose: boolean } = { loose: true }
): boolean {
if (left.fqbn && right.fqbn) {
const leftFqbn = options.loose ? sanitizeFqbn(left.fqbn) : left.fqbn;
const rightFqbn = options.loose ? sanitizeFqbn(right.fqbn) : right.fqbn;
if (leftFqbn === rightFqbn) {
return true;
}
}
// No more Genuino hack.
// https://github.com/arduino/arduino-ide/blob/f6a43254f5c416a2e4fa888875358336b42dd4d5/arduino-ide-extension/src/common/protocol/boards-service.ts#L572-L581
return left.name === right.name;
}
/**
* See `boardListItemComparator`.
*/
export function boardIdentifierComparator(
left: BoardIdentifier | undefined,
right: BoardIdentifier | undefined
): number {
if (!left) {
return right ? 1 : 0;
}
if (!right) {
return left ? -1 : 0;
}
let leftVendor: string | undefined = undefined;
let rightVendor: string | undefined = undefined;
if (left.fqbn) {
const [vendor] = left.fqbn.split(':');
leftVendor = vendor;
}
if (right.fqbn) {
const [vendor] = right.fqbn.split(':');
rightVendor = vendor;
}
if (leftVendor === 'arduino' && rightVendor !== 'arduino') {
return -1;
}
if (leftVendor !== 'arduino' && rightVendor === 'arduino') {
return 1;
}
return naturalCompare(left.name, right.name);
}
export interface BoardsConfig {
selectedBoard: BoardIdentifier | undefined;
selectedPort: PortIdentifier | undefined;
}
/**
* Creates a new board config object with `undefined` properties.
*/
export function emptyBoardsConfig(): BoardsConfig {
return {
selectedBoard: undefined,
selectedPort: undefined,
};
}
export function isDefinedBoardsConfig(
boardsConfig: BoardsConfig | undefined
): boardsConfig is Defined<BoardsConfig> {
if (!boardsConfig) {
return false;
}
return (
boardsConfig.selectedBoard !== undefined &&
boardsConfig.selectedPort !== undefined
);
}
export interface BoardIdentifierChangeEvent {
readonly previousSelectedBoard: BoardIdentifier | undefined;
readonly selectedBoard: BoardIdentifier | undefined;
}
export function isBoardIdentifierChangeEvent(
event: BoardsConfig2ChangeEvent
): event is BoardIdentifierChangeEvent {
return 'previousSelectedBoard' in event && 'selectedBoard' in event;
}
export interface PortIdentifierChangeEvent {
readonly previousSelectedPort: PortIdentifier | undefined;
readonly selectedPort: PortIdentifier | undefined;
}
export function isPortIdentifierChangeEvent(
event: BoardsConfig2ChangeEvent
): event is PortIdentifierChangeEvent {
return 'previousSelectedPort' in event && 'selectedPort' in event;
}
export type BoardsConfig2ChangeEvent =
| BoardIdentifierChangeEvent
| PortIdentifierChangeEvent
| (BoardIdentifierChangeEvent & PortIdentifierChangeEvent);
export interface BoardInfo {
/**
* Board name. Could be `'Unknown board`'.
*/
BN: string;
/**
* Vendor ID.
*/
VID: string;
/**
* Product ID.
*/
PID: string;
/**
* Serial number.
*/
SN: string;
}
export const selectPortForInfo = nls.localize(
'arduino/board/selectPortForInfo',
'Please select a port to obtain board info.'
);
export const nonSerialPort = nls.localize(
'arduino/board/nonSerialPort',
"Non-serial port, can't obtain info."
);
export const noNativeSerialPort = nls.localize(
'arduino/board/noNativeSerialPort',
"Native serial port, can't obtain info."
);
export const unknownBoard = nls.localize(
'arduino/board/unknownBoard',
'Unknown board'
);
/**
* The returned promise resolves to a `BoardInfo` if available to show in the UI or an info message explaining why showing the board info is not possible.
*/
export async function getBoardInfo(
selectedPort: PortIdentifier | undefined,
detectedPortsProvider: MaybePromise<DetectedPorts>
): Promise<BoardInfo | string> {
if (!selectedPort) {
return selectPortForInfo;
}
// IDE2 must show the board info based on the selected port.
// https://github.com/arduino/arduino-ide/issues/1489
// IDE 1.x supports only serial port protocol
if (selectedPort.protocol !== 'serial') {
return nonSerialPort;
}
const selectedPortKey = Port.keyOf(selectedPort);
const detectedPorts = await detectedPortsProvider;
const boardListOnSelectedPort = Object.entries(detectedPorts).filter(
([key, { port }]) => key === selectedPortKey && isNonNativeSerial(port)
);
if (!boardListOnSelectedPort.length) {
return noNativeSerialPort;
}
const [, { port, boards }] = boardListOnSelectedPort[0];
if (boardListOnSelectedPort.length > 1 || boards.length > 1) {
console.warn(
`Detected more than one available boards on the selected port : ${JSON.stringify(
selectedPort
)}. Detected boards were: ${JSON.stringify(
boardListOnSelectedPort
)}. Using the first one: ${JSON.stringify([port, boards])}`
);
}