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