grafana/pkg/tsdb/request.go

67 lines
1.4 KiB
Go
Raw Normal View History

package tsdb
import (
"context"
)
type HandleRequestFunc func(ctx context.Context, req *Request) (*Response, error)
func HandleRequest(ctx context.Context, req *Request) (*Response, error) {
2017-09-21 00:31:34 +08:00
tsdbQuery := NewQueryContext(req.Queries, req.TimeRange)
batches, err := getBatches(req)
if err != nil {
return nil, err
}
currentlyExecuting := 0
2017-09-21 00:31:34 +08:00
resultsChan := make(chan *BatchResult)
for _, batch := range batches {
if len(batch.Depends) == 0 {
currentlyExecuting += 1
batch.Started = true
2017-09-21 00:31:34 +08:00
go batch.process(ctx, resultsChan, tsdbQuery)
}
}
2017-09-21 00:31:34 +08:00
response := &Response{
Results: make(map[string]*QueryResult),
}
for currentlyExecuting != 0 {
select {
2017-09-21 00:31:34 +08:00
case batchResult := <-resultsChan:
currentlyExecuting -= 1
response.BatchTimings = append(response.BatchTimings, batchResult.Timings)
if batchResult.Error != nil {
return nil, batchResult.Error
}
for refId, result := range batchResult.QueryResults {
2017-09-21 00:31:34 +08:00
response.Results[refId] = result
}
for _, batch := range batches {
// not interested in started batches
if batch.Started {
continue
}
2017-09-21 00:31:34 +08:00
if batch.allDependenciesAreIn(response) {
currentlyExecuting += 1
batch.Started = true
2017-09-21 00:31:34 +08:00
go batch.process(ctx, resultsChan, tsdbQuery)
}
}
case <-ctx.Done():
return nil, ctx.Err()
}
}
2017-09-21 00:31:34 +08:00
//response.Results = tsdbQuery.Results
return response, nil
}