about summary refs log tree commit diff
path: root/tvix/nar-bridge/cmd/nar_bridge/import.go
blob: 51b99c93a04ba9f348cbf64269c6962513bb08f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main

import (
	"context"
	"fmt"
	"io"
	"os"
	"os/signal"

	storev1pb "code.tvl.fyi/tvix/store/protos"

	"code.tvl.fyi/tvix/nar-bridge/pkg/reader"
	log "github.com/sirupsen/logrus"
)

type ImportCmd struct {
	NarPath string `name:"nar-path" help:"A path to a NAR file"`
}

// `help:"Read a NAR file and display some information"`

func (cmd *ImportCmd) Run() error {
	retcode := 0

	defer func() { os.Exit(retcode) }()

	c := make(chan os.Signal, 1)
	signal.Notify(c, os.Interrupt)

	go func() {
		for range c {
			log.Info("Received Signal, shutting down…")
			os.Exit(1)
		}
	}()

	log.Infof("Reading %v...", cmd.NarPath)

	f, _ := os.Open(cmd.NarPath)

	r := reader.New(f)

	actualPathInfo, _ := r.Import(
		context.Background(),
		func(fileReader io.Reader) error {
			return nil
		},
		func(directory *storev1pb.Directory) error {
			return nil
		},
	)

	fmt.Printf("Node: %+v\n", actualPathInfo.Node)
	fmt.Printf("References: %+v\n", actualPathInfo.References)
	fmt.Printf("Narinfo: %+v\n", actualPathInfo.Narinfo)
	return nil
}