-
-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This introduces simple URI-based caching. A basic map-based cache implementation is provided, which may cover many simple use cases. This caching is now used by default in the Loader. File and HTTP URI readers are extracted from the loader internals so that they may be extended, replaced, or configured. ReadFromHTTP allows specifying the http.Client used to read HTTP $refs, for example.
- Loading branch information
Showing
2 changed files
with
97 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package openapi3 | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"io/ioutil" | ||
"net/http" | ||
"net/url" | ||
) | ||
|
||
// ReadFromURIFunc defines a function which reads the contents of a resource | ||
// located at a URI. | ||
type ReadFromURIFunc func(loader *Loader, url *url.URL) ([]byte, error) | ||
|
||
// ErrURINotSupported indicates the ReadFromURIFunc does not know how to handle a | ||
// given URI. | ||
var ErrURINotSupported = errors.New("unsupported URI") | ||
|
||
// ReadFromURIs returns a ReadFromURIFunc which tries to read a URI using the | ||
// given reader functions, in the same order. If a reader function does not | ||
// support the URI and returns ErrURINotSupported, the next function is checked | ||
// until a match is found, or the URI is not supported by any. | ||
func ReadFromURIs(readers ...ReadFromURIFunc) ReadFromURIFunc { | ||
return func(loader *Loader, url *url.URL) ([]byte, error) { | ||
for i := range readers { | ||
buf, err := readers[i](loader, url) | ||
if err == ErrURINotSupported { | ||
continue | ||
} else if err != nil { | ||
return nil, err | ||
} | ||
return buf, nil | ||
} | ||
return nil, ErrURINotSupported | ||
} | ||
} | ||
|
||
// DefaultReadFromURI returns a caching ReadFromURIFunc which can read remote | ||
// HTTP URIs and local file URIs. | ||
var DefaultReadFromURI = URIMapCache(ReadFromURIs(ReadFromHTTP(http.DefaultClient), ReadFromFile)) | ||
|
||
// ReadFromHTTP returns a ReadFromURIFunc which uses the given http.Client to | ||
// read the contents from a remote HTTP URI. This client may be customized to | ||
// implement timeouts, RFC 7234 caching, etc. | ||
func ReadFromHTTP(cl *http.Client) ReadFromURIFunc { | ||
return func(loader *Loader, location *url.URL) ([]byte, error) { | ||
if location.Scheme == "" || location.Host == "" { | ||
return nil, ErrURINotSupported | ||
} | ||
req, err := http.NewRequest("GET", location.String(), nil) | ||
if err != nil { | ||
return nil, err | ||
} | ||
resp, err := cl.Do(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
defer resp.Body.Close() | ||
if resp.StatusCode > 399 { | ||
return nil, fmt.Errorf("error loading %q: request returned status code %d", location.String(), resp.StatusCode) | ||
} | ||
return ioutil.ReadAll(resp.Body) | ||
} | ||
} | ||
|
||
// ReadFromFile is a ReadFromURIFunc which reads local file URIs. | ||
func ReadFromFile(loader *Loader, location *url.URL) ([]byte, error) { | ||
if location.Host != "" { | ||
return nil, ErrURINotSupported | ||
} | ||
if location.Scheme != "" && location.Scheme != "file" { | ||
return nil, ErrURINotSupported | ||
} | ||
return ioutil.ReadFile(location.Path) | ||
} | ||
|
||
// URIMapCache returns a ReadFromURIFunc that caches the contents read from URI | ||
// locations in a simple map. This cache implementation is suitable for | ||
// short-lived processes such as command-line tools which process OpenAPI | ||
// documents. | ||
func URIMapCache(reader ReadFromURIFunc) ReadFromURIFunc { | ||
cache := map[string][]byte{} | ||
return func(loader *Loader, location *url.URL) (buf []byte, err error) { | ||
uri := location.String() | ||
var ok bool | ||
if buf, ok = cache[uri]; ok { | ||
return | ||
} | ||
if buf, err = reader(loader, location); err != nil { | ||
return | ||
} | ||
cache[uri] = buf | ||
return | ||
} | ||
} |