You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.9 KiB
Go

/*
* Copyright 2025 CloudWeGo 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 generic
import (
"fmt"
"io/fs"
"path/filepath"
"strings"
)
type SubmitResult struct {
IsSuccess *bool `json:"is_success,omitempty"`
Result string `json:"result,omitempty"`
Files []*SubmitResultFile `json:"files,omitempty"`
}
type SubmitResultFile struct {
Path string `json:"path,omitempty"`
Desc string `json:"desc,omitempty"`
}
func (s *SubmitResult) String() string {
res := fmt.Sprintf("### 执行结果\n%s", s.Result)
if len(s.Files) > 0 {
res += "\n#### 中间产物"
}
for _, f := range s.Files {
res += fmt.Sprintf("\n- 描述:%s, 路径:%s", f.Desc, f.Path)
}
return res
}
func ListDir(dir string) ([]*SubmitResultFile, error) {
var resp []*SubmitResultFile
err := filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
}
if strings.HasPrefix(d.Name(), ".") {
return nil
}
if path == dir {
return nil
}
if d.IsDir() {
next := filepath.Join(dir, d.Name())
nextResp, err := ListDir(next)
if err != nil {
return err
}
resp = append(resp, nextResp...)
return nil
}
resp = append(resp, &SubmitResultFile{
Path: filepath.Join(filepath.Dir(dir), d.Name()),
})
return nil
})
if err != nil {
return nil, err
}
return resp, nil
}