-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Refer to the original PR: #1929 This extension would allow IFA backporting to Starboard version 12 or 13. b/309547847 Change-Id: If3dc2a1eb13377ce33463d2d9bb0b14e33089724 Co-authored-by: y4vor <[email protected]>
- Loading branch information
1 parent
36a7aa4
commit 9d52496
Showing
7 changed files
with
217 additions
and
2 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,58 @@ | ||
// Copyright 2023 The Cobalt Authors. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef STARBOARD_EXTENSION_IFA_H_ | ||
#define STARBOARD_EXTENSION_IFA_H_ | ||
|
||
#include <stdint.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define kStarboardExtensionIfaName "dev.cobalt.extension.Ifa" | ||
|
||
typedef struct StarboardExtensionIfaApi { | ||
// Name should be the string |kCobaltExtensionIfaName|. | ||
// This helps to validate that the extension API is correct. | ||
const char* name; | ||
|
||
// This specifies the version of the API that is implemented. | ||
uint32_t version; | ||
|
||
// The fields below this point were added in version 1 or later. | ||
|
||
// Advertising ID or IFA, typically a 128-bit UUID | ||
// Please see https://iabtechlab.com/OTT-IFA for details. | ||
// Corresponds to 'ifa' field. Note: `ifa_type` field is not provided. | ||
// In Starboard 14 this the value is retrieved through the system | ||
// property `kSbSystemPropertyAdvertisingId` defined in | ||
// `starboard/system.h`. | ||
bool (*GetAdvertisingId)(char* out_value, int value_length); | ||
|
||
// Limit advertising tracking, treated as boolean. Set to nonzero to indicate | ||
// a true value. Corresponds to 'lmt' field. | ||
// In Starboard 14 this the value is retrieved through the system | ||
// property `kSbSystemPropertyLimitAdTracking` defined in | ||
// `starboard/system.h`. | ||
|
||
bool (*GetLimitAdTracking)(char* out_value, int value_length); | ||
|
||
} CobaltExtensionIfaApi; | ||
|
||
#ifdef __cplusplus | ||
} // extern "C" | ||
#endif | ||
|
||
#endif // STARBOARD_EXTENSION_IFA_H_ |
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
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,65 @@ | ||
// Copyright 2023 The Cobalt Authors. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include "starboard/linux/shared/ifa.h" | ||
|
||
#include "cobalt/extension/ifa.h" | ||
|
||
#include "starboard/common/string.h" | ||
#include "starboard/shared/environment.h" | ||
|
||
namespace starboard { | ||
namespace shared { | ||
|
||
namespace { | ||
|
||
bool CopyStringAndTestIfSuccess(char* out_value, | ||
int value_length, | ||
const char* from_value) { | ||
if (strlen(from_value) + 1 > value_length) | ||
return false; | ||
starboard::strlcpy(out_value, from_value, value_length); | ||
return true; | ||
} | ||
|
||
// Definitions of any functions included as components in the extension | ||
// are added here. | ||
|
||
bool GetAdvertisingId(char* out_value, int value_length) { | ||
return CopyStringAndTestIfSuccess( | ||
out_value, value_length, | ||
starboard::GetEnvironment("COBALT_ADVERTISING_ID").c_str()); | ||
} | ||
|
||
bool GetLimitAdTracking(char* out_value, int value_length) { | ||
return CopyStringAndTestIfSuccess( | ||
out_value, value_length, | ||
GetEnvironment("COBALT_LIMIT_AD_TRACKING").c_str()); | ||
} | ||
|
||
const StarboardExtensionIfaApi kIfaApi = { | ||
kStarboardExtensionIfaName, | ||
1, // API version that's implemented. | ||
&GetAdvertisingId, | ||
&GetLimitAdTracking, | ||
}; | ||
|
||
} // namespace | ||
|
||
const void* GetIfaApi() { | ||
return &kIfaApi; | ||
} | ||
|
||
} // namespace shared | ||
} // namespace starboard |
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,27 @@ | ||
// Copyright 2023 The Cobalt Authors. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef STARBOARD_LINUX_SHARED_IFA_H_ | ||
#define STARBOARD_LINUX_SHARED_IFA_H_ | ||
|
||
// Omit namespace linux due to symbol name conflict. | ||
namespace starboard { | ||
namespace shared { | ||
|
||
const void* GetIfaApi(); | ||
|
||
} // namespace shared | ||
} // namespace starboard | ||
|
||
#endif // STARBOARD_LINUX_SHARED_IFA_H_ |
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