Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Unified Diff: components/policy/core/browser/android/policy_converter.cc

Issue 1220683008: Move AppRestriction to Policy code out of //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the Delegate, reworked the relationship between classes Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/policy/core/browser/android/policy_converter.cc
diff --git a/components/policy/core/browser/android/policy_converter.cc b/components/policy/core/browser/android/policy_converter.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1d45731f910a18adc7a551f462f2636276a10aa9
--- /dev/null
+++ b/components/policy/core/browser/android/policy_converter.cc
@@ -0,0 +1,189 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/policy/core/browser/android/policy_converter.h"
+
+#include <vector>
+
+#include "base/android/jni_android.h"
+#include "base/android/jni_array.h"
+#include "base/android/jni_string.h"
+#include "base/json/json_reader.h"
+#include "base/logging.h"
+#include "base/strings/string16.h"
+#include "base/strings/string_number_conversions.h"
+#include "base/values.h"
+#include "components/policy/core/common/policy_bundle.h"
+#include "components/policy/core/common/policy_map.h"
+#include "components/policy/core/common/policy_namespace.h"
+#include "components/policy/core/common/policy_provider_android.h"
+#include "components/policy/core/common/policy_types.h"
+#include "components/policy/core/common/schema.h"
+#include "jni/PolicyConverter_jni.h"
+
+using base::android::ConvertJavaStringToUTF8;
+
+namespace policy {
+
+PolicyConverter::PolicyConverter(const Schema* policy_schema)
+ : policy_schema_(policy_schema), policy_bundle_(new PolicyBundle) {
+ JNIEnv* env = base::android::AttachCurrentThread();
+ weak_java_obj_ = JavaObjectWeakGlobalRef(
+ env,
+ Java_PolicyConverter_create(env, reinterpret_cast<long>(this)).obj());
+ DCHECK(!weak_java_obj_.is_empty());
+}
+
+base::android::ScopedJavaLocalRef<jobject> PolicyConverter::GetJavaObject() {
+ JNIEnv* env = base::android::AttachCurrentThread();
+ return base::android::ScopedJavaLocalRef<jobject>(weak_java_obj_.get(env));
+}
+
+void PolicyConverter::SetPolicyBoolean(JNIEnv* env,
+ jobject obj,
+ jstring policyKey,
+ jboolean value) {
+ SetPolicyValue(ConvertJavaStringToUTF8(env, policyKey),
+ new base::FundamentalValue(static_cast<bool>(value)));
+}
+
+void PolicyConverter::SetPolicyInteger(JNIEnv* env,
+ jobject obj,
+ jstring policyKey,
+ jint value) {
+ SetPolicyValue(ConvertJavaStringToUTF8(env, policyKey),
+ new base::FundamentalValue(static_cast<int>(value)));
+}
+
+void PolicyConverter::SetPolicyString(JNIEnv* env,
+ jobject obj,
+ jstring policyKey,
+ jstring value) {
+ SetPolicyValue(ConvertJavaStringToUTF8(env, policyKey),
+ new base::StringValue(ConvertJavaStringToUTF8(env, value)));
+}
+
+void PolicyConverter::SetPolicyStringArray(JNIEnv* env,
+ jobject obj,
+ jstring policyKey,
+ jobjectArray array) {
+ std::vector<base::string16> string_vector;
+ base::android::AppendJavaStringArrayToStringVector(env, array,
+ &string_vector);
+ base::ListValue* list_values = new base::ListValue();
+ list_values->AppendStrings(string_vector);
+ SetPolicyValue(ConvertJavaStringToUTF8(env, policyKey), list_values);
+}
+
+scoped_ptr<PolicyBundle> PolicyConverter::GetPolicyBundle() {
+ scoped_ptr<PolicyBundle> filled_bundle(policy_bundle_.Pass());
+ policy_bundle_.reset(new PolicyBundle);
+ return filled_bundle.Pass();
+}
+
+// static
+scoped_ptr<base::Value> PolicyConverter::ConvertValueToSchema(
+ scoped_ptr<base::Value> value,
+ const Schema& schema) {
+ if (!schema.valid())
+ return value.Pass();
+
+ switch (schema.type()) {
+ case base::Value::TYPE_NULL:
+ return base::Value::CreateNullValue();
+
+ case base::Value::TYPE_BOOLEAN: {
+ std::string string_value;
+ if (value->GetAsString(&string_value)) {
+ if (string_value.compare("true") == 0)
+ return scoped_ptr<base::Value>(new base::FundamentalValue(true));
+
+ if (string_value.compare("false") == 0)
+ return scoped_ptr<base::Value>(new base::FundamentalValue(false));
+
+ return value.Pass();
+ }
+ int int_value = 0;
+ if (value->GetAsInteger(&int_value))
+ return scoped_ptr<base::Value>(
+ new base::FundamentalValue(int_value != 0));
+
+ return value.Pass();
+ }
+
+ case base::Value::TYPE_INTEGER: {
+ std::string string_value;
+ if (value->GetAsString(&string_value)) {
+ int int_value = 0;
+ if (base::StringToInt(string_value, &int_value))
+ return scoped_ptr<base::Value>(new base::FundamentalValue(int_value));
+ }
+ return value.Pass();
+ }
+
+ case base::Value::TYPE_DOUBLE: {
+ std::string string_value;
+ if (value->GetAsString(&string_value)) {
+ double double_value = 0;
+ if (base::StringToDouble(string_value, &double_value))
+ return scoped_ptr<base::Value>(
+ new base::FundamentalValue(double_value));
+ }
+ return value.Pass();
+ }
+
+ // String can't be converted from other types.
+ case base::Value::TYPE_STRING: {
+ return value.Pass();
+ }
+
+ // Binary is not a valid schema type.
+ case base::Value::TYPE_BINARY: {
+ NOTREACHED();
+ return scoped_ptr<base::Value>();
+ }
+
+ // Complex types have to be deserialized from JSON.
+ case base::Value::TYPE_DICTIONARY:
+ case base::Value::TYPE_LIST: {
+ std::string string_value;
+ if (value->GetAsString(&string_value)) {
+ scoped_ptr<base::Value> decoded_value =
+ base::JSONReader::Read(string_value);
+ if (decoded_value)
+ return decoded_value.Pass();
+ }
+ return value.Pass();
+ }
+ }
+
+ NOTREACHED();
+ return scoped_ptr<base::Value>();
+}
+
+PolicyConverter::~PolicyConverter() {
+ JNIEnv* env = base::android::AttachCurrentThread();
+ Java_PolicyConverter_onNativeDestroyed(env, weak_java_obj_.get(env).obj());
+}
+
+void PolicyConverter::SetPolicyValue(const std::string& key,
+ base::Value* value) {
+ const Schema schema = policy_schema_->GetKnownProperty(key);
+ const PolicyNamespace ns(POLICY_DOMAIN_CHROME, std::string());
+ policy_bundle_->Get(ns).Set(
+ key, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_MACHINE,
+ ConvertValueToSchema(scoped_ptr<base::Value>(value), schema).release(),
Bernhard Bauer 2015/07/09 08:53:58 You can use make_scoped_ptr() here.
dgn 2015/07/09 10:53:41 Done.
+ nullptr);
+}
+
+namespace android {
+
+// static
+bool RegisterPolicyConverter(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
+
+} // namespace android
+
+} // namespace policy

Powered by Google App Engine
This is Rietveld 408576698