Colin Cross | e16ce36 | 2020-11-12 08:29:30 -0800 | [diff] [blame^] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 | // source: sbox.proto |
| 3 | |
| 4 | package sbox_proto |
| 5 | |
| 6 | import ( |
| 7 | fmt "fmt" |
| 8 | proto "github.com/golang/protobuf/proto" |
| 9 | math "math" |
| 10 | ) |
| 11 | |
| 12 | // Reference imports to suppress errors if they are not otherwise used. |
| 13 | var _ = proto.Marshal |
| 14 | var _ = fmt.Errorf |
| 15 | var _ = math.Inf |
| 16 | |
| 17 | // This is a compile-time assertion to ensure that this generated file |
| 18 | // is compatible with the proto package it is being compiled against. |
| 19 | // A compilation error at this line likely means your copy of the |
| 20 | // proto package needs to be updated. |
| 21 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
| 22 | |
| 23 | // A set of commands to run in a sandbox. |
| 24 | type Manifest struct { |
| 25 | // A list of commands to run in the sandbox. |
| 26 | Commands []*Command `protobuf:"bytes,1,rep,name=commands" json:"commands,omitempty"` |
| 27 | // If set, GCC-style dependency files from any command that references __SBOX_DEPFILE__ will be |
| 28 | // merged into the given output file relative to the $PWD when sbox was started. |
| 29 | OutputDepfile *string `protobuf:"bytes,2,opt,name=output_depfile,json=outputDepfile" json:"output_depfile,omitempty"` |
| 30 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 31 | XXX_unrecognized []byte `json:"-"` |
| 32 | XXX_sizecache int32 `json:"-"` |
| 33 | } |
| 34 | |
| 35 | func (m *Manifest) Reset() { *m = Manifest{} } |
| 36 | func (m *Manifest) String() string { return proto.CompactTextString(m) } |
| 37 | func (*Manifest) ProtoMessage() {} |
| 38 | func (*Manifest) Descriptor() ([]byte, []int) { |
| 39 | return fileDescriptor_9d0425bf0de86ed1, []int{0} |
| 40 | } |
| 41 | |
| 42 | func (m *Manifest) XXX_Unmarshal(b []byte) error { |
| 43 | return xxx_messageInfo_Manifest.Unmarshal(m, b) |
| 44 | } |
| 45 | func (m *Manifest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 46 | return xxx_messageInfo_Manifest.Marshal(b, m, deterministic) |
| 47 | } |
| 48 | func (m *Manifest) XXX_Merge(src proto.Message) { |
| 49 | xxx_messageInfo_Manifest.Merge(m, src) |
| 50 | } |
| 51 | func (m *Manifest) XXX_Size() int { |
| 52 | return xxx_messageInfo_Manifest.Size(m) |
| 53 | } |
| 54 | func (m *Manifest) XXX_DiscardUnknown() { |
| 55 | xxx_messageInfo_Manifest.DiscardUnknown(m) |
| 56 | } |
| 57 | |
| 58 | var xxx_messageInfo_Manifest proto.InternalMessageInfo |
| 59 | |
| 60 | func (m *Manifest) GetCommands() []*Command { |
| 61 | if m != nil { |
| 62 | return m.Commands |
| 63 | } |
| 64 | return nil |
| 65 | } |
| 66 | |
| 67 | func (m *Manifest) GetOutputDepfile() string { |
| 68 | if m != nil && m.OutputDepfile != nil { |
| 69 | return *m.OutputDepfile |
| 70 | } |
| 71 | return "" |
| 72 | } |
| 73 | |
| 74 | // SandboxManifest describes a command to run in the sandbox. |
| 75 | type Command struct { |
| 76 | // A list of copy rules to run before the sandboxed command. The from field is relative to the |
| 77 | // $PWD when sbox was run, the to field is relative to the top of the temporary sandbox directory. |
| 78 | CopyBefore []*Copy `protobuf:"bytes,1,rep,name=copy_before,json=copyBefore" json:"copy_before,omitempty"` |
| 79 | // If true, change the working directory to the top of the temporary sandbox directory before |
| 80 | // running the command. If false, leave the working directory where it was when sbox was started. |
| 81 | Chdir *bool `protobuf:"varint,2,opt,name=chdir" json:"chdir,omitempty"` |
| 82 | // The command to run. |
| 83 | Command *string `protobuf:"bytes,3,req,name=command" json:"command,omitempty"` |
| 84 | // A list of copy rules to run after the sandboxed command. The from field is relative to the |
| 85 | // top of the temporary sandbox directory, the to field is relative to the $PWD when sbox was run. |
| 86 | CopyAfter []*Copy `protobuf:"bytes,4,rep,name=copy_after,json=copyAfter" json:"copy_after,omitempty"` |
| 87 | // An optional hash of the input files to ensure the textproto files and the sbox rule reruns |
| 88 | // when the lists of inputs changes, even if the inputs are not on the command line. |
| 89 | InputHash *string `protobuf:"bytes,5,opt,name=input_hash,json=inputHash" json:"input_hash,omitempty"` |
| 90 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 91 | XXX_unrecognized []byte `json:"-"` |
| 92 | XXX_sizecache int32 `json:"-"` |
| 93 | } |
| 94 | |
| 95 | func (m *Command) Reset() { *m = Command{} } |
| 96 | func (m *Command) String() string { return proto.CompactTextString(m) } |
| 97 | func (*Command) ProtoMessage() {} |
| 98 | func (*Command) Descriptor() ([]byte, []int) { |
| 99 | return fileDescriptor_9d0425bf0de86ed1, []int{1} |
| 100 | } |
| 101 | |
| 102 | func (m *Command) XXX_Unmarshal(b []byte) error { |
| 103 | return xxx_messageInfo_Command.Unmarshal(m, b) |
| 104 | } |
| 105 | func (m *Command) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 106 | return xxx_messageInfo_Command.Marshal(b, m, deterministic) |
| 107 | } |
| 108 | func (m *Command) XXX_Merge(src proto.Message) { |
| 109 | xxx_messageInfo_Command.Merge(m, src) |
| 110 | } |
| 111 | func (m *Command) XXX_Size() int { |
| 112 | return xxx_messageInfo_Command.Size(m) |
| 113 | } |
| 114 | func (m *Command) XXX_DiscardUnknown() { |
| 115 | xxx_messageInfo_Command.DiscardUnknown(m) |
| 116 | } |
| 117 | |
| 118 | var xxx_messageInfo_Command proto.InternalMessageInfo |
| 119 | |
| 120 | func (m *Command) GetCopyBefore() []*Copy { |
| 121 | if m != nil { |
| 122 | return m.CopyBefore |
| 123 | } |
| 124 | return nil |
| 125 | } |
| 126 | |
| 127 | func (m *Command) GetChdir() bool { |
| 128 | if m != nil && m.Chdir != nil { |
| 129 | return *m.Chdir |
| 130 | } |
| 131 | return false |
| 132 | } |
| 133 | |
| 134 | func (m *Command) GetCommand() string { |
| 135 | if m != nil && m.Command != nil { |
| 136 | return *m.Command |
| 137 | } |
| 138 | return "" |
| 139 | } |
| 140 | |
| 141 | func (m *Command) GetCopyAfter() []*Copy { |
| 142 | if m != nil { |
| 143 | return m.CopyAfter |
| 144 | } |
| 145 | return nil |
| 146 | } |
| 147 | |
| 148 | func (m *Command) GetInputHash() string { |
| 149 | if m != nil && m.InputHash != nil { |
| 150 | return *m.InputHash |
| 151 | } |
| 152 | return "" |
| 153 | } |
| 154 | |
| 155 | // Copy describes a from-to pair of files to copy. The paths may be relative, the root that they |
| 156 | // are relative to is specific to the context the Copy is used in and will be different for |
| 157 | // from and to. |
| 158 | type Copy struct { |
| 159 | From *string `protobuf:"bytes,1,req,name=from" json:"from,omitempty"` |
| 160 | To *string `protobuf:"bytes,2,req,name=to" json:"to,omitempty"` |
| 161 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 162 | XXX_unrecognized []byte `json:"-"` |
| 163 | XXX_sizecache int32 `json:"-"` |
| 164 | } |
| 165 | |
| 166 | func (m *Copy) Reset() { *m = Copy{} } |
| 167 | func (m *Copy) String() string { return proto.CompactTextString(m) } |
| 168 | func (*Copy) ProtoMessage() {} |
| 169 | func (*Copy) Descriptor() ([]byte, []int) { |
| 170 | return fileDescriptor_9d0425bf0de86ed1, []int{2} |
| 171 | } |
| 172 | |
| 173 | func (m *Copy) XXX_Unmarshal(b []byte) error { |
| 174 | return xxx_messageInfo_Copy.Unmarshal(m, b) |
| 175 | } |
| 176 | func (m *Copy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 177 | return xxx_messageInfo_Copy.Marshal(b, m, deterministic) |
| 178 | } |
| 179 | func (m *Copy) XXX_Merge(src proto.Message) { |
| 180 | xxx_messageInfo_Copy.Merge(m, src) |
| 181 | } |
| 182 | func (m *Copy) XXX_Size() int { |
| 183 | return xxx_messageInfo_Copy.Size(m) |
| 184 | } |
| 185 | func (m *Copy) XXX_DiscardUnknown() { |
| 186 | xxx_messageInfo_Copy.DiscardUnknown(m) |
| 187 | } |
| 188 | |
| 189 | var xxx_messageInfo_Copy proto.InternalMessageInfo |
| 190 | |
| 191 | func (m *Copy) GetFrom() string { |
| 192 | if m != nil && m.From != nil { |
| 193 | return *m.From |
| 194 | } |
| 195 | return "" |
| 196 | } |
| 197 | |
| 198 | func (m *Copy) GetTo() string { |
| 199 | if m != nil && m.To != nil { |
| 200 | return *m.To |
| 201 | } |
| 202 | return "" |
| 203 | } |
| 204 | |
| 205 | func init() { |
| 206 | proto.RegisterType((*Manifest)(nil), "sbox.Manifest") |
| 207 | proto.RegisterType((*Command)(nil), "sbox.Command") |
| 208 | proto.RegisterType((*Copy)(nil), "sbox.Copy") |
| 209 | } |
| 210 | |
| 211 | func init() { |
| 212 | proto.RegisterFile("sbox.proto", fileDescriptor_9d0425bf0de86ed1) |
| 213 | } |
| 214 | |
| 215 | var fileDescriptor_9d0425bf0de86ed1 = []byte{ |
| 216 | // 252 bytes of a gzipped FileDescriptorProto |
| 217 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0x41, 0x4b, 0xc3, 0x40, |
| 218 | 0x10, 0x85, 0x49, 0x9a, 0xd2, 0x66, 0x6a, 0x7b, 0x18, 0x3c, 0xec, 0x45, 0x08, 0x01, 0x21, 0x55, |
| 219 | 0xe8, 0xc1, 0x7f, 0x60, 0xf5, 0xe0, 0xc5, 0xcb, 0x1e, 0x45, 0x08, 0xdb, 0x64, 0x97, 0x04, 0x4c, |
| 220 | 0x66, 0xd9, 0xdd, 0x82, 0xfd, 0x57, 0xfe, 0x44, 0xd9, 0x49, 0xea, 0xc5, 0xdb, 0xcc, 0xfb, 0x78, |
| 221 | 0xf3, 0x1e, 0x03, 0xe0, 0x4f, 0xf4, 0x7d, 0xb0, 0x8e, 0x02, 0x61, 0x16, 0xe7, 0xf2, 0x13, 0xd6, |
| 222 | 0xef, 0x6a, 0xec, 0x8d, 0xf6, 0x01, 0xf7, 0xb0, 0x6e, 0x68, 0x18, 0xd4, 0xd8, 0x7a, 0x91, 0x14, |
| 223 | 0x8b, 0x6a, 0xf3, 0xb4, 0x3d, 0xb0, 0xe1, 0x65, 0x52, 0xe5, 0x1f, 0xc6, 0x7b, 0xd8, 0xd1, 0x39, |
| 224 | 0xd8, 0x73, 0xa8, 0x5b, 0x6d, 0x4d, 0xff, 0xa5, 0x45, 0x5a, 0x24, 0x55, 0x2e, 0xb7, 0x93, 0xfa, |
| 225 | 0x3a, 0x89, 0xe5, 0x4f, 0x02, 0xab, 0xd9, 0x8c, 0x8f, 0xb0, 0x69, 0xc8, 0x5e, 0xea, 0x93, 0x36, |
| 226 | 0xe4, 0xf4, 0x1c, 0x00, 0xd7, 0x00, 0x7b, 0x91, 0x10, 0xf1, 0x91, 0x29, 0xde, 0xc2, 0xb2, 0xe9, |
| 227 | 0xda, 0xde, 0xf1, 0xd9, 0xb5, 0x9c, 0x16, 0x14, 0xb0, 0x9a, 0x1b, 0x88, 0x45, 0x91, 0x56, 0xb9, |
| 228 | 0xbc, 0xae, 0xb8, 0x07, 0x76, 0xd7, 0xca, 0x04, 0xed, 0x44, 0xf6, 0xef, 0x76, 0x1e, 0xe9, 0x73, |
| 229 | 0x84, 0x78, 0x07, 0xd0, 0x8f, 0xb1, 0x79, 0xa7, 0x7c, 0x27, 0x96, 0x5c, 0x3b, 0x67, 0xe5, 0x4d, |
| 230 | 0xf9, 0xae, 0x7c, 0x80, 0x2c, 0x3a, 0x10, 0x21, 0x33, 0x8e, 0x06, 0x91, 0x70, 0x10, 0xcf, 0xb8, |
| 231 | 0x83, 0x34, 0x90, 0x48, 0x59, 0x49, 0x03, 0x1d, 0x6f, 0x3e, 0xf8, 0xa1, 0x35, 0x3f, 0xf4, 0x37, |
| 232 | 0x00, 0x00, 0xff, 0xff, 0x95, 0x4d, 0xee, 0x7d, 0x5d, 0x01, 0x00, 0x00, |
| 233 | } |