summaryrefslogtreecommitdiffstats
path: root/dom/payments/PaymentRequestUtils.cpp
blob: 8a8626c328d8665478ae72e7a0359bc5ffd0426d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "js/JSON.h"
#include "nsContentUtils.h"
#include "nsArrayUtils.h"
#include "nsTString.h"
#include "PaymentRequestUtils.h"

namespace mozilla::dom {

nsresult SerializeFromJSObject(JSContext* aCx, JS::Handle<JSObject*> aObject,
                               nsAString& aSerializedObject) {
  MOZ_ASSERT(aCx);
  JS::Rooted<JS::Value> value(aCx, JS::ObjectValue(*aObject));
  return SerializeFromJSVal(aCx, value, aSerializedObject);
}

nsresult SerializeFromJSVal(JSContext* aCx, JS::Handle<JS::Value> aValue,
                            nsAString& aSerializedValue) {
  aSerializedValue.Truncate();
  NS_ENSURE_TRUE(nsContentUtils::StringifyJSON(aCx, aValue, aSerializedValue,
                                               UndefinedIsNullStringLiteral),
                 NS_ERROR_XPC_BAD_CONVERT_JS);
  NS_ENSURE_TRUE(!aSerializedValue.IsEmpty(), NS_ERROR_FAILURE);
  return NS_OK;
}

nsresult DeserializeToJSObject(const nsAString& aSerializedObject,
                               JSContext* aCx,
                               JS::MutableHandle<JSObject*> aObject) {
  MOZ_ASSERT(aCx);
  JS::Rooted<JS::Value> value(aCx);
  nsresult rv = DeserializeToJSValue(aSerializedObject, aCx, &value);
  if (NS_WARN_IF(NS_FAILED(rv))) {
    return rv;
  }
  if (value.isObject()) {
    aObject.set(&value.toObject());
  } else {
    aObject.set(nullptr);
  }
  return NS_OK;
}

nsresult DeserializeToJSValue(const nsAString& aSerializedObject,
                              JSContext* aCx,
                              JS::MutableHandle<JS::Value> aValue) {
  MOZ_ASSERT(aCx);
  if (!JS_ParseJSON(aCx, aSerializedObject.BeginReading(),
                    aSerializedObject.Length(), aValue)) {
    return NS_ERROR_UNEXPECTED;
  }
  return NS_OK;
}

}  // namespace mozilla::dom