1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-04-27 13:48:49 +08:00
Ivan Milošević f1ee9d0665
Fix typo in error messages (#1193)
Signed-off-by: Ivan Milošević <iva@blokovi.com>
2020-06-03 17:34:01 +02:00

216 lines
4.7 KiB
Go

package influxdb
import (
"encoding/json"
"fmt"
"reflect"
"strconv"
"strings"
"time"
"github.com/mainflux/mainflux/pkg/errors"
"github.com/mainflux/mainflux/readers"
influxdata "github.com/influxdata/influxdb/client/v2"
"github.com/mainflux/mainflux/pkg/transformers/senml"
)
const countCol = "count"
var errReadMessages = errors.New("failed to read messages from influxdb database")
var _ readers.MessageRepository = (*influxRepository)(nil)
type influxRepository struct {
database string
client influxdata.Client
}
// New returns new InfluxDB reader.
func New(client influxdata.Client, database string) readers.MessageRepository {
return &influxRepository{
database,
client,
}
}
func (repo *influxRepository) ReadAll(chanID string, offset, limit uint64, query map[string]string) (readers.MessagesPage, error) {
condition := fmtCondition(chanID, query)
cmd := fmt.Sprintf(`SELECT * FROM messages WHERE %s ORDER BY time DESC LIMIT %d OFFSET %d`, condition, limit, offset)
q := influxdata.Query{
Command: cmd,
Database: repo.database,
}
ret := []senml.Message{}
resp, err := repo.client.Query(q)
if err != nil {
return readers.MessagesPage{}, errors.Wrap(errReadMessages, err)
}
if resp.Error() != nil {
return readers.MessagesPage{}, errors.Wrap(errReadMessages, resp.Error())
}
if len(resp.Results) < 1 || len(resp.Results[0].Series) < 1 {
return readers.MessagesPage{}, nil
}
result := resp.Results[0].Series[0]
for _, v := range result.Values {
ret = append(ret, parseMessage(result.Columns, v))
}
total, err := repo.count(condition)
if err != nil {
return readers.MessagesPage{}, errors.Wrap(errReadMessages, err)
}
return readers.MessagesPage{
Total: total,
Offset: offset,
Limit: limit,
Messages: ret,
}, nil
}
func (repo *influxRepository) count(condition string) (uint64, error) {
cmd := fmt.Sprintf(`SELECT COUNT(protocol) FROM messages WHERE %s`, condition)
q := influxdata.Query{
Command: cmd,
Database: repo.database,
}
resp, err := repo.client.Query(q)
if err != nil {
return 0, err
}
if resp.Error() != nil {
return 0, resp.Error()
}
if len(resp.Results) < 1 ||
len(resp.Results[0].Series) < 1 ||
len(resp.Results[0].Series[0].Values) < 1 {
return 0, nil
}
countIndex := 0
for i, col := range resp.Results[0].Series[0].Columns {
if col == countCol {
countIndex = i
break
}
}
result := resp.Results[0].Series[0].Values[0]
if len(result) < countIndex+1 {
return 0, nil
}
count, ok := result[countIndex].(json.Number)
if !ok {
return 0, nil
}
return strconv.ParseUint(count.String(), 10, 64)
}
func fmtCondition(chanID string, query map[string]string) string {
condition := fmt.Sprintf(`channel='%s'`, chanID)
for name, value := range query {
switch name {
case
"channel",
"subtopic",
"publisher":
condition = fmt.Sprintf(`%s AND %s='%s'`, condition, name,
strings.Replace(value, "'", "\\'", -1))
case
"name",
"protocol":
condition = fmt.Sprintf(`%s AND "%s"='%s'`, condition, name,
strings.Replace(value, "\"", "\\\"", -1))
}
}
return condition
}
// ParseMessage and parseValues are util methods. Since InfluxDB client returns
// results in form of rows and columns, this obscure message conversion is needed
// to return actual []broker.Message from the query result.
func parseValues(value interface{}, name string, msg *senml.Message) {
if name == "sum" && value != nil {
if valSum, ok := value.(json.Number); ok {
sum, err := valSum.Float64()
if err != nil {
return
}
msg.Sum = &sum
}
return
}
if strings.HasSuffix(strings.ToLower(name), "value") {
switch value.(type) {
case bool:
v := value.(bool)
msg.BoolValue = &v
case json.Number:
num, err := value.(json.Number).Float64()
if err != nil {
return
}
msg.Value = &num
case string:
if strings.HasPrefix(name, "string") {
v := value.(string)
msg.StringValue = &v
return
}
if strings.HasPrefix(name, "data") {
v := value.(string)
msg.DataValue = &v
}
}
}
}
func parseMessage(names []string, fields []interface{}) senml.Message {
m := senml.Message{}
v := reflect.ValueOf(&m).Elem()
for i, name := range names {
parseValues(fields[i], name, &m)
msgField := v.FieldByName(strings.Title(name))
if !msgField.IsValid() {
continue
}
f := msgField.Interface()
switch f.(type) {
case string:
if s, ok := fields[i].(string); ok {
msgField.SetString(s)
}
case float64:
if name == "time" {
t, err := time.Parse(time.RFC3339Nano, fields[i].(string))
if err != nil {
continue
}
v := float64(t.UnixNano()) / float64(1e9)
msgField.SetFloat(v)
continue
}
val, _ := strconv.ParseFloat(fields[i].(string), 64)
msgField.SetFloat(val)
}
}
return m
}