-
Notifications
You must be signed in to change notification settings - Fork 74
RUM-13568: [Cronet]: Supporting RUM <> APM integration for Cronet #3136
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
Open
satween
wants to merge
1
commit into
develop
Choose a base branch
from
tvaleev/feature/RUM-13568-apm-dependencies
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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
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
73 changes: 73 additions & 0 deletions
73
...src/main/kotlin/com/datadog/android/api/instrumentation/network/HttpRequestInfoBuilder.kt
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,73 @@ | ||
| /* | ||
| * Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0. | ||
| * This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
| * Copyright 2016-Present Datadog, Inc. | ||
| */ | ||
|
|
||
| package com.datadog.android.api.instrumentation.network | ||
|
|
||
| import com.datadog.android.lint.InternalApi | ||
|
|
||
| /** | ||
| * For internal usage only. | ||
| * | ||
| * A builder interface for modifying [com.datadog.android.api.instrumentation.network.HttpRequestInfo] instances. | ||
| * This interface allows to build new [com.datadog.android.api.instrumentation.network.HttpRequestInfo] with | ||
| * modified HTTP request properties such as URL, headers, and tags. | ||
| * | ||
| * Use [com.datadog.android.api.instrumentation.network.MutableHttpRequestInfo.newBuilder] to obtain a builder instance. | ||
| */ | ||
| @InternalApi | ||
| interface HttpRequestInfoBuilder { | ||
|
|
||
| /** | ||
| * Sets the URL for this request. | ||
| * @param url the new URL to set. | ||
| * @return this modifier for chaining. | ||
| */ | ||
| fun setUrl(url: String): HttpRequestInfoBuilder | ||
|
|
||
| /** | ||
| * Adds a header with the specified key and values. | ||
| * If a header with the same key already exists, the new values are appended. | ||
| * @param key the header name. | ||
| * @param values the header values. | ||
| * @return this modifier for chaining. | ||
| */ | ||
| fun addHeader(key: String, vararg values: String): HttpRequestInfoBuilder | ||
|
|
||
| /** | ||
| * Removes a header with the specified key. | ||
| * @param key the header name to remove. | ||
| * @return this modifier for chaining. | ||
| */ | ||
| fun removeHeader(key: String): HttpRequestInfoBuilder | ||
|
|
||
| /** | ||
| * Replaces a header with the specified key and value. | ||
| * This is equivalent to removing the existing header and adding a new one. | ||
| * @param key the header name. | ||
| * @param value the new header value. | ||
| * @return this modifier for chaining. | ||
| */ | ||
| fun replaceHeader(key: String, value: String): HttpRequestInfoBuilder = apply { | ||
| removeHeader(key) | ||
| addHeader(key, value) | ||
| } | ||
|
|
||
| /** | ||
| * Adds a tag of the specified type to this request. | ||
| * Tags can be used to attach arbitrary metadata to requests for later retrieval. | ||
| * @param T the type of the tag. | ||
| * @param type the class representing the tag type. | ||
| * @param tag the tag value, or null to remove the tag. | ||
| * @return this modifier for chaining. | ||
| */ | ||
| fun <T> addTag(type: Class<in T>, tag: T?): HttpRequestInfoBuilder | ||
|
|
||
| /** | ||
| * Builds and returns the modified [com.datadog.android.api.instrumentation.network.HttpRequestInfo]. | ||
| * @return the resulting [com.datadog.android.api.instrumentation.network.HttpRequestInfo] with all modifications applied. | ||
| */ | ||
| fun build(): HttpRequestInfo | ||
| } | ||
27 changes: 27 additions & 0 deletions
27
...src/main/kotlin/com/datadog/android/api/instrumentation/network/MutableHttpRequestInfo.kt
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,27 @@ | ||
| /* | ||
| * Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0. | ||
| * This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
| * Copyright 2016-Present Datadog, Inc. | ||
| */ | ||
|
|
||
| package com.datadog.android.api.instrumentation.network | ||
|
|
||
| import com.datadog.android.lint.InternalApi | ||
|
|
||
| /** | ||
| * For internal usage only. | ||
| * | ||
| * Represents an HTTP request info that can be modified. | ||
| * | ||
| * This interface allows instrumentation components to create a modified copy | ||
| * of the request info (e.g., to add tracing headers) while preserving the | ||
| * original request data. | ||
| */ | ||
| @InternalApi | ||
| interface MutableHttpRequestInfo { | ||
| /** | ||
| * Creates a modifier to modify this request info. | ||
| * @return a new [com.datadog.android.api.instrumentation.network.HttpRequestInfoBuilder] initialized with this request's data. | ||
| */ | ||
| fun newBuilder(): HttpRequestInfoBuilder | ||
| } |
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
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
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.