|
| 1 | +package main |
| 2 | + |
| 3 | +import ( |
| 4 | + "bufio" |
| 5 | + "flag" |
| 6 | + "io" |
| 7 | + "os" |
| 8 | +) |
| 9 | + |
| 10 | +type Config struct { |
| 11 | + InputFilePath string |
| 12 | + OutputFilePath string |
| 13 | + CommentExcludedLines bool |
| 14 | +} |
| 15 | + |
| 16 | +func main() { |
| 17 | + cfg := initConfig() |
| 18 | + |
| 19 | + reader := openReader(cfg.InputFilePath) |
| 20 | + defer func() { _ = reader.Close() }() |
| 21 | + |
| 22 | + writer := openWriter(cfg.OutputFilePath) |
| 23 | + defer func() { _ = writer.Close() }() |
| 24 | + |
| 25 | + c := Converter{ |
| 26 | + Input: bufio.NewScanner(reader), |
| 27 | + Output: bufio.NewWriter(writer), |
| 28 | + CommentExcluded: cfg.CommentExcludedLines, |
| 29 | + } |
| 30 | + |
| 31 | +} |
| 32 | + |
| 33 | +func initConfig() Config { |
| 34 | + var cfg Config |
| 35 | + flag.StringVar(&cfg.InputFilePath, "input-file", "", "Path to input sql file with schema. Read from stdin by default.") |
| 36 | + flag.StringVar(&cfg.OutputFilePath, "output-file", "", "Path to result of convertation. Stdout by default.") |
| 37 | + flag.BoolVar(&cfg.CommentExcludedLines, "comment-excluded", false, "Comment excluded lines instead of remove it") |
| 38 | + flag.Parse() |
| 39 | + |
| 40 | + return cfg |
| 41 | +} |
| 42 | + |
| 43 | +func openReader(path string) io.ReadCloser { |
| 44 | + if path == "" { |
| 45 | + return io.NopCloser(os.Stdin) |
| 46 | + } |
| 47 | + return must(os.Open(path)) |
| 48 | +} |
| 49 | + |
| 50 | +func openWriter(path string) io.WriteCloser { |
| 51 | + if path == "" { |
| 52 | + return os.Stdout |
| 53 | + } |
| 54 | + return must(os.Create(path)) |
| 55 | +} |
| 56 | + |
| 57 | +func must0(err error) { |
| 58 | + if err != nil { |
| 59 | + panic(err) |
| 60 | + } |
| 61 | +} |
| 62 | + |
| 63 | +func must[R any](res R, err error) R { |
| 64 | + must0(err) |
| 65 | + return res |
| 66 | +} |
| 67 | + |
| 68 | +type Converter struct { |
| 69 | + Input *bufio.Scanner |
| 70 | + Output *bufio.Writer |
| 71 | + CommentExcluded bool |
| 72 | + |
| 73 | + state converterState |
| 74 | +} |
| 75 | + |
| 76 | +type converterState int |
| 77 | + |
| 78 | +const ( |
| 79 | + Empty converterState = iota |
| 80 | + CreateTable |
| 81 | + CreateTableExcludeSuffix |
| 82 | + CreateView |
| 83 | +) |
| 84 | + |
| 85 | +func (c *Converter) Convert() { |
| 86 | + |
| 87 | +} |
0 commit comments