Skip to content

Commit ce4600f

Browse files
committed
wip
1 parent a888d0a commit ce4600f

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

data/capture_buffer_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ func TestCaptureBufferReader(t *testing.T) {
620620

621621
// Path() is the same as the first paramenter passed to NewCaptureBuffer
622622
test.That(t, b.Path(), test.ShouldResemble, tmpDir)
623-
test.That(t, b.MetaData, test.ShouldResemble, readImageCaptureMetadata)
623+
test.That(t, b.metaData, test.ShouldResemble, readImageCaptureMetadata)
624624

625625
now := time.Now()
626626
timeRequested := timestamppb.New(now.UTC())
@@ -689,7 +689,7 @@ func NickTest(t *testing.T) {
689689

690690
// Path() is the same as the first paramenter passed to NewCaptureBuffer
691691
test.That(t, b.Path(), test.ShouldResemble, tmpDir)
692-
test.That(t, b.MetaData, test.ShouldResemble, readImageCaptureMetadata)
692+
test.That(t, b.metaData, test.ShouldResemble, readImageCaptureMetadata)
693693

694694
now := time.Now()
695695
timeRequested := timestamppb.New(now.UTC())
@@ -725,7 +725,7 @@ func NickTest(t *testing.T) {
725725
test.That(t, err, test.ShouldBeError, io.EOF)
726726
}
727727

728-
// nolint
728+
//nolint
729729
func getCaptureFiles(dir string) (dcFiles, progFiles []string) {
730730
_ = filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
731731
if err != nil {

data/capture_file.go

+13-13
Original file line numberDiff line numberDiff line change
@@ -194,19 +194,19 @@ func getDataType(methodName string) v1.DataType {
194194

195195
// SensorDataFromCaptureFilePath returns all readings in the file at filePath.
196196
// NOTE: (Nick S) At time of writing this is only used in tests.
197-
//func SensorDataFromCaptureFilePath(filePath string) ([]*v1.SensorData, error) {
198-
// //nolint:gosec
199-
// f, err := os.Open(filePath)
200-
// if err != nil {
201-
// return nil, err
202-
// }
203-
// dcFile, err := NewCaptureFile(f)
204-
// if err != nil {
205-
// return nil, err
206-
// }
207-
208-
// return SensorDataFromCaptureFile(dcFile)
209-
//}
197+
func SensorDataFromCaptureFilePath(filePath string) ([]*v1.SensorData, error) {
198+
//nolint:gosec
199+
f, err := os.Open(filePath)
200+
if err != nil {
201+
return nil, err
202+
}
203+
dcFile, err := NewCaptureFile(f)
204+
if err != nil {
205+
return nil, err
206+
}
207+
208+
return SensorDataFromCaptureFile(dcFile)
209+
}
210210

211211
// SensorDataFromCaptureFile returns all readings in f.
212212
func SensorDataFromCaptureFile(f *CaptureFile) ([]*v1.SensorData, error) {

services/datamanager/builtin/builtin_sync_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ func getCapturedData(filePaths []string) (int, []*v1.SensorData, error) {
10551055
if err != nil {
10561056
return 0, nil, err
10571057
}
1058-
dcFile, err := data.ReadCaptureFile(osFile)
1058+
dcFile, err := data.NewCaptureFile(osFile)
10591059
if err != nil {
10601060
return 0, nil, err
10611061
}

services/datamanager/builtin/capture/capture.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ func collectorConfigDescription(
269269
}
270270

271271
func targetDir(captureDir string, collectorConfig datamanager.DataCaptureConfig) string {
272-
return data.CaptureFilePathWithReplacedReservedChars(
272+
return data.FilePathWithReplacedReservedChars(
273273
filepath.Join(captureDir, collectorConfig.Name.API.String(),
274274
collectorConfig.Name.ShortName(), collectorConfig.Method))
275275
}

services/datamanager/builtin/sync/sync.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ func (s *Sync) syncFile(config Config, filePath string) {
367367
}
368368

369369
func (s *Sync) syncDataCaptureFile(f *os.File, captureDir string, logger logging.Logger) {
370-
captureFile, err := data.ReadCaptureFile(f)
370+
captureFile, err := data.NewCaptureFile(f)
371371
// if you can't read the capture file's metadata field, close & move it to the failed directory
372372
if err != nil {
373373
cause := errors.Wrap(err, "ReadCaptureFile failed")

0 commit comments

Comments
 (0)