gobm65.go
author Mikael Berthe <mikael@lilotux.net>
Wed, 15 Mar 2017 20:41:49 +0100
changeset 22 853f58e76ba5
parent 21 c00a10738af3
child 23 7be02d3facf4
permissions -rw-r--r--
Output statistics to stderr, not stdout
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     1
// Copyright (C) 2015-2017 Mikael Berthe <mikael@lilotux.net>. All rights reserved.
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     2
// Use of this source code is governed by the MIT license,
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     3
// which can be found in the LICENSE file.
5
9243a5739983 Add credits
Mikael Berthe <mikael@lilotux.net>
parents: 4
diff changeset
     4
//
9243a5739983 Add credits
Mikael Berthe <mikael@lilotux.net>
parents: 4
diff changeset
     5
// Thanks to atbrask's blog post <http://www.atbrask.dk/?p=98> for the
9243a5739983 Add credits
Mikael Berthe <mikael@lilotux.net>
parents: 4
diff changeset
     6
// protocol details.
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     7
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     8
// gobm65 is a Beurer BM65 Blood Pressure Monitor CLI reader.
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     9
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
package main
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
6
9b16361e7950 Add installation instructions
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
    12
// Installation:
9b16361e7950 Add installation instructions
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
    13
//
9b16361e7950 Add installation instructions
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
    14
// % go get hg.lilotux.net/golang/mikael/gobm65
9b16361e7950 Add installation instructions
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
    15
//
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    16
// Examples:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    17
//
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    18
// Get help:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    19
// % gobm65 --help
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    20
//
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    21
// Get records and display the average:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    22
// % gobm65 --average
10
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    23
// ... display more statistics:
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    24
// % gobm65 --stats
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    25
// ... also display World Health Organization classification:
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    26
// % gobm65 --stats --class
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    27
//
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    28
// Display the latest 3 records with the average:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    29
// % gobm65 -l 3 --average
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    30
// Display all records since a specific date:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    31
// % gobm65 --since "2016-06-01"
17
d83a4f6556e4 Update examples
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
    32
// Display all records before a specific date:
18
f6646f63b11a Change option names for consistency
Mikael Berthe <mikael@lilotux.net>
parents: 17
diff changeset
    33
// % gobm65 --to-date "2016-06-30"
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    34
// Display all records of the last 7 days:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    35
// % gobm65 --since "$(date "+%F" -d "7 days ago")"
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    36
//
10
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    37
// Display statistics for morning records:
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    38
// % gobm65 --from-time 06:00 --to-time 12:00 --stats
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    39
// One can invert times to get night data:
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    40
// % gobm65 --from-time 21:00 --to-time 09:00
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    41
//
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    42
// Display the last/first 10 records in JSON:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    43
// % gobm65 -l 10 --format json
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    44
//
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    45
// Save the records to a JSON file:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    46
// % gobm65 -o data_u2.json
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    47
//
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    48
// Read a JSON file and display average of the last 3 records:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    49
// % gobm65 -i data_u2.json -l 3 --average
10
b7ebc8c55b45 Update documentation
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
    50
// % gobm65 -i data_u2.json -l 3 --stats
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    51
// Read a JSON file, merge with device records, and save to another file:
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    52
// % gobm65 -i data_u2.json --merge -o data_u2-new.json
14
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
    53
//
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
    54
// Data from several JSON files can be merged, files are separated with a ';':
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
    55
// % gobm65 -i "data_u0.json;data_u1.json;data_u2.json"
4
1ec268839876 Add examples
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
    56
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    57
import (
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    58
	"encoding/json"
1
05b31eb60d27 Switch to github.com/tarm/serial
Mikael Berthe <mikael@lilotux.net>
parents: 0
diff changeset
    59
	"fmt"
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    60
	"io"
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    61
	"io/ioutil"
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    62
	"log"
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
    63
	"math"
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
    64
	"os"
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
    65
	"sort"
14
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
    66
	"strings"
3
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
    67
	"time"
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    68
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    69
	flag "github.com/docker/docker/pkg/mflag"
1
05b31eb60d27 Switch to github.com/tarm/serial
Mikael Berthe <mikael@lilotux.net>
parents: 0
diff changeset
    70
	"github.com/tarm/serial"
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    71
)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    72
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    73
type measurement struct {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    74
	Header    int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    75
	Systolic  int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    76
	Diastolic int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    77
	Pulse     int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    78
	Month     int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    79
	Day       int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    80
	Hour      int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    81
	Minute    int
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
    82
	Year      int
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    83
}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    84
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
    85
type simpleTime struct {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
    86
	hour, minute int
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
    87
}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
    88
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    89
// World Heath Organization blood pressure classification
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    90
const (
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    91
	BPOptimal              = iota // < 120,80:  Optimal
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    92
	BPNormal                      // < 130,85:  Normal
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    93
	BPHighNormal                  // < 140,90:  High-Normal
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    94
	BPMildHypertension            // < 160,100: Mild Hypertension
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    95
	BPModerateHypertension        // < 180,110: Moderate Hypertension
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    96
	BPSevereHypertension          // >=180,110: Severe Hypertension
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    97
)
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    98
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
    99
// WHOPressureClassification contains the World Health Organization blood
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   100
// pressure categories
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   101
var WHOPressureClassification = []string{
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   102
	"Optimal",
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   103
	"Normal",
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   104
	"High-Normal",
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   105
	"Mild Hypertension",
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   106
	"Moderate Hypertension",
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   107
	"Severe Hypertension",
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   108
}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   109
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   110
func getData(s io.ReadWriteCloser, buf []byte, size int) (int, error) {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   111
	t := 0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   112
	b := buf
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   113
	for t < size {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   114
		n, err := s.Read(b[t:])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   115
		if err != nil {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   116
			log.Fatal(err) // XXX
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   117
			return t, err
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   118
		}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   119
		//log.Printf("(%d bytes) %q\n", n, b[t:t+1])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   120
		t = t + n
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   121
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   122
	return t, nil
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   123
}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   124
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   125
func fetchData(dev string) (items []measurement, err error) {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   126
	c := &serial.Config{Name: dev, Baud: 4800}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   127
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   128
	var s *serial.Port
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   129
	s, err = serial.OpenPort(c)
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   130
	if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   131
		return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   132
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   133
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   134
	// =================== Handshake =====================
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   135
	q := []byte("\xaa")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   136
	//log.Printf("Query: %q\n", q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   137
	log.Println("Starting handshake...")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   138
	n, err := s.Write(q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   139
	if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   140
		return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   141
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   142
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   143
	buf := make([]byte, 128)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   144
	n, err = getData(s, buf, 1)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   145
	if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   146
		return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   147
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   148
	if n == 1 && buf[0] == '\x55' {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   149
		log.Println("Handshake successful.")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   150
	} else {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   151
		log.Printf("(%d bytes) %q\n", n, buf[:n])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   152
		s.Close()
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   153
		return items, fmt.Errorf("handshake failed")
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   154
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   155
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   156
	// =================== Desc =====================
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   157
	q = []byte("\xa4")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   158
	//log.Printf("Query: %q\n", q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   159
	log.Println("Requesting device description...")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   160
	n, err = s.Write(q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   161
	if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   162
		return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   163
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   164
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   165
	n, err = getData(s, buf, 32)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   166
	log.Printf("DESC> %q\n", buf[:n])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   167
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   168
	// =================== Count =====================
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   169
	q = []byte("\xa2")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   170
	//log.Printf("Query: %q\n", q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   171
	log.Println("Requesting data counter...")
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   172
	n, err = s.Write(q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   173
	if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   174
		return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   175
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   176
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   177
	n, err = getData(s, buf, 1)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   178
	if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   179
		return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   180
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   181
	var nRecords int
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   182
	if n == 1 {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   183
		log.Printf("%d item(s) available.", buf[0])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   184
		nRecords = int(buf[0])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   185
	} else {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   186
		log.Printf("(%d bytes) %q\n", n, buf[:n])
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   187
		return items, fmt.Errorf("no measurement found")
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   188
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   189
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   190
	// =================== Records =====================
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   191
	for i := 0; i < nRecords; i++ {
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   192
		q = []byte{'\xa3', uint8(i + 1)}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   193
		//log.Printf("Query: %q\n", q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   194
		//log.Printf("Requesting measurement %d...", i+1)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   195
		n, err = s.Write(q)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   196
		if err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   197
			return items, err
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   198
		}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   199
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   200
		n, err = getData(s, buf, 9)
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   201
		//log.Printf("DESC> %q\n", buf[:n])
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   202
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   203
		var data measurement
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   204
		data.Header = int(buf[0])
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   205
		data.Systolic = int(buf[1]) + 25
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   206
		data.Diastolic = int(buf[2]) + 25
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   207
		data.Pulse = int(buf[3])
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   208
		data.Month = int(buf[4])
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   209
		data.Day = int(buf[5])
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   210
		data.Hour = int(buf[6])
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   211
		data.Minute = int(buf[7])
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   212
		data.Year = int(buf[8]) + 2000
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   213
		items = append(items, data)
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   214
	}
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   215
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   216
	s.Close()
15
009c05621fba Ensure records read from the devices are correctly sorted
Mikael Berthe <mikael@lilotux.net>
parents: 14
diff changeset
   217
	return mergeItems(items, []measurement{}), nil
0
98ca96e114b2 Initial version
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   218
}
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   219
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   220
func loadFromJSONFile(filename string) (items []measurement, err error) {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   221
	data, err := ioutil.ReadFile(filename)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   222
	if err != nil {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   223
		return items, err
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   224
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   225
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   226
	err = json.Unmarshal(data, &items)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   227
	return items, err
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   228
}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   229
14
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   230
func loadFromJSONFiles(files string) (items []measurement, err error) {
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   231
	filenames := strings.Split(files, ";")
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   232
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   233
	for _, f := range filenames {
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   234
		if f == "" {
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   235
			continue
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   236
		}
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   237
		records, err := loadFromJSONFile(f)
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   238
		if err != nil {
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   239
			return items, err
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   240
		}
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   241
		items = mergeItems(records, items)
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   242
	}
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   243
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   244
	return
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   245
}
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   246
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   247
func mergeItems(newItems, oldItems []measurement) []measurement {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   248
	var result []measurement
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   249
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   250
	// Sort method: isLater returns true if mi's date is later or
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   251
	// equal to mj's date.
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   252
	isLater := func(mi, mj measurement) bool {
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   253
		switch {
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   254
		case mi.Year < mj.Year:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   255
			return false
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   256
		case mi.Year > mj.Year:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   257
			return true
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   258
		case mi.Month < mj.Month:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   259
			return false
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   260
		case mi.Month > mj.Month:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   261
			return true
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   262
		case mi.Day < mj.Day:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   263
			return false
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   264
		case mi.Day > mj.Day:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   265
			return true
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   266
		case mi.Hour < mj.Hour:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   267
			return false
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   268
		case mi.Hour > mj.Hour:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   269
			return true
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   270
		case mi.Minute < mj.Minute:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   271
			return false
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   272
		default:
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   273
			return true
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   274
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   275
	}
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   276
12
fc4f5c69286b Add note about sort.Slice()
Mikael Berthe <mikael@lilotux.net>
parents: 11
diff changeset
   277
	// Note that sort.Slice was introduced in go 1.8
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   278
	sort.Slice(oldItems, func(i, j int) bool {
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   279
		return isLater(oldItems[i], oldItems[j])
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   280
	})
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   281
	sort.Slice(newItems, func(i, j int) bool {
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   282
		return isLater(newItems[i], newItems[j])
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   283
	})
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   284
13
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   285
	// insertIfMissing inserts a measurement into a sorted slice
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   286
	insertIfMissing := func(l []measurement, m measurement) []measurement {
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   287
		var later bool
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   288
		var i int
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   289
		for i = range l {
13
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   290
			later = isLater(l[i], m)
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   291
			if !later {
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   292
				break
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   293
			}
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   294
			if l[i] == m { // Duplicate
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   295
				return l
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   296
			}
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   297
		}
13
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   298
		if later {
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   299
			return append(l, m)
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   300
		}
13
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   301
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   302
		return append(l[:i], append([]measurement{m}, l[i:]...)...)
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   303
	}
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   304
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   305
	for _, item := range newItems {
13
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   306
		result = insertIfMissing(result, item)
11
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   307
	}
01e6addfa1ee Improve merging
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   308
	for _, item := range oldItems {
13
72f6336c1167 Fix sorting when merging
Mikael Berthe <mikael@lilotux.net>
parents: 12
diff changeset
   309
		result = insertIfMissing(result, item)
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   310
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   311
	return result
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   312
}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   313
3
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   314
func parseDate(dateStr string) (date time.Time, err error) {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   315
	if dateStr == "" {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   316
		return
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   317
	}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   318
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   319
	var yy, mm, dd, h, m, s int
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   320
	n, e := fmt.Sscanf(dateStr, "%d-%d-%d %d:%d:%d", &yy, &mm, &dd, &h, &m, &s)
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   321
	if e != nil && n < 3 {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   322
		err = e
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   323
		return
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   324
	}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   325
	if n < 6 {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   326
		log.Printf("Date parsed with only %d fields\n", n)
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   327
	}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   328
	date = time.Date(yy, time.Month(mm), dd, h, m, s, 0, time.Local)
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   329
	return
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   330
}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   331
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   332
func parseTime(timeStr string) (t simpleTime, err error) {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   333
	_, err = fmt.Sscanf(timeStr, "%d:%d", &t.hour, &t.minute)
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   334
	return
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   335
}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   336
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   337
func average(items []measurement) (measurement, error) {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   338
	var avgMeasure measurement
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   339
	var avgCount int
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   340
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   341
	for _, data := range items {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   342
		avgMeasure.Systolic += data.Systolic
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   343
		avgMeasure.Diastolic += data.Diastolic
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   344
		avgMeasure.Pulse += data.Pulse
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   345
		avgCount++
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   346
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   347
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   348
	roundDivision := func(a, b int) int {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   349
		return int(0.5 + float64(a)/float64(b))
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   350
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   351
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   352
	if avgCount == 0 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   353
		return avgMeasure, fmt.Errorf("cannot compute average: empty set")
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   354
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   355
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   356
	avgMeasure.Systolic = roundDivision(avgMeasure.Systolic, avgCount)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   357
	avgMeasure.Diastolic = roundDivision(avgMeasure.Diastolic, avgCount)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   358
	avgMeasure.Pulse = roundDivision(avgMeasure.Pulse, avgCount)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   359
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   360
	return avgMeasure, nil
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   361
}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   362
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   363
func intMedian(numbers []int) int {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   364
	middle := len(numbers) / 2
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   365
	med := numbers[middle]
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   366
	if len(numbers)%2 == 0 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   367
		med = (med + numbers[middle-1]) / 2
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   368
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   369
	return med
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   370
}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   371
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   372
func median(items []measurement) (measurement, error) {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   373
	var med measurement
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   374
	if len(items) == 0 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   375
		return med, fmt.Errorf("cannot compute average: empty set")
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   376
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   377
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   378
	var sys, dia, pul []int
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   379
	for _, data := range items {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   380
		sys = append(sys, data.Systolic)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   381
		dia = append(dia, data.Diastolic)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   382
		pul = append(pul, data.Pulse)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   383
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   384
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   385
	sort.Ints(sys)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   386
	sort.Ints(dia)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   387
	sort.Ints(pul)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   388
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   389
	med.Systolic = intMedian(sys)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   390
	med.Diastolic = intMedian(dia)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   391
	med.Pulse = intMedian(pul)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   392
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   393
	return med, nil
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   394
}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   395
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   396
func stdDeviation(items []measurement) (measurement, error) {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   397
	var sDev measurement
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   398
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   399
	if len(items) <= 1 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   400
		return sDev, fmt.Errorf("cannot compute deviation: set too small")
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   401
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   402
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   403
	var sumSys, sumDia, sumPul float64
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   404
	avg, err := average(items)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   405
	if err != nil {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   406
		return sDev, err
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   407
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   408
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   409
	for _, data := range items {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   410
		sumSys += math.Pow(float64(data.Systolic-avg.Systolic), 2)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   411
		sumDia += math.Pow(float64(data.Diastolic-avg.Diastolic), 2)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   412
		sumPul += math.Pow(float64(data.Pulse-avg.Pulse), 2)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   413
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   414
20
fe86e794b63a Fix standard deviation calculation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   415
	sDev.Systolic = int(math.Sqrt(sumSys / float64(len(items))))
fe86e794b63a Fix standard deviation calculation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   416
	sDev.Diastolic = int(math.Sqrt(sumDia / float64(len(items))))
fe86e794b63a Fix standard deviation calculation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   417
	sDev.Pulse = int(math.Sqrt(sumPul / float64(len(items))))
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   418
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   419
	return sDev, nil
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   420
}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   421
19
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   422
// avgAbsoluteDeviation computes the average absolute deviation (or Mean
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   423
// Absolute Deviation) of the measurement set
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   424
func avgAbsoluteDeviation(items []measurement) (measurement, error) {
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   425
	var dev measurement
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   426
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   427
	if len(items) <= 1 {
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   428
		return dev, fmt.Errorf("cannot compute deviation: set too small")
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   429
	}
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   430
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   431
	var sumSys, sumDia, sumPul float64
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   432
	avg, err := average(items)
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   433
	if err != nil {
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   434
		return dev, err
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   435
	}
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   436
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   437
	for _, data := range items {
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   438
		sumSys += math.Abs(float64(data.Systolic - avg.Systolic))
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   439
		sumDia += math.Abs(float64(data.Diastolic - avg.Diastolic))
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   440
		sumPul += math.Abs(float64(data.Pulse - avg.Pulse))
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   441
	}
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   442
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   443
	dev.Systolic = int(sumSys / float64(len(items)))
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   444
	dev.Diastolic = int(sumDia / float64(len(items)))
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   445
	dev.Pulse = int(sumPul / float64(len(items)))
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   446
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   447
	return dev, nil
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   448
}
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   449
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   450
func (m measurement) WHOClass() int {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   451
	switch {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   452
	case m.Systolic < 120 && m.Diastolic < 80:
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   453
		return BPOptimal
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   454
	case m.Systolic < 130 && m.Diastolic < 85:
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   455
		return BPNormal
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   456
	case m.Systolic < 140 && m.Diastolic < 90:
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   457
		return BPHighNormal
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   458
	case m.Systolic < 160 && m.Diastolic < 100:
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   459
		return BPMildHypertension
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   460
	case m.Systolic < 180 && m.Diastolic < 110:
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   461
		return BPModerateHypertension
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   462
	}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   463
	return BPSevereHypertension
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   464
}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   465
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   466
func (m measurement) WHOClassString() string {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   467
	return WHOPressureClassification[m.WHOClass()]
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   468
}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   469
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   470
func displayWHOClassStats(items []measurement) {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   471
	sum := 0
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   472
	classes := make(map[int]int)
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   473
	for _, m := range items {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   474
		s := m.WHOClass()
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   475
		classes[s]++
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   476
		sum += s
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   477
	}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   478
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   479
	avg := float64(sum) / float64(len(items))
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   480
	fmt.Fprintf(os.Stderr, "Average WHO classification: %s (%.2f)\n",
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   481
		WHOPressureClassification[int(0.5+avg)], avg)
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   482
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   483
	for c := range WHOPressureClassification {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   484
		fmt.Fprintf(os.Stderr, " . %21s: %3d (%d%%)\n",
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   485
			WHOPressureClassification[c], classes[c],
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   486
			classes[c]*100/len(items))
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   487
	}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   488
}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   489
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   490
func main() {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   491
	inFile := flag.String([]string{"-input-file", "i"}, "", "Input JSON file")
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   492
	outFile := flag.String([]string{"-output-file", "o"}, "", "Output JSON file")
3
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   493
	limit := flag.Uint([]string{"-limit", "l"}, 0, "Limit number of items to N first")
18
f6646f63b11a Change option names for consistency
Mikael Berthe <mikael@lilotux.net>
parents: 17
diff changeset
   494
	toDate := flag.String([]string{"-to-date"}, "",
16
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   495
		"Filter records before date (YYYY-mm-dd HH:MM:SS)")
18
f6646f63b11a Change option names for consistency
Mikael Berthe <mikael@lilotux.net>
parents: 17
diff changeset
   496
	fromDate := flag.String([]string{"-from-date", "-since"}, "",
3
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   497
		"Filter records from date (YYYY-mm-dd HH:MM:SS)")
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   498
	format := flag.String([]string{"-format", "f"}, "", "Output format (csv, json)")
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   499
	avg := flag.Bool([]string{"-average", "a"}, false, "Compute average")
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   500
	stats := flag.Bool([]string{"-stats"}, false, "Compute statistics")
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   501
	whoClass := flag.Bool([]string{"-class", "c"}, false, "Display WHO classification")
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   502
	merge := flag.Bool([]string{"-merge", "m"}, false,
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   503
		"Try to merge input JSON file with fetched data")
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   504
	device := flag.String([]string{"-device", "d"}, "/dev/ttyUSB0", "Serial device")
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   505
	fromTime := flag.String([]string{"-from-time"}, "", "Select records after time (HH:MM)")
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   506
	toTime := flag.String([]string{"-to-time"}, "", "Select records bofore time (HH:MM)")
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   507
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   508
	var startTime, endTime simpleTime
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   509
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   510
	flag.Parse()
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   511
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   512
	switch *format {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   513
	case "":
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   514
		if *outFile == "" {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   515
			*format = "csv"
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   516
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   517
		break
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   518
	case "json", "csv":
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   519
		break
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   520
	default:
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   521
		log.Fatal("Unknown output format.  Possible choices are csv, json.")
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   522
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   523
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   524
	if *fromTime != "" {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   525
		if t, err := parseTime(*fromTime); err != nil {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   526
			log.Fatal("Cannot parse 'from' time: ", err)
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   527
		} else {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   528
			startTime = t
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   529
		}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   530
	}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   531
	if *toTime != "" {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   532
		if t, err := parseTime(*toTime); err != nil {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   533
			log.Fatal("Cannot parse 'to' time: ", err)
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   534
		} else {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   535
			endTime = t
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   536
		}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   537
	}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   538
18
f6646f63b11a Change option names for consistency
Mikael Berthe <mikael@lilotux.net>
parents: 17
diff changeset
   539
	startDate, err := parseDate(*fromDate)
3
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   540
	if err != nil {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   541
		log.Fatal("Could not parse date: ", err)
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   542
	}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   543
18
f6646f63b11a Change option names for consistency
Mikael Berthe <mikael@lilotux.net>
parents: 17
diff changeset
   544
	endDate, err := parseDate(*toDate)
16
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   545
	if err != nil {
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   546
		log.Fatal("Could not parse date: ", err)
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   547
	}
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   548
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   549
	var items []measurement
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   550
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   551
	// Read data
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   552
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   553
	if *inFile == "" {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   554
		// Read from device
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   555
		if items, err = fetchData(*device); err != nil {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   556
			log.Fatal(err)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   557
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   558
	} else {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   559
		// Read from file
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   560
		var fileItems []measurement
14
be004d8634e1 Add support for several input JSON files
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   561
		if fileItems, err = loadFromJSONFiles(*inFile); err != nil {
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   562
			log.Fatal(err)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   563
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   564
		if *merge {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   565
			if items, err = fetchData(*device); err != nil {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   566
				log.Fatal(err)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   567
			}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   568
			items = mergeItems(items, fileItems)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   569
		} else {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   570
			items = fileItems
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   571
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   572
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   573
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   574
	// Apply filters
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   575
3
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   576
	if !startDate.IsZero() {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   577
		log.Printf("Filtering out records before %v...\n", startDate)
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   578
		for i := range items {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   579
			iDate := time.Date(items[i].Year, time.Month(items[i].Month),
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   580
				items[i].Day, items[i].Hour, items[i].Minute, 0, 0,
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   581
				time.Local)
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   582
			if iDate.Sub(startDate) < 0 {
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   583
				items = items[0:i]
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   584
				break
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   585
			}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   586
		}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   587
	}
429d7e612cfd Add option --since
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   588
16
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   589
	if !endDate.IsZero() {
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   590
		log.Printf("Filtering out records after %v...\n", endDate)
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   591
		for i := range items {
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   592
			iDate := time.Date(items[i].Year, time.Month(items[i].Month),
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   593
				items[i].Day, items[i].Hour, items[i].Minute, 0, 0,
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   594
				time.Local)
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   595
			if iDate.Sub(endDate) <= 0 {
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   596
				items = items[i:]
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   597
				break
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   598
			}
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   599
		}
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   600
	}
c64c730a7b16 Add option --before
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   601
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   602
	if *fromTime != "" || *toTime != "" {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   603
		log.Println("Filtering hours...")
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   604
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   605
		compare := func(m measurement, t simpleTime) int {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   606
			if m.Hour*60+m.Minute < t.hour*60+t.minute {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   607
				return -1
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   608
			}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   609
			if m.Hour*60+m.Minute > t.hour*60+t.minute {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   610
				return 1
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   611
			}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   612
			return 0
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   613
		}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   614
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   615
		inv := false
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   616
		if *fromTime != "" && *toTime != "" &&
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   617
			startTime.hour*60+startTime.minute > endTime.hour*60+endTime.minute {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   618
			inv = true
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   619
		}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   620
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   621
		var newItems []measurement
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   622
		for _, data := range items {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   623
			if inv {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   624
				if compare(data, startTime) == -1 && compare(data, endTime) == 1 {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   625
					continue
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   626
				}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   627
				newItems = append(newItems, data)
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   628
				continue
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   629
			}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   630
			if *fromTime != "" && compare(data, startTime) == -1 {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   631
				continue
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   632
			}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   633
			if *toTime != "" && compare(data, endTime) == 1 {
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   634
				continue
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   635
			}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   636
			newItems = append(newItems, data)
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   637
		}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   638
		items = newItems
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   639
	}
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   640
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   641
	if *limit > 0 && len(items) > int(*limit) {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   642
		items = items[0:*limit]
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   643
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   644
9
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   645
	// Done with filtering
588f7779b0b5 Add time filtering (--to-time, --from-time)
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   646
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   647
	if *format == "csv" {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   648
		for i, data := range items {
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   649
			fmt.Printf("%d;%x;%d-%02d-%02d %02d:%02d;%d;%d;%d",
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   650
				i+1, data.Header,
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   651
				data.Year, data.Month, data.Day,
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   652
				data.Hour, data.Minute,
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   653
				data.Systolic, data.Diastolic, data.Pulse)
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   654
			if *whoClass {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   655
				fmt.Printf(";%s", data.WHOClassString())
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   656
			}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   657
			fmt.Println()
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   658
		}
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   659
	}
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   660
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   661
	if *stats {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   662
		*avg = true
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   663
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   664
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   665
	if *avg && len(items) > 0 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   666
		avgMeasure, err := average(items)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   667
		if err != nil {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   668
			log.Println("Error:", err)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   669
		} else {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   670
			fmt.Fprintf(os.Stderr, "Average: %d;%d;%d",
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   671
				avgMeasure.Systolic, avgMeasure.Diastolic,
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   672
				avgMeasure.Pulse)
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   673
			if *whoClass {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   674
				fmt.Fprintf(os.Stderr, "  [%s]",
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   675
					avgMeasure.WHOClassString())
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   676
			}
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   677
			fmt.Fprintln(os.Stderr)
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   678
		}
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   679
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   680
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   681
	if *stats && len(items) > 1 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   682
		d, err := stdDeviation(items)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   683
		if err != nil {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   684
			log.Println("Error:", err)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   685
		} else {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   686
			fmt.Fprintf(os.Stderr, "Standard deviation: %d;%d;%d\n",
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   687
				d.Systolic, d.Diastolic, d.Pulse)
7
17a1a3f4fb86 Round results for average calculation
Mikael Berthe <mikael@lilotux.net>
parents: 6
diff changeset
   688
		}
19
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   689
		d, err = avgAbsoluteDeviation(items)
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   690
		if err != nil {
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   691
			log.Println("Error:", err)
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   692
		} else {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   693
			fmt.Fprintf(os.Stderr, "Average absolute deviation: %d;%d;%d\n",
19
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   694
				d.Systolic, d.Diastolic, d.Pulse)
afbb4d9ae536 Add Mean Absolute Deviation to the statistics
Mikael Berthe <mikael@lilotux.net>
parents: 18
diff changeset
   695
		}
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   696
	}
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   697
	if *stats && len(items) > 0 {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   698
		m, err := median(items)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   699
		if err != nil {
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   700
			log.Println("Error:", err)
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   701
		} else {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   702
			fmt.Fprintf(os.Stderr, "Median values: %d;%d;%d",
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   703
				m.Systolic, m.Diastolic, m.Pulse)
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   704
			if *whoClass {
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   705
				fmt.Fprintf(os.Stderr, "  [%s]", m.WHOClassString())
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   706
			}
22
853f58e76ba5 Output statistics to stderr, not stdout
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   707
			fmt.Fprintln(os.Stderr)
21
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   708
		}
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   709
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   710
		if *whoClass {
c00a10738af3 Add option --class to display WHO blood pressure classification
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   711
			displayWHOClassStats(items)
8
366f991716a9 Add more statistics
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   712
		}
2
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   713
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   714
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   715
	if *format == "json" || *outFile != "" {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   716
		rawJSON, err := json.MarshalIndent(items, "", "  ")
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   717
		if err != nil {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   718
			log.Fatal("Error:", err)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   719
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   720
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   721
		if *format == "json" {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   722
			fmt.Println(string(rawJSON))
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   723
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   724
		if *outFile != "" {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   725
			err = ioutil.WriteFile(*outFile, rawJSON, 0600)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   726
			if err != nil {
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   727
				log.Println("Could not write output file:", err)
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   728
			}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   729
		}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   730
	}
2452d9b23ec1 Add options and JSON support
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   731
}