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
251
252
253
254
255
256
257
258
use crate::error::NdkError;
use std::fs::File;
use std::io::Write;
use std::path::Path;

#[derive(Debug)]
pub struct Manifest {
    pub package_name: String,
    pub package_label: String,
    pub version_name: String,
    pub version_code: u32,
    pub target_name: String,
    pub target_sdk_version: u32,
    pub min_sdk_version: u32,
    pub opengles_version: (u8, u8),
    pub features: Vec<Feature>,
    pub permissions: Vec<Permission>,
    pub intent_filters: Vec<IntentFilter>,
    pub icon: Option<String>,
    pub fullscreen: bool,
    pub orientation: Option<String>,
    pub launch_mode: Option<String>,
    pub debuggable: bool,
    pub split: Option<String>,
    pub application_metadatas: Vec<ApplicationMetadata>,
    pub activity_metadatas: Vec<ActivityMetadata>,
}

impl Manifest {
    pub fn to_string(&self) -> String {
        let split = if let Some(split) = self.split.as_ref() {
            format!(r#"split="{}" android:isFeatureSplit="true""#, split)
        } else {
            "".to_string()
        };
        let (major, minor) = self.opengles_version;
        let opengles_version = format!("0x{:04}{:04}", major, minor);

        let icon = self
            .icon
            .as_ref()
            .map(|icon| format!(r#"android:icon="{}""#, icon))
            .unwrap_or_default();

        let fullscreen = if self.fullscreen {
            r#"android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen""#
        } else {
            ""
        };

        let orientation = self.orientation.as_deref().unwrap_or("unspecified");
        let launch_mode = self.launch_mode.as_deref().unwrap_or("standard");

        let features: Vec<String> = self.features.iter().map(|f| f.to_string()).collect();
        let permissions: Vec<String> = self.permissions.iter().map(|p| p.to_string()).collect();
        let intent_filters: Vec<String> =
            self.intent_filters.iter().map(|i| i.to_string()).collect();
        let application_metadatas: Vec<String> = self
            .application_metadatas
            .iter()
            .map(|f| f.to_string())
            .collect();
        let activity_metadatas: Vec<String> = self
            .activity_metadatas
            .iter()
            .map(|f| f.to_string())
            .collect();

        format!(
            r#"<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="{package_name}"
        android:versionCode="{version_code}"
        android:versionName="{version_name}"
        {split}>
    <uses-sdk
        android:targetSdkVersion="{target_sdk_version}"
        android:minSdkVersion="{min_sdk_version}" />
    <uses-feature android:glEsVersion="{opengles_version}" android:required="true"></uses-feature>
    {features}
    {permissions}
    <application
            android:hasCode="false"
            android:label="{package_label}"
            android:debuggable="{debuggable}"
            {icon}
            {fullscreen}>
            {application_metadatas}
        <activity
                android:name="android.app.NativeActivity"
                android:label="{package_label}"
                android:screenOrientation="{orientation}"
                android:launchMode="{launch_mode}"
                android:configChanges="orientation|keyboardHidden|screenSize">
            <meta-data android:name="android.app.lib_name" android:value="{target_name}" />
            {activity_metadatas}
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            {intent_filters}
        </activity>
    </application>
</manifest>"#,
            package_name = &self.package_name,
            package_label = &self.package_label,
            version_name = &self.version_name,
            version_code = self.version_code,
            split = split,
            target_sdk_version = self.target_sdk_version,
            min_sdk_version = self.min_sdk_version,
            opengles_version = opengles_version,
            target_name = &self.target_name,
            icon = icon,
            fullscreen = fullscreen,
            orientation = orientation,
            launch_mode = launch_mode,
            application_metadatas = application_metadatas.join("\n"),
            activity_metadatas = activity_metadatas.join("\n"),
            debuggable = self.debuggable,
            features = features.join("\n"),
            permissions = permissions.join("\n"),
            intent_filters = intent_filters.join("\n"),
        )
    }

    pub fn write_to(&self, dir: &Path) -> Result<(), NdkError> {
        let mut file = File::create(dir.join("AndroidManifest.xml"))?;
        writeln!(file, "{}", self.to_string())?;
        Ok(())
    }
}

#[derive(Debug)]
pub struct Feature {
    pub name: String,
    pub required: bool,
}

impl Feature {
    pub fn to_string(&self) -> String {
        format!(
            r#"<uses-feature android:name="{}" android:required="{}"/>"#,
            &self.name, self.required,
        )
    }
}

#[derive(Debug)]
pub struct ApplicationMetadata {
    pub name: String,
    pub value: String,
}

impl ApplicationMetadata {
    pub fn to_string(&self) -> String {
        format!(
            r#"<meta-data android:name="{}" android:value="{}"/>"#,
            self.name, self.value
        )
    }
}

#[derive(Debug)]
pub struct ActivityMetadata {
    pub name: String,
    pub value: String,
}

impl ActivityMetadata {
    pub fn to_string(&self) -> String {
        format!(
            r#"<meta-data android:name="{}" android:value="{}"/>"#,
            self.name, self.value
        )
    }
}

#[derive(Debug)]
pub struct Permission {
    pub name: String,
    pub max_sdk_version: Option<u32>,
}

impl Permission {
    pub fn to_string(&self) -> String {
        let max_sdk_version = self
            .max_sdk_version
            .as_ref()
            .map(|max_sdk_version| format!(r#"android:maxSdkVersion="{}""#, max_sdk_version))
            .unwrap_or_default();
        format!(
            r#"<uses-permission android:name="{}" {}/>"#,
            &self.name, max_sdk_version,
        )
    }
}

#[derive(Debug)]
pub struct IntentFilterData {
    pub scheme: Option<String>,
    pub host: Option<String>,
    pub prefix: Option<String>,
}

impl IntentFilterData {
    pub fn to_string(&self) -> String {
        let host = if let Some(host) = self.host.as_ref() {
            format!(" android:host=\"{}\"", host)
        } else {
            "".into()
        };

        let prefix = if let Some(prefix) = self.prefix.as_ref() {
            format!(" android:pathPrefix=\"{}\"", prefix)
        } else {
            "".into()
        };

        let scheme = if let Some(scheme) = self.scheme.as_ref() {
            format!(" android:scheme=\"{}\"", scheme)
        } else {
            "".into()
        };

        format!("<data {} {} {}/>", scheme, &host, &prefix)
    }
}

#[derive(Debug)]
pub struct IntentFilter {
    pub name: String,
    pub categories: Vec<String>,
    pub data: Vec<IntentFilterData>,
}

impl IntentFilter {
    pub fn to_string(&self) -> String {
        let mut categories = "".to_string();
        for category in &self.categories {
            categories = format!("{}<category android:name=\"{}\"/>", categories, category)
        }

        let mut data = "".to_string();
        for d in &self.data {
            data = format!("{}{}", data, d.to_string())
        }

        format!(
            "<intent-filter>
            \t{}
            \t{}
            \t<action android:name=\"{}\"/>
            </intent-filter>",
            &categories, &data, &self.name,
        )
    }
}