github.com/john-lin/cni@v0.6.0-rc1.0.20170712150331-b69e640cc0e2/pkg/invoke/find.go (about) 1 // Copyright 2015 CNI authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package invoke 16 17 import ( 18 "fmt" 19 "os" 20 "path/filepath" 21 ) 22 23 // FindInPath returns the full path of the plugin by searching in the provided path 24 func FindInPath(plugin string, paths []string) (string, error) { 25 if plugin == "" { 26 return "", fmt.Errorf("no plugin name provided") 27 } 28 29 if len(paths) == 0 { 30 return "", fmt.Errorf("no paths provided") 31 } 32 33 for _, path := range paths { 34 for _, fe := range ExecutableFileExtensions { 35 fullpath := filepath.Join(path, plugin) + fe 36 if fi, err := os.Stat(fullpath); err == nil && fi.Mode().IsRegular() { 37 return fullpath, nil 38 } 39 } 40 } 41 42 return "", fmt.Errorf("failed to find plugin %q in path %s", plugin, paths) 43 }