-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexecutor.go
More file actions
55 lines (47 loc) · 1.55 KB
/
executor.go
File metadata and controls
55 lines (47 loc) · 1.55 KB
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
// Package executor provides transport implementations for HTTP, gRPC, TCP, and GraphQL.
package executor
import (
"context"
"fmt"
"net/http"
"time"
"yapi.run/cli/internal/constants"
"yapi.run/cli/internal/domain"
)
// TransportFunc is the functional signature for all transport implementations.
type TransportFunc func(ctx context.Context, req *domain.Request) (*domain.Response, error)
// HTTPClient is an interface for a client that can send HTTP requests.
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}
// GetTransport returns the appropriate transport function for the given transport type.
// The returned function is wrapped with timing middleware.
// This is the preferred entry point - use this instead of Factory.
func GetTransport(transport string, client HTTPClient) (TransportFunc, error) {
var fn TransportFunc
switch transport {
case constants.TransportHTTP:
fn = HTTPTransport(client)
case constants.TransportGraphQL:
fn = GraphQLTransport(client)
case constants.TransportGRPC:
fn = GRPCTransport
case constants.TransportTCP:
fn = TCPTransport
default:
return nil, fmt.Errorf("unsupported transport: %s", transport)
}
return WithTiming(fn), nil
}
// WithTiming wraps a transport function to measure execution duration.
func WithTiming(next TransportFunc) TransportFunc {
return func(ctx context.Context, req *domain.Request) (*domain.Response, error) {
start := time.Now()
resp, err := next(ctx, req)
if err != nil {
return nil, err
}
resp.Duration = time.Since(start)
return resp, err
}
}