VancedMicroG/play-services-core/src/main/java/org/microg/gms/wearable/RpcHelper.java

71 lines
2.5 KiB
Java

/*
* Copyright (C) 2013-2017 microG Project Team
*
* 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.
*/
package org.microg.gms.wearable;
import android.content.Context;
import android.content.SharedPreferences;
import java.util.HashMap;
import java.util.Map;
public class RpcHelper {
private final Map<String, RpcConnectionState> rpcStateMap = new HashMap<String, RpcConnectionState>();
private final SharedPreferences preferences;
private final Context context;
public RpcHelper(Context context) {
this.context = context;
this.preferences = context.getSharedPreferences("wearable.rpc_service.settings", 0);
}
private String getRpcConnectionId(String packageName, String targetNodeId, String path) {
String mode = "lo";
if (packageName.equals("com.google.android.wearable.app") && path.startsWith("/s3"))
mode = "hi";
return targetNodeId + ":" + mode;
}
public RpcHelper.RpcConnectionState useConnectionState(String packageName, String targetNodeId, String path) {
String rpcConnectionId = getRpcConnectionId(packageName, targetNodeId, path);
synchronized (rpcStateMap) {
if (!rpcStateMap.containsKey(rpcConnectionId)) {
int g = preferences.getInt(rpcConnectionId, 1)+1;
preferences.edit().putInt(rpcConnectionId, g).apply();
rpcStateMap.put(rpcConnectionId, new RpcConnectionState(g));
}
RpcHelper.RpcConnectionState res = rpcStateMap.get(rpcConnectionId);
res.lastRequestId++;
return res.freeze();
}
}
public static class RpcConnectionState {
public int generation;
public int lastRequestId;
public RpcConnectionState(int generation) {
this.generation = generation;
}
public RpcConnectionState freeze() {
RpcConnectionState res = new RpcConnectionState(generation);
res.lastRequestId = lastRequestId;
return res;
}
}
}