cmd/searchix-web/main.go (view raw)
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | package main import ( "context" "errors" "flag" "fmt" "os" "os/signal" "runtime/pprof" "sync" "badc0de.net/pkg/flagutil" "alin.ovh/searchix/frontend" "alin.ovh/searchix/internal/components" "alin.ovh/searchix/internal/config" "alin.ovh/searchix/internal/file" "alin.ovh/searchix/internal/importer" "alin.ovh/searchix/internal/index" "alin.ovh/searchix/internal/manpages" "alin.ovh/searchix/internal/server" "alin.ovh/searchix/web" "alin.ovh/x/log" ) var ( configFile = flag.String("config", "config.toml", "config `file` to use") printDefaultConfig = flag.Bool( "print-default-config", false, "print default configuration and exit", ) generateErrorPage = flag.Bool("generate-error-page", false, "generate error page and exit") dev = flag.Bool("dev", false, "enable live reloading and nicer logging") replace = flag.Bool("replace", false, "replace existing index and exit") fetch = flag.Bool("fetch", false, "fetch data and exit") version = flag.Bool("version", false, "print version information") cpuprofile = flag.String("cpuprofile", "", "enable CPU profiling and save to `file`") ) func main() { flagutil.Parse() if *version { _, err := fmt.Fprintf(os.Stderr, "searchix %s\n", config.Version) if err != nil { panic("can't write to standard error?!") } os.Exit(0) } if *printDefaultConfig { _, err := fmt.Print(config.GetDefaultConfig()) if err != nil { panic("can't write to standard output?!") } os.Exit(0) } if *generateErrorPage { assets, err := frontend.New() if err != nil { panic("failed to create assets: " + err.Error()) } err = components.ErrorTemplate(components.TemplateData{ Source: nil, Sources: []*config.Source{}, Query: "", ExtraHeadHTML: "", Code: 0, Message: `{{placeholder "http.error.status_code"}} {{placeholder "http.error.status_text"}}`, Assets: assets, }).Render(os.Stdout) if err != nil { panic("failed to render error template: " + err.Error()) } os.Exit(0) } if *cpuprofile != "" { //nolint:forbidigo // admin specifies profile file location f, err := os.Create(*cpuprofile) if err != nil { panic("can't create CPU profile: " + err.Error()) } err = pprof.StartCPUProfile(f) if err != nil { panic("can't start CPU profile: " + err.Error()) } defer pprof.StopCPUProfile() } logger := log.Configure(!*dev) cfg, err := config.GetConfig(*configFile, logger) if err != nil { logger.Fatal("Failed to parse config file", "error", err) } log.SetLevel(cfg.LogLevel) ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt) defer cancel() root, err := file.CreateAndOpenRoot(cfg.DataPath) if err != nil { logger.Fatal("Failed to open data root", "error", err) } defer root.Close() read, write, exists, err := index.OpenOrCreate( &index.Options{ Force: *replace, LowMemory: cfg.Importer.LowMemory, BatchSize: cfg.Importer.BatchSize, Logger: logger.Named("index"), Root: root, }, ) if err != nil { logger.Fatal("Failed to open or create index", "error", err) } mdb := manpages.New(&manpages.Options{ Logger: logger.Named("manpages"), Root: root, }) s, err := web.New(cfg, logger, &server.Options{ ReadIndex: read, ManpagesURLMap: mdb, }) if err != nil { logger.Fatal("Failed to initialise searchix-web", "error", err) } imp, err := importer.New(cfg, &importer.Options{ WriteIndex: write, LowMemory: cfg.Importer.LowMemory, Logger: logger.Named("importer"), Manpages: mdb, Root: root, }) if err != nil { logger.Fatal("Failed to create importer", "error", err) } if !exists || *replace || *fetch { err := imp.Start(ctx, true, *fetch, nil) if err != nil { logger.Fatal("Failed to start importer", "error", err) } if *replace || *fetch { return } } err = imp.EnsureSourcesIndexed(ctx, read) if err != nil { logger.Fatal("Failed to setup index", "error", err) } wg := &sync.WaitGroup{} wg.Add(1) go func() { sCtx, cancel := context.WithCancel(ctx) defer wg.Done() defer cancel() err := s.Start(sCtx, *dev) if err != nil && !errors.Is(err, context.Canceled) { // Error starting or closing listener: logger.Fatal("error", "error", err) } }() wg.Add(1) go func() { defer wg.Done() imp.StartUpdateTimer(ctx) }() <-ctx.Done() s.Stop() wg.Wait() } |