blob: 38c6771f34ae7bc06a923575eec0439e140210d6 [file] [log] [blame]
// Copyright 2016 The LUCI Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package lucictx
import (
"context"
"fmt"
)
// LUCIExe is a struct that may be used with the "luciexe" section of
// LUCI_CONTEXT.
type LUCIExe struct {
// The absolute path of the base cache directory. This directory MAY be on the
// same filesystem as CWD (but is not guaranteed to be). The available caches
// are described in Buildbucket as CacheEntry messages.
CacheDir string `json:"cache_dir"`
}
// GetLUCIExe calls Lookup and returns a copy of the current LUCIExe from
// LUCI_CONTEXT if it was present. If no LUCIExe is in the context, this
// returns nil.
func GetLUCIExe(ctx context.Context) *LUCIExe {
ret := LUCIExe{}
ok, err := Lookup(ctx, "luciexe", &ret)
if err != nil {
panic(err)
}
if !ok {
return nil
}
return &ret
}
// SetLUCIExe sets the LUCIExe in the LUCI_CONTEXT.
func SetLUCIExe(ctx context.Context, le *LUCIExe) context.Context {
var raw interface{}
if le != nil {
raw = le
}
ctx, err := Set(ctx, "luciexe", raw)
if err != nil {
panic(fmt.Errorf("impossible: %s", err))
}
return ctx
}