-
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
…1887) Refer to the original PR: #1615 In order to test SbTimeZoneGetCurrent(), we need to set a time zone first. Here we add a new time zone API as a starboard extension to set time zone. We start with Linux implementation. Will have follow up PR to add implementations for all first party platforms. This will help catch the issue if a platform forget to implement SbTimeZoneGetCurrent() which always return 0. b/300108997 Co-authored-by: Sherry Zhou <[email protected]>
- Loading branch information
1 parent
0507187
commit 6756839
Showing
7 changed files
with
222 additions
and
3 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,47 @@ | ||
// 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_TIME_ZONE_H_ | ||
#define STARBOARD_EXTENSION_TIME_ZONE_H_ | ||
|
||
#include <stdint.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define kStarboardExtensionTimeZoneName "dev.starboard.extension.TimeZone" | ||
|
||
typedef struct StarboardExtensionTimeZoneApi { | ||
// Name should be the string |kStarboardExtensionSetTimeZoneName|. | ||
// 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; | ||
|
||
// Sets the current time zone to the specified time zone name. | ||
// Note: This function should not be called with a NULL or empty | ||
// string. It does not actually change the system clock, so it | ||
// will not affect the time displayed on the system clock or | ||
// used by other system processes. | ||
bool (*SetTimeZone)(const char* time_zone_name); | ||
|
||
} StarboardExtensionTimeZoneApi; | ||
|
||
#ifdef __cplusplus | ||
} // extern "C" | ||
#endif | ||
|
||
#endif // STARBOARD_EXTENSION_TIME_ZONE_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,60 @@ | ||
// 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/time_zone.h" | ||
|
||
#include "starboard/extension/time_zone.h" | ||
|
||
#include <stdlib.h> | ||
#include <time.h> | ||
#include <cstring> | ||
|
||
#include "starboard/common/log.h" | ||
|
||
namespace starboard { | ||
namespace shared { | ||
|
||
namespace { | ||
|
||
// Definitions of any functions included as components in the extension | ||
// are added here. | ||
|
||
bool SetTimeZone(const char* time_zone_name) { | ||
if (time_zone_name == nullptr || strlen(time_zone_name) == 0) { | ||
SB_LOG(ERROR) << "Set time zone failed!"; | ||
SB_LOG(ERROR) << "Time zone name can't be null or empty string."; | ||
return false; | ||
} | ||
if (setenv("TZ", time_zone_name, 1) != 0) { | ||
SB_LOG(WARNING) << "Set time zone failed!"; | ||
return false; | ||
} | ||
tzset(); | ||
return true; | ||
} | ||
|
||
const StarboardExtensionTimeZoneApi kTimeZoneApi = { | ||
kStarboardExtensionTimeZoneName, | ||
1, // API version that's implemented. | ||
&SetTimeZone, | ||
}; | ||
|
||
} // namespace | ||
|
||
const void* GetTimeZoneApi() { | ||
return &kTimeZoneApi; | ||
} | ||
|
||
} // 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_TIME_ZONE_H_ | ||
#define STARBOARD_LINUX_SHARED_TIME_ZONE_H_ | ||
|
||
// Omit namespace linux due to symbol name conflict. | ||
namespace starboard { | ||
namespace shared { | ||
|
||
const void* GetTimeZoneApi(); | ||
|
||
} // namespace shared | ||
} // namespace starboard | ||
|
||
#endif // STARBOARD_LINUX_SHARED_TIME_ZONE_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