cc-backend/tools/archive-manager/main.go

37 lines
1022 B
Go
Raw Normal View History

2022-09-06 09:32:25 +02:00
// Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
// All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package main
2023-03-31 11:25:12 +02:00
import (
"encoding/json"
"flag"
"fmt"
"log"
"github.com/ClusterCockpit/cc-backend/internal/config"
"github.com/ClusterCockpit/cc-backend/pkg/archive"
)
2022-09-06 09:32:25 +02:00
func main() {
2023-03-31 11:25:12 +02:00
var srcPath, flagConfigFile string
flag.StringVar(&srcPath, "s", "./var/job-archive", "Specify the source job archive path. Default is ./var/job-archive")
flag.StringVar(&flagConfigFile, "config", "./config.json", "Specify alternative path to `config.json`")
flag.Parse()
archiveCfg := fmt.Sprintf("{\"kind\": \"file\",\"path\": \"%s\"}", srcPath)
config.Init(flagConfigFile)
config.Keys.Validate = true
2023-03-31 11:25:12 +02:00
2023-04-11 16:26:09 +02:00
if err := archive.Init(json.RawMessage(archiveCfg), false); err != nil {
2023-03-31 11:25:12 +02:00
log.Fatal(err)
}
ar := archive.GetHandle()
2022-09-06 09:32:25 +02:00
for job := range ar.Iter(true) {
log.Printf("Validate %s - %d\n", job.Meta.Cluster, job.Meta.JobID)
2023-03-31 11:25:12 +02:00
}
2022-09-06 09:32:25 +02:00
}