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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* Copyright (C) 2010 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.
*/
#define LOG_TAG "Configuration"
#include <utils/Log.h>
#include <androidfw/AssetManager2.h>
#include <android_runtime/android_content_res_Configuration.h>
#include <android_runtime/android_util_AssetManager.h>
using namespace android;
AConfiguration* AConfiguration_new() {
AConfiguration* config = new AConfiguration;
memset(config, 0, sizeof(AConfiguration));
return config;
}
void AConfiguration_delete(AConfiguration* config) {
delete config;
}
void AConfiguration_fromAssetManager(AConfiguration* out, AAssetManager* am) {
ScopedLock<AssetManager2> locked_mgr(*AssetManagerForNdkAssetManager(am));
ResTable_config config = locked_mgr->GetConfiguration();
// AConfiguration is not a virtual subclass, so we can memcpy.
memcpy(out, &config, sizeof(config));
}
void AConfiguration_copy(AConfiguration* dest, AConfiguration* src) {
*dest = *src;
}
int32_t AConfiguration_getMcc(AConfiguration* config) {
return config->mcc;
}
int32_t AConfiguration_getMnc(AConfiguration* config) {
return config->mnc;
}
void AConfiguration_getLanguage(AConfiguration* config, char* outLanguage) {
outLanguage[0] = config->language[0];
outLanguage[1] = config->language[1];
}
void AConfiguration_getCountry(AConfiguration* config, char* outCountry) {
outCountry[0] = config->country[0];
outCountry[1] = config->country[1];
}
int32_t AConfiguration_getOrientation(AConfiguration* config) {
return config->orientation;
}
int32_t AConfiguration_getTouchscreen(AConfiguration* config) {
return config->touchscreen;
}
int32_t AConfiguration_getDensity(AConfiguration* config) {
return config->density;
}
int32_t AConfiguration_getKeyboard(AConfiguration* config) {
return config->keyboard;
}
int32_t AConfiguration_getNavigation(AConfiguration* config) {
return config->navigation;
}
int32_t AConfiguration_getKeysHidden(AConfiguration* config) {
return config->inputFlags&ResTable_config::MASK_KEYSHIDDEN;
}
int32_t AConfiguration_getNavHidden(AConfiguration* config) {
return (config->inputFlags&ResTable_config::MASK_NAVHIDDEN)
>> ResTable_config::SHIFT_NAVHIDDEN;
}
int32_t AConfiguration_getSdkVersion(AConfiguration* config) {
return config->sdkVersion;
}
int32_t AConfiguration_getScreenSize(AConfiguration* config) {
return config->screenLayout&ResTable_config::MASK_SCREENSIZE;
}
int32_t AConfiguration_getScreenLong(AConfiguration* config) {
return (config->screenLayout&ResTable_config::MASK_SCREENLONG)
>> ResTable_config::SHIFT_SCREENLONG;
}
int32_t AConfiguration_getScreenRound(AConfiguration* config) {
return (config->screenLayout2&ResTable_config::MASK_SCREENROUND);
}
int32_t AConfiguration_getUiModeType(AConfiguration* config) {
return config->uiMode&ResTable_config::MASK_UI_MODE_TYPE;
}
int32_t AConfiguration_getUiModeNight(AConfiguration* config) {
return (config->uiMode&ResTable_config::MASK_UI_MODE_NIGHT)
>> ResTable_config::SHIFT_UI_MODE_NIGHT;
}
int32_t AConfiguration_getScreenWidthDp(AConfiguration* config) {
return config->screenWidthDp;
}
int32_t AConfiguration_getScreenHeightDp(AConfiguration* config) {
return config->screenHeightDp;
}
int32_t AConfiguration_getSmallestScreenWidthDp(AConfiguration* config) {
return config->smallestScreenWidthDp;
}
int32_t AConfiguration_getLayoutDirection(AConfiguration* config) {
return (config->screenLayout&ResTable_config::MASK_LAYOUTDIR)
>> ResTable_config::SHIFT_LAYOUTDIR;
}
// ----------------------------------------------------------------------
void AConfiguration_setMcc(AConfiguration* config, int32_t mcc) {
config->mcc = mcc;
}
void AConfiguration_setMnc(AConfiguration* config, int32_t mnc) {
config->mnc = mnc;
}
void AConfiguration_setLanguage(AConfiguration* config, const char* language) {
config->language[0] = language[0];
config->language[1] = language[1];
}
void AConfiguration_setCountry(AConfiguration* config, const char* country) {
config->country[0] = country[0];
config->country[1] = country[1];
}
void AConfiguration_setOrientation(AConfiguration* config, int32_t orientation) {
config->orientation = orientation;
}
void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen) {
config->touchscreen = touchscreen;
}
void AConfiguration_setDensity(AConfiguration* config, int32_t density) {
config->density = density;
}
void AConfiguration_setKeyboard(AConfiguration* config, int32_t keyboard) {
config->keyboard = keyboard;
}
void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation) {
config->navigation = navigation;
}
void AConfiguration_setKeysHidden(AConfiguration* config, int32_t keysHidden) {
config->inputFlags = (config->inputFlags&~ResTable_config::MASK_KEYSHIDDEN)
| (keysHidden&ResTable_config::MASK_KEYSHIDDEN);
}
void AConfiguration_setNavHidden(AConfiguration* config, int32_t navHidden) {
config->inputFlags = (config->inputFlags&~ResTable_config::MASK_NAVHIDDEN)
| ((navHidden<<ResTable_config::SHIFT_NAVHIDDEN)&ResTable_config::MASK_NAVHIDDEN);
}
void AConfiguration_setSdkVersion(AConfiguration* config, int32_t sdkVersion) {
config->sdkVersion = sdkVersion;
}
void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize) {
config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENSIZE)
| (screenSize&ResTable_config::MASK_SCREENSIZE);
}
void AConfiguration_setScreenLong(AConfiguration* config, int32_t screenLong) {
config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG)
| ((screenLong<<ResTable_config::SHIFT_SCREENLONG)&ResTable_config::MASK_SCREENLONG);
}
void AConfiguration_setScreenRound(AConfiguration* config, int32_t screenRound) {
config->screenLayout2 = (config->screenLayout2&~ResTable_config::MASK_SCREENROUND)
| (screenRound&ResTable_config::MASK_SCREENROUND);
}
void AConfiguration_setUiModeType(AConfiguration* config, int32_t uiModeType) {
config->uiMode = (config->uiMode&~ResTable_config::MASK_UI_MODE_TYPE)
| (uiModeType&ResTable_config::MASK_UI_MODE_TYPE);
}
void AConfiguration_setUiModeNight(AConfiguration* config, int32_t uiModeNight) {
config->uiMode = (config->uiMode&~ResTable_config::MASK_UI_MODE_NIGHT)
| ((uiModeNight<<ResTable_config::SHIFT_UI_MODE_NIGHT)&ResTable_config::MASK_UI_MODE_NIGHT);
}
void AConfiguration_setScreenWidthDp(AConfiguration* config, int32_t value) {
config->screenWidthDp = value;
}
void AConfiguration_setScreenHeightDp(AConfiguration* config, int32_t value) {
config->screenHeightDp = value;
}
void AConfiguration_setSmallestScreenWidthDp(AConfiguration* config, int32_t value) {
config->smallestScreenWidthDp = value;
}
void AConfiguration_setLayoutDirection(AConfiguration* config, int32_t value) {
config->screenLayout = (config->screenLayout&~ResTable_config::MASK_LAYOUTDIR)
| ((value<<ResTable_config::SHIFT_LAYOUTDIR)&ResTable_config::MASK_LAYOUTDIR);
}
// ----------------------------------------------------------------------
int32_t AConfiguration_diff(AConfiguration* config1, AConfiguration* config2) {
return (config1->diff(*config2));
}
int32_t AConfiguration_match(AConfiguration* base, AConfiguration* requested) {
return base->match(*requested);
}
int32_t AConfiguration_isBetterThan(AConfiguration* base, AConfiguration* test,
AConfiguration* requested) {
return base->isBetterThan(*test, requested);
}
|