-
Notifications
You must be signed in to change notification settings - Fork 4
/
read_and_write.go
108 lines (93 loc) · 2.33 KB
/
read_and_write.go
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
/*
Copyright (c) 2018 XLAB d.o.o
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"bufio"
"math/big"
"os"
"strings"
"github.com/pkg/errors"
"github.com/fentec-project/gofe/data"
)
// readMatFromFile reads matrix elements from the provided file
// and gives a matrix and the names of the rows
func readMatFromFile(path string) (data.Matrix, []string, error) {
file, err := os.Open(path)
if err != nil {
return nil, nil, errors.Wrap(err, "error reading matrix from file")
}
scanner := bufio.NewScanner(file)
vecs := make([]data.Vector, 0)
first := true
var names []string
for scanner.Scan() {
line := scanner.Text()
values := strings.Split(line, ";")
if first == true {
names = values
first = false
} else {
v := make(data.Vector, len(values))
for i, n := range values {
v[i], _ = new(big.Int).SetString(n, 10)
}
vecs = append(vecs, v)
}
}
mat, err := data.NewMatrix(vecs)
return mat, names, err
}
// writeVecToFile takes a vector and the names of its inputs and writes
// a file with the first line being names of the inputs and the second line
// its corresponding values in the vector
func writeVecToFile(path string, names []string, vec data.Vector) (error) {
// open output file
file, err := os.Create(path)
if err != nil {
panic(err)
}
// close fo on exit and check for its returned error
defer func() {
if err := file.Close(); err != nil {
panic(err)
}
}()
// make a write buffer
w := bufio.NewWriter(file)
// make a write string
str := ""
for i, e := range names {
str += e
if i < len(vec) - 1 {
str += ";"
} else {
str += "\n"
}
}
for i, e := range vec {
str += e.String()
if i < len(vec) - 1 {
str += ";"
} else {
str += "\n"
}
}
// write
if _, err := w.Write([]byte(str)); err != nil {
panic(err)
}
if err = w.Flush(); err != nil {
panic(err)
}
return err
}