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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
// GENERATED CODE, DO NOT EDIT
package dstream
import (
"encoding/gob"
"io"
"time"
)
// Save saves the dstream to a file. It can subsequently be reloaded with Load.
func Save(ds Dstream, w io.Writer) {
ds.Reset()
enc := gob.NewEncoder(w)
err := enc.Encode(ds.Names())
if err != nil {
panic(err)
}
first := true
for ds.Next() {
if first {
var dtypes []Dtype
for j := 0; j < ds.NumVar(); j++ {
switch ds.GetPos(j).(type) {
case []string:
dtypes = append(dtypes, String)
case []time.Time:
dtypes = append(dtypes, Time)
case []uint8:
dtypes = append(dtypes, Uint8)
case []uint16:
dtypes = append(dtypes, Uint16)
case []uint32:
dtypes = append(dtypes, Uint32)
case []uint64:
dtypes = append(dtypes, Uint64)
case []int8:
dtypes = append(dtypes, Int8)
case []int16:
dtypes = append(dtypes, Int16)
case []int32:
dtypes = append(dtypes, Int32)
case []int64:
dtypes = append(dtypes, Int64)
case []float32:
dtypes = append(dtypes, Float32)
case []float64:
dtypes = append(dtypes, Float64)
}
}
err := enc.Encode(&dtypes)
if err != nil {
panic(err)
}
first = false
}
for j := 0; j < ds.NumVar(); j++ {
switch x := ds.GetPos(j).(type) {
case []string:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []time.Time:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []uint8:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []uint16:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []uint32:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []uint64:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []int8:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []int16:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []int32:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []int64:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []float32:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
case []float64:
err := enc.Encode(&x)
if err != nil {
panic(err)
}
}
}
}
}
// load is a dstream that reads its data from a file that has been constructed using Save.
type load struct {
// done becomes true when the whole data source has been read
done bool
// The variable names
names []string
// The number of observations, not relevant until reading is complete.
nobs int
// The data types of the variables
dtypes []Dtype
// Use this to decode gob data from the file.
dec *gob.Decoder
// namespos maps variable names to their column positions
namespos map[string]int
// This holds the data for the current chunk
data []interface{}
}
// NewLoad returns a dstream that loads data from the given file. The file must
// have been created using the Save function.
func NewLoad(r io.Reader) Dstream {
var ld load
ld.init(r)
return &ld
}
func (ld *load) init(r io.Reader) {
ld.dec = gob.NewDecoder(r)
err := ld.dec.Decode(&ld.names)
if err != nil {
panic(err)
}
ld.namespos = make(map[string]int)
for k, na := range ld.names {
ld.namespos[na] = k
}
err = ld.dec.Decode(&ld.dtypes)
if err != nil {
panic(err)
}
ld.data = make([]interface{}, len(ld.names))
}
// Reset panics since this concrete type of Dstream cannot be reset.
func (ld *load) Reset() {
panic("A dstream created using NewLoad cannot be reset.\n")
}
// GetPos returns the data for the variable at the given position in the current chunk.
func (ld *load) GetPos(j int) interface{} {
return ld.data[j]
}
// Names returns the variable names.
func (ld *load) Names() []string {
return ld.names
}
// NumObs returns the number of observations (data rows) in the dstream. A -1 is
// returned if the source has not been completely read.
func (ld *load) NumObs() int {
if !ld.done {
return -1
}
return ld.nobs
}
// Get returns the data for the given named variable in the current chunk.
func (ld *load) Get(na string) interface{} {
return ld.GetPos(ld.namespos[na])
}
// Close does nothing, it is here to satisfy the Dstream interface.
func (ld *load) Close() {
}
// NumVar returns the number of variables in the dstream.
func (ld *load) NumVar() int {
return len(ld.names)
}
// Next advances to the next chunk and returns true, or returns false if
// all chunks have been read.
func (ld *load) Next() bool {
// Loop over variables within chunks
for j := 0; j < ld.NumVar(); j++ {
switch ld.dtypes[j] {
case String:
var x []string
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Time:
var x []time.Time
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Uint8:
var x []uint8
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Uint16:
var x []uint16
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Uint32:
var x []uint32
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Uint64:
var x []uint64
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Int8:
var x []int8
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Int16:
var x []int16
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Int32:
var x []int32
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Int64:
var x []int64
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Float32:
var x []float32
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
case Float64:
var x []float64
err := ld.dec.Decode(&x)
if err == io.EOF {
if j != 0 {
panic("File is corrupt")
}
ld.done = true
return false
} else if err != nil {
panic(err)
}
ld.data[j] = x
if j == 0 {
ld.nobs += len(x)
}
}
}
return true
}
|