Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Portions copyright 2019-present Open Networking Foundation |
| 3 | * Original copyright 2019-present Ciena Corporation |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | package commands |
| 18 | |
| 19 | import ( |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 20 | "errors" |
Scott Baker | 72efd75 | 2019-05-15 13:12:20 -0700 | [diff] [blame] | 21 | "fmt" |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 22 | flags "github.com/jessevdk/go-flags" |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 23 | "strings" |
| 24 | ) |
| 25 | |
| 26 | const ( |
| 27 | DEFAULT_TRANSFER_FORMAT = "table{{ .Status }}\t{{ .Checksum }}\t{{ .Chunks }}\t{{ .Bytes }}" |
| 28 | ) |
| 29 | |
| 30 | type TransferOutput struct { |
| 31 | Status string `json:"status"` |
| 32 | Checksum string `json:"checksum"` |
| 33 | Chunks int `json:"chunks"` |
| 34 | Bytes int `json:"bytes"` |
| 35 | } |
| 36 | |
| 37 | type TransferUpload struct { |
| 38 | OutputOptions |
| 39 | ChunkSize int `short:"h" long:"chunksize" default:"65536" description:"Host and port"` |
| 40 | Args struct { |
| 41 | LocalFileName string |
| 42 | URI string |
| 43 | } `positional-args:"yes" required:"yes"` |
| 44 | } |
| 45 | |
| 46 | type TransferDownload struct { |
| 47 | OutputOptions |
| 48 | Args struct { |
| 49 | URI string |
| 50 | LocalFileName string |
| 51 | } `positional-args:"yes" required:"yes"` |
| 52 | } |
| 53 | |
| 54 | type TransferOpts struct { |
| 55 | Upload TransferUpload `command:"upload"` |
| 56 | Download TransferDownload `command:"download"` |
| 57 | } |
| 58 | |
| 59 | var transferOpts = TransferOpts{} |
| 60 | |
| 61 | func RegisterTransferCommands(parser *flags.Parser) { |
| 62 | parser.AddCommand("transfer", "file transfer commands", "Commands to transfer files to and from XOS", &transferOpts) |
| 63 | } |
| 64 | |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 65 | /* Command processors */ |
| 66 | |
| 67 | func (options *TransferUpload) Execute(args []string) error { |
| 68 | |
Scott Baker | 6cf525a | 2019-05-09 12:25:08 -0700 | [diff] [blame] | 69 | conn, descriptor, err := InitReflectionClient() |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 70 | if err != nil { |
| 71 | return err |
| 72 | } |
| 73 | defer conn.Close() |
| 74 | |
| 75 | local_name := options.Args.LocalFileName |
| 76 | uri := options.Args.URI |
| 77 | |
Scott Baker | 6cf525a | 2019-05-09 12:25:08 -0700 | [diff] [blame] | 78 | if IsFileUri(local_name) { |
| 79 | return errors.New("local_name argument should not be a uri") |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Scott Baker | 6cf525a | 2019-05-09 12:25:08 -0700 | [diff] [blame] | 82 | if !IsFileUri(uri) { |
| 83 | return errors.New("uri argument should be a file:// uri") |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Scott Baker | 72efd75 | 2019-05-15 13:12:20 -0700 | [diff] [blame] | 86 | h, upload_result, err := UploadFile(conn, descriptor, local_name, uri, options.ChunkSize) |
| 87 | |
| 88 | if upload_result.GetFieldByName("checksum").(string) != h.GetChecksum() { |
| 89 | return fmt.Errorf("Checksum mismatch, expected=%s, received=%s", |
| 90 | h.GetChecksum(), |
| 91 | upload_result.GetFieldByName("checksum").(string)) |
| 92 | } |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 93 | |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 94 | data := make([]TransferOutput, 1) |
Scott Baker | 72efd75 | 2019-05-15 13:12:20 -0700 | [diff] [blame] | 95 | data[0].Checksum = upload_result.GetFieldByName("checksum").(string) |
| 96 | data[0].Chunks = int(upload_result.GetFieldByName("chunks_received").(int32)) |
| 97 | data[0].Bytes = int(upload_result.GetFieldByName("bytes_received").(int32)) |
| 98 | data[0].Status = GetEnumValue(upload_result, "status") |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 99 | |
Scott Baker | 5281d00 | 2019-05-16 10:45:26 -0700 | [diff] [blame] | 100 | FormatAndGenerateOutput(&options.OutputOptions, DEFAULT_TRANSFER_FORMAT, "{{.Status}}", data) |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 101 | |
| 102 | return nil |
| 103 | } |
| 104 | |
| 105 | func IsFileUri(s string) bool { |
| 106 | return strings.HasPrefix(s, "file://") |
| 107 | } |
| 108 | |
| 109 | func (options *TransferDownload) Execute(args []string) error { |
Scott Baker | 6cf525a | 2019-05-09 12:25:08 -0700 | [diff] [blame] | 110 | conn, descriptor, err := InitReflectionClient() |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 111 | if err != nil { |
| 112 | return err |
| 113 | } |
| 114 | defer conn.Close() |
| 115 | |
| 116 | local_name := options.Args.LocalFileName |
| 117 | uri := options.Args.URI |
| 118 | |
| 119 | if IsFileUri(local_name) { |
| 120 | return errors.New("local_name argument should not be a uri") |
| 121 | } |
| 122 | |
| 123 | if !IsFileUri(uri) { |
| 124 | return errors.New("uri argument should be a file:// uri") |
| 125 | } |
| 126 | |
Scott Baker | 6cf525a | 2019-05-09 12:25:08 -0700 | [diff] [blame] | 127 | h, err := DownloadFile(conn, descriptor, uri, local_name) |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 128 | if err != nil { |
| 129 | return err |
| 130 | } |
| 131 | |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 132 | data := make([]TransferOutput, 1) |
| 133 | data[0].Chunks = h.chunks |
| 134 | data[0].Bytes = h.bytes |
| 135 | data[0].Status = h.status |
Scott Baker | 5281d00 | 2019-05-16 10:45:26 -0700 | [diff] [blame] | 136 | data[0].Checksum = h.GetChecksum() |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 137 | |
Scott Baker | 5281d00 | 2019-05-16 10:45:26 -0700 | [diff] [blame] | 138 | FormatAndGenerateOutput(&options.OutputOptions, DEFAULT_TRANSFER_FORMAT, "{{.Status}}", data) |
Scott Baker | 2c0ebda | 2019-05-06 16:55:47 -0700 | [diff] [blame] | 139 | |
| 140 | return nil |
| 141 | } |