wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*  Copyright (C) 2023-2024 José Rebelo
 
    This file is part of Gadgetbridge.
 
    Gadgetbridge is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published
    by the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
 
    Gadgetbridge is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.
 
    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>. */
package nodomain.freeyourgadget.gadgetbridge.util.gpx.model;
 
import androidx.annotation.NonNull;
 
import java.util.Date;
import java.util.Objects;
 
import nodomain.freeyourgadget.gadgetbridge.model.ActivityPoint;
import nodomain.freeyourgadget.gadgetbridge.model.GPSCoordinate;
 
public class GpxTrackPoint extends GPSCoordinate {
    private final Date time;
    private final int heartRate;
 
    public GpxTrackPoint(final double longitude, final double latitude, final double altitude, final Date time) {
        this(longitude, latitude, altitude, time, -1);
    }
 
    public GpxTrackPoint(final double longitude, final double latitude, final double altitude, final Date time, final int heartRate) {
        super(longitude, latitude, altitude);
        this.time = time;
        this.heartRate = heartRate;
    }
 
    public Date getTime() {
        return time;
    }
 
    public int getHeartRate() {
        return heartRate;
    }
 
    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof GpxTrackPoint)) return false;
        if (!super.equals(o)) return false;
        final GpxTrackPoint that = (GpxTrackPoint) o;
        return Objects.equals(time, that.time) &&
                Objects.equals(heartRate, that.heartRate);
    }
 
    @Override
    public int hashCode() {
        return Objects.hash(super.hashCode(), time, heartRate);
    }
 
    @NonNull
    @Override
    public String toString() {
        return "ts: " + time.getTime() + ", " + super.toString() + ", heartRate: " + heartRate;
    }
 
    public ActivityPoint toActivityPoint() {
        final ActivityPoint activityPoint = new ActivityPoint();
        activityPoint.setTime(time);
        activityPoint.setLocation(this);
        activityPoint.setHeartRate(heartRate);
 
        return activityPoint;
    }
 
    public static class Builder {
        private double longitude;
        private double latitude;
        private double altitude;
        private Date time;
        private int heartRate = -1;
 
        public Builder withLongitude(final double longitude) {
            this.longitude = longitude;
            return this;
        }
 
        public Builder withLatitude(final double latitude) {
            this.latitude = latitude;
            return this;
        }
 
        public Builder withAltitude(final double altitude) {
            this.altitude = altitude;
            return this;
        }
 
        public Builder withTime(final Date time) {
            this.time = time;
            return this;
        }
 
        public Builder withHeartRate(final int heartRate) {
            this.heartRate = heartRate;
            return this;
        }
 
        public GpxTrackPoint build() {
            return new GpxTrackPoint(longitude, latitude, altitude, time, heartRate);
        }
    }
}