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