| /* |
| * |
| * Copyright (c) 2020 Project CHIP Authors |
| * Copyright (c) 2013-2017 Nest Labs, Inc. |
| * |
| * 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. |
| */ |
| |
| /** |
| * @file |
| * This file defines macros, constants, data structures, and |
| * functions that represent a wrapper around one-shot timer objects |
| * |
| */ |
| |
| #ifndef INETTIMER_H |
| #define INETTIMER_H |
| |
| #include <inet/InetConfig.h> |
| |
| #if !INET_CONFIG_PROVIDE_OBSOLESCENT_INTERFACES |
| |
| #error "#include <InetTimer.h> // while !INET_CONFIG_PROVIDE_OBSOLESCENT_INTERFACES." |
| |
| #else // INET_CONFIG_PROVIDE_OBSOLESCENT_INTERFACES |
| #include <system/SystemTimer.h> |
| |
| /** |
| * Number of nanoseconds in a microsecond |
| */ |
| |
| #define INET_NANOSECONDS_PER_MICROSECOND chip::System::kTimerFactor_nano_per_micro |
| |
| /** |
| * Number of nanoseconds in a millisecond |
| */ |
| #define INET_NANOSECONDS_PER_MILLISECOND chip::System::kTimerFactor_nano_per_milli |
| |
| /** |
| * Number of microseconds in a millisecond |
| */ |
| #define INET_MICROSECONDS_PER_MILLISECOND chip::System::kTimerFactor_micro_per_milli |
| |
| /** |
| * Number of milliseconds in a second |
| */ |
| #define INET_MILLISECONDS_PER_SECOND chip::System::kTimerFactor_milli_per_unit |
| |
| /** |
| * Number of microseconds in a second |
| */ |
| #define INET_MICROSECONDS_PER_SECOND chip::System::kTimerFactor_micro_per_unit |
| |
| namespace chip { |
| namespace Inet { |
| |
| class InetLayer; |
| |
| class InetTimer |
| { |
| friend class InetLayer; |
| |
| InetTimer(void); |
| InetTimer(const InetTimer &); |
| InetTimer & operator=(const InetTimer &); |
| |
| public: |
| typedef chip::System::Timer::Epoch Time; |
| |
| static Time GetTimeMillis(void); |
| |
| protected: |
| }; |
| |
| inline InetTimer::Time InetTimer::GetTimeMillis(void) |
| { |
| return chip::System::Timer::GetCurrentEpoch(); |
| } |
| |
| } // namespace Inet |
| } // namespace chip |
| |
| #endif // INET_CONFIG_PROVIDE_OBSOLESCENT_INTERFACES |
| #endif // !defined(INETTIMER_H) |