-
Notifications
You must be signed in to change notification settings - Fork 425
refactor: removes context on the C side #1404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dunglas
merged 23 commits into
main
from
feat/auto-scale-clock-time-fc-better-timeouts-refactor-context
Mar 10, 2025
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
ff325e6
Replaces context.
AlliBalliBaba ffcb6f4
Fixes merge conflicts.
AlliBalliBaba b38dc37
Fixes merge conflicts.
AlliBalliBaba 42ec18d
Resets scaling update.
AlliBalliBaba 755c905
Unbreaks the public api.
AlliBalliBaba dfb943d
Unbreaks the public api.
AlliBalliBaba a8eb03f
Fixes naming and config bleeding in tests.
AlliBalliBaba 71259c1
Adjusts comments.
AlliBalliBaba c4c77fc
Inverts logic.
AlliBalliBaba e75e64a
cleanup.
AlliBalliBaba 0f63105
Removes unnecessary checks.
AlliBalliBaba 7cc551c
removes benchmark
AlliBalliBaba 59fb649
clang-format.
AlliBalliBaba 36e37ba
Restores startup logic.
AlliBalliBaba e8b8906
Removes busy timeout.
AlliBalliBaba dad4026
Removes unused func.
AlliBalliBaba dbe2f9b
Removes unused func.
AlliBalliBaba 1e3341a
Removes docs.
AlliBalliBaba e3dd60c
Un-exports context and formatting.
AlliBalliBaba 9030df2
Renames 'fake' to 'dummy'.
AlliBalliBaba 0dee7a1
Merge branch 'main' into feat/auto-scale-clock-time-fc-better-timeout…
AlliBalliBaba e60835c
Adds worker 'boot' test.
AlliBalliBaba feb3a53
Removes unused exitStatus from struct.
AlliBalliBaba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,164 @@ | ||
| package frankenphp | ||
|
|
||
| import ( | ||
| "context" | ||
| "net/http" | ||
| "os" | ||
| "strings" | ||
| "time" | ||
|
|
||
| "go.uber.org/zap" | ||
| ) | ||
|
|
||
| // frankenPHPContext provides contextual information about the Request to handle. | ||
| type frankenPHPContext struct { | ||
| documentRoot string | ||
| splitPath []string | ||
| env PreparedEnv | ||
| logger *zap.Logger | ||
| request *http.Request | ||
| originalRequest *http.Request | ||
|
|
||
| docURI string | ||
| pathInfo string | ||
| scriptName string | ||
| scriptFilename string | ||
|
|
||
| // Whether the request is already closed by us | ||
| isDone bool | ||
dunglas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| responseWriter http.ResponseWriter | ||
|
|
||
| done chan interface{} | ||
| startedAt time.Time | ||
| } | ||
|
|
||
| // fromContext extracts the frankenPHPContext from a context. | ||
| func fromContext(ctx context.Context) (fctx *frankenPHPContext, ok bool) { | ||
| fctx, ok = ctx.Value(contextKey).(*frankenPHPContext) | ||
| return | ||
| } | ||
|
|
||
| // NewRequestWithContext creates a new FrankenPHP request context. | ||
| func NewRequestWithContext(r *http.Request, opts ...RequestOption) (*http.Request, error) { | ||
| fc := &frankenPHPContext{ | ||
| done: make(chan interface{}), | ||
| startedAt: time.Now(), | ||
| request: r, | ||
| } | ||
| for _, o := range opts { | ||
| if err := o(fc); err != nil { | ||
| return nil, err | ||
| } | ||
| } | ||
|
|
||
| if fc.logger == nil { | ||
| fc.logger = logger | ||
| } | ||
|
|
||
| if fc.documentRoot == "" { | ||
| if EmbeddedAppPath != "" { | ||
| fc.documentRoot = EmbeddedAppPath | ||
| } else { | ||
| var err error | ||
| if fc.documentRoot, err = os.Getwd(); err != nil { | ||
| return nil, err | ||
| } | ||
| } | ||
| } | ||
|
|
||
| if fc.splitPath == nil { | ||
| fc.splitPath = []string{".php"} | ||
| } | ||
|
|
||
| if fc.env == nil { | ||
| fc.env = make(map[string]string) | ||
| } | ||
|
|
||
| if splitPos := splitPos(fc, r.URL.Path); splitPos > -1 { | ||
| fc.docURI = r.URL.Path[:splitPos] | ||
| fc.pathInfo = r.URL.Path[splitPos:] | ||
|
|
||
| // Strip PATH_INFO from SCRIPT_NAME | ||
| fc.scriptName = strings.TrimSuffix(r.URL.Path, fc.pathInfo) | ||
|
|
||
| // Ensure the SCRIPT_NAME has a leading slash for compliance with RFC3875 | ||
| // Info: https://tools.ietf.org/html/rfc3875#section-4.1.13 | ||
| if fc.scriptName != "" && !strings.HasPrefix(fc.scriptName, "/") { | ||
| fc.scriptName = "/" + fc.scriptName | ||
| } | ||
| } | ||
|
|
||
| // SCRIPT_FILENAME is the absolute path of SCRIPT_NAME | ||
| fc.scriptFilename = sanitizedPathJoin(fc.documentRoot, fc.scriptName) | ||
|
|
||
| c := context.WithValue(r.Context(), contextKey, fc) | ||
|
|
||
| return r.WithContext(c), nil | ||
| } | ||
|
|
||
| func newDummyContext(requestPath string, opts ...RequestOption) (*frankenPHPContext, error) { | ||
| r, err := http.NewRequest(http.MethodGet, requestPath, nil) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| fr, err := NewRequestWithContext(r, opts...) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| fc, _ := fromContext(fr.Context()) | ||
|
|
||
| return fc, nil | ||
| } | ||
|
|
||
| // closeContext sends the response to the client | ||
| func (fc *frankenPHPContext) closeContext() { | ||
| if fc.isDone { | ||
| return | ||
| } | ||
|
|
||
| close(fc.done) | ||
| fc.isDone = true | ||
| } | ||
|
|
||
| // validate checks if the request should be outright rejected | ||
| func (fc *frankenPHPContext) validate() bool { | ||
| if !strings.Contains(fc.request.URL.Path, "\x00") { | ||
| return true | ||
| } | ||
|
|
||
| fc.rejectBadRequest("Invalid request path") | ||
|
|
||
| return false | ||
| } | ||
|
|
||
| func (fc *frankenPHPContext) clientHasClosed() bool { | ||
| select { | ||
| case <-fc.request.Context().Done(): | ||
| return true | ||
| default: | ||
| return false | ||
| } | ||
| } | ||
|
|
||
| // reject sends a response with the given status code and message | ||
| func (fc *frankenPHPContext) reject(statusCode int, message string) { | ||
| if fc.isDone { | ||
| return | ||
| } | ||
|
|
||
| rw := fc.responseWriter | ||
| if rw != nil { | ||
| rw.WriteHeader(statusCode) | ||
| _, _ = rw.Write([]byte(message)) | ||
| rw.(http.Flusher).Flush() | ||
| } | ||
|
|
||
| fc.closeContext() | ||
| } | ||
|
|
||
| func (fc *frankenPHPContext) rejectBadRequest(message string) { | ||
| fc.reject(http.StatusBadRequest, message) | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.