blob: b3b1e484d27b64a096474494f7f5913419c8a193 [file] [log] [blame]
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef AAPT_FILES_H
18#define AAPT_FILES_H
19
Adam Lesinski1ab598f2015-08-14 14:26:04 -070020#include <memory>
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080021#include <string>
22#include <vector>
23
Adam Lesinskice5e56e2016-10-21 17:56:45 -070024#include "android-base/macros.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080025#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070026#include "utils/FileMap.h"
27
28#include "Diagnostics.h"
29#include "Maybe.h"
30#include "Source.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070031
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080032namespace aapt {
Adam Lesinski1ab598f2015-08-14 14:26:04 -070033namespace file {
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080034
35#ifdef _WIN32
36constexpr const char sDirSep = '\\';
37#else
38constexpr const char sDirSep = '/';
39#endif
40
41enum class FileType {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070042 kUnknown = 0,
43 kNonexistant,
44 kRegular,
45 kDirectory,
46 kCharDev,
47 kBlockDev,
48 kFifo,
49 kSymlink,
50 kSocket,
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080051};
52
Adam Lesinskid5083f62017-01-16 15:07:21 -080053FileType GetFileType(const android::StringPiece& path);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080054
55/*
56 * Appends a path to `base`, separated by the directory separator.
57 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080058void AppendPath(std::string* base, android::StringPiece part);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080059
60/*
61 * Makes all the directories in `path`. The last element in the path
62 * is interpreted as a directory.
63 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080064bool mkdirs(const android::StringPiece& path);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080065
Adam Lesinski4d3a9872015-04-09 19:53:22 -070066/**
67 * Returns all but the last part of the path.
68 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080069android::StringPiece GetStem(const android::StringPiece& path);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070070
71/**
72 * Returns the last part of the path with extension.
73 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080074android::StringPiece GetFilename(const android::StringPiece& path);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070075
76/**
77 * Returns the extension of the path. This is the entire string after
78 * the first '.' of the last part of the path.
79 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080080android::StringPiece GetExtension(const android::StringPiece& path);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070081
82/**
83 * Converts a package name (com.android.app) to a path: com/android/app
84 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080085std::string PackageToPath(const android::StringPiece& package);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070086
87/**
88 * Creates a FileMap for the file at path.
89 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080090Maybe<android::FileMap> MmapPath(const android::StringPiece& path, std::string* out_error);
Adam Lesinski4d3a9872015-04-09 19:53:22 -070091
Adam Lesinskic51562c2016-04-28 11:12:38 -070092/**
93 * Reads the file at path and appends each line to the outArgList vector.
94 */
Adam Lesinskid5083f62017-01-16 15:07:21 -080095bool AppendArgsFromFile(const android::StringPiece& path, std::vector<std::string>* out_arglist,
Adam Lesinskice5e56e2016-10-21 17:56:45 -070096 std::string* out_error);
Adam Lesinskic51562c2016-04-28 11:12:38 -070097
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080098/*
99 * Filter that determines which resource files/directories are
100 * processed by AAPT. Takes a pattern string supplied by the user.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700101 * Pattern format is specified in the FileFilter::SetPattern() method.
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800102 */
103class FileFilter {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700104 public:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700105 explicit FileFilter(IDiagnostics* diag) : diag_(diag) {}
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700106
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700107 /*
108 * Patterns syntax:
109 * - Delimiter is :
110 * - Entry can start with the flag ! to avoid printing a warning
111 * about the file being ignored.
112 * - Entry can have the flag "<dir>" to match only directories
113 * or <file> to match only files. Default is to match both.
114 * - Entry can be a simplified glob "<prefix>*" or "*<suffix>"
115 * where prefix/suffix must have at least 1 character (so that
116 * we don't match a '*' catch-all pattern.)
117 * - The special filenames "." and ".." are always ignored.
118 * - Otherwise the full string is matched.
119 * - match is not case-sensitive.
120 */
Adam Lesinskid5083f62017-01-16 15:07:21 -0800121 bool SetPattern(const android::StringPiece& pattern);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800122
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700123 /**
124 * Applies the filter, returning true for pass, false for fail.
125 */
126 bool operator()(const std::string& filename, FileType type) const;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800127
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700128 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700129 DISALLOW_COPY_AND_ASSIGN(FileFilter);
130
131 IDiagnostics* diag_;
132 std::vector<std::string> pattern_tokens_;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800133};
134
Adam Lesinskib39ad7c2017-03-13 11:40:48 -0700135// Returns a list of files relative to the directory identified by `path`.
136// An optional FileFilter filters out any files that don't pass.
137Maybe<std::vector<std::string>> FindFiles(const android::StringPiece& path, IDiagnostics* diag,
138 const FileFilter* filter = nullptr);
139
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700140} // namespace file
141} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800142
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700143#endif // AAPT_FILES_H