forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibraries_layout.go
80 lines (71 loc) · 2.24 KB
/
libraries_layout.go
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
// This file is part of arduino-cli.
//
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of arduino-cli.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package libraries
import (
"encoding/json"
"fmt"
rpc "github.com/arduino/arduino-cli/rpc/commands"
)
// LibraryLayout represents how the library source code is laid out in the library
type LibraryLayout uint16
const (
// FlatLayout is a library without a `src` directory
FlatLayout LibraryLayout = iota
// RecursiveLayout is a library with `src` directory (that allows recursive build)
RecursiveLayout
)
func (d *LibraryLayout) String() string {
switch *d {
case FlatLayout:
return "flat"
case RecursiveLayout:
return "recursive"
}
panic(fmt.Sprintf("invalid LibraryLayout value %d", *d))
}
// MarshalJSON implements the json.Marshaler interface
func (d *LibraryLayout) MarshalJSON() ([]byte, error) {
switch *d {
case FlatLayout:
return json.Marshal("flat")
case RecursiveLayout:
return json.Marshal("recursive")
}
return nil, fmt.Errorf("invalid library layout value: %d", *d)
}
// UnmarshalJSON implements the json.Unmarshaler interface
func (d *LibraryLayout) UnmarshalJSON(b []byte) error {
var s string
if err := json.Unmarshal(b, &s); err != nil {
return err
}
switch s {
case "flat":
*d = FlatLayout
case "recursive":
*d = RecursiveLayout
}
return fmt.Errorf("invalid library layout: %s", s)
}
// ToRPCLibraryLayout converts this LibraryLayout to rpc.LibraryLayout
func (d *LibraryLayout) ToRPCLibraryLayout() rpc.LibraryLayout {
switch *d {
case FlatLayout:
return rpc.LibraryLayout_flat_layout
case RecursiveLayout:
return rpc.LibraryLayout_recursive_layout
}
panic(fmt.Sprintf("invalid LibraryLayout value %d", *d))
}