utils.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ///
  2. /// Copyright © 2016-2023 The Thingsboard 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. import Long from 'long';
  17. import uuidParse from 'uuid-parse';
  18. export function toUUIDString(mostSigBits: string, leastSigBits: string): string {
  19. const msbBytes = Long.fromValue(mostSigBits, false).toBytes(false);
  20. const lsbBytes = Long.fromValue(leastSigBits, false).toBytes(false);
  21. const uuidBytes = msbBytes.concat(lsbBytes);
  22. return uuidParse.unparse(uuidBytes as any);
  23. }
  24. export function UUIDFromBuffer(buf: Buffer): string {
  25. return uuidParse.unparse(buf);
  26. }
  27. export function UUIDToBits(uuidString: string): [string, string] {
  28. const bytes = Array.from(uuidParse.parse(uuidString));
  29. const msb = Long.fromBytes(bytes.slice(0, 8), false, false).toString();
  30. const lsb = Long.fromBytes(bytes.slice(-8), false, false).toString();
  31. return [msb, lsb];
  32. }
  33. export function isString(value: any): boolean {
  34. return typeof value === 'string';
  35. }
  36. export function parseJsErrorDetails(err: any): string | undefined {
  37. if (!err) {
  38. return undefined;
  39. }
  40. let details = err.name + ': ' + err.message;
  41. if (err.stack) {
  42. const lines = err.stack.split('\n');
  43. if (lines && lines.length) {
  44. const line = lines[0];
  45. const split = line.split(':');
  46. if (split && split.length === 2) {
  47. if (!isNaN(split[1])) {
  48. details += ' in at line number ' + split[1];
  49. }
  50. }
  51. }
  52. }
  53. return details;
  54. }
  55. export function isNotUUID(candidate: string) {
  56. return candidate.length != 36 || !candidate.includes('-');
  57. }