summaryrefslogtreecommitdiff
path: root/src/binder/package_version_map.h
blob: f2048fe74fc69558560792dfb58d24ec3c33fc6c (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright (C) 2020 The Android Open Source Project
//
// 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.

#ifndef IORAP_SRC_PACKAGE_VERSION_MAP_H_
#define IORAP_SRC_PACKAGE_VERSION_MAP_H_

#include <android/content/pm/IPackageManagerNative.h>
#include <binder/IServiceManager.h>

#include <optional>
#include <unordered_map>

#include "package_manager_remote.h"

namespace iorap::binder {

class PackageVersionMap {
 public:
  static std::shared_ptr<PackageVersionMap> Create();

  PackageVersionMap(std::shared_ptr<PackageManagerRemote> package_manager,
                    std::optional<VersionMap> version_map)
      : package_manager_(package_manager),
        version_map_(version_map) {}

  PackageVersionMap()
      : package_manager_(nullptr), version_map_(std::nullopt) {}

  // Updates the version specified by 'package_name' to 'version'.
  //
  // Post-condition: Find(package_name) == version.
  // * if the package is newly installed, insert and return true.
  // * if the package version is changed, update the version to the
  //   given one and return true.
  // * otherwise, return false.
  bool Update(std::string package_name, int64_t version);

  void UpdateAll();

  // Finds the version of the package in the hash table.
  // -1 means the app is installed by unversioned.
  // Empty means the app is not inside the RAM version map, maybe due to
  // the app is newly installed.
  std::optional<int64_t> Find(const std::string& package_name) {
    VersionMap::iterator it = version_map_->find(package_name);
    if (it == version_map_->end()) {
      return std::nullopt;
    }
    return it->second;
  }

  size_t Size();

  // Gets or queries the version for the package.
  //
  // The method firstly access the hash map in the RAM, which is built when
  // iorapd starts. If the version is not in the map, it tries the query
  // the package manager via IPC, with a cost of ~0.6ms.
  //
  // If no version can be found for some reason, return -1,
  // because when an app has no version the package manager returns -1.
  std::optional<int64_t> GetOrQueryPackageVersion(
      const std::string& package_name);

 private:
  std::shared_ptr<PackageManagerRemote> package_manager_;
  std::optional<VersionMap> version_map_;
  std::mutex mutex_;
};
}  // namespace iorap::binder

#endif  // IORAP_SRC_PACKAGE_MANAGER_REMOTE_H_