1
0

duration.ts 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2022 gRPC authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. export interface Duration {
  18. seconds: number;
  19. nanos: number;
  20. }
  21. export function msToDuration(millis: number): Duration {
  22. return {
  23. seconds: (millis / 1000) | 0,
  24. nanos: ((millis % 1000) * 1_000_000) | 0,
  25. };
  26. }
  27. export function durationToMs(duration: Duration): number {
  28. return (duration.seconds * 1000 + duration.nanos / 1_000_000) | 0;
  29. }
  30. export function isDuration(value: any): value is Duration {
  31. return typeof value.seconds === 'number' && typeof value.nanos === 'number';
  32. }
  33. const durationRegex = /^(\d+)(?:\.(\d+))?s$/;
  34. export function parseDuration(value: string): Duration | null {
  35. const match = value.match(durationRegex);
  36. if (!match) {
  37. return null;
  38. }
  39. return {
  40. seconds: Number.parseInt(match[1], 10),
  41. nanos: match[2] ? Number.parseInt(match[2].padEnd(9, '0'), 10) : 0
  42. };
  43. }