blob: b6aa410f9421727670216710696e2abf277da0ec [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 Lesinski5b54ca22017-08-02 14:57:43 -070053FileType GetFileType(const std::string& path);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080054
Adam Lesinski5b54ca22017-08-02 14:57:43 -070055// Appends a path to `base`, separated by the directory separator.
Adam Lesinskid5083f62017-01-16 15:07:21 -080056void AppendPath(std::string* base, android::StringPiece part);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080057
Adam Lesinski5b54ca22017-08-02 14:57:43 -070058// Makes all the directories in `path`. The last element in the path is interpreted as a directory.
59bool mkdirs(const std::string& path);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080060
Adam Lesinski5b54ca22017-08-02 14:57:43 -070061// Returns all but the last part of the path.
Adam Lesinskid5083f62017-01-16 15:07:21 -080062android::StringPiece GetStem(const android::StringPiece& path);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070063
Adam Lesinski5b54ca22017-08-02 14:57:43 -070064// Returns the last part of the path with extension.
Adam Lesinskid5083f62017-01-16 15:07:21 -080065android::StringPiece GetFilename(const android::StringPiece& path);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070066
Adam Lesinski5b54ca22017-08-02 14:57:43 -070067// Returns the extension of the path. This is the entire string after the first '.' of the last part
68// of the path.
Adam Lesinskid5083f62017-01-16 15:07:21 -080069android::StringPiece GetExtension(const android::StringPiece& path);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070070
Adam Lesinski5b54ca22017-08-02 14:57:43 -070071// Converts a package name (com.android.app) to a path: com/android/app
Adam Lesinskid5083f62017-01-16 15:07:21 -080072std::string PackageToPath(const android::StringPiece& package);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070073
Adam Lesinski5b54ca22017-08-02 14:57:43 -070074// Creates a FileMap for the file at path.
75Maybe<android::FileMap> MmapPath(const std::string& path, std::string* out_error);
Adam Lesinski4d3a9872015-04-09 19:53:22 -070076
Adam Lesinski5b54ca22017-08-02 14:57:43 -070077// Reads the file at path and appends each line to the outArgList vector.
Adam Lesinskid5083f62017-01-16 15:07:21 -080078bool AppendArgsFromFile(const android::StringPiece& path, std::vector<std::string>* out_arglist,
Adam Lesinskice5e56e2016-10-21 17:56:45 -070079 std::string* out_error);
Adam Lesinskic51562c2016-04-28 11:12:38 -070080
Adam Lesinski5b54ca22017-08-02 14:57:43 -070081// Filter that determines which resource files/directories are
82// processed by AAPT. Takes a pattern string supplied by the user.
83// Pattern format is specified in the FileFilter::SetPattern() method.
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080084class FileFilter {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070085 public:
Adam Lesinskice5e56e2016-10-21 17:56:45 -070086 explicit FileFilter(IDiagnostics* diag) : diag_(diag) {}
Adam Lesinski1ab598f2015-08-14 14:26:04 -070087
Adam Lesinski5b54ca22017-08-02 14:57:43 -070088 // Patterns syntax:
89 // - Delimiter is :
90 // - Entry can start with the flag ! to avoid printing a warning
91 // about the file being ignored.
92 // - Entry can have the flag "<dir>" to match only directories
93 // or <file> to match only files. Default is to match both.
94 // - Entry can be a simplified glob "<prefix>*" or "*<suffix>"
95 // where prefix/suffix must have at least 1 character (so that
96 // we don't match a '*' catch-all pattern.)
97 // - The special filenames "." and ".." are always ignored.
98 // - Otherwise the full string is matched.
99 // - match is not case-sensitive.
Adam Lesinskid5083f62017-01-16 15:07:21 -0800100 bool SetPattern(const android::StringPiece& pattern);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800101
Adam Lesinski5b54ca22017-08-02 14:57:43 -0700102 // Applies the filter, returning true for pass, false for fail.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700103 bool operator()(const std::string& filename, FileType type) const;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800104
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700105 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700106 DISALLOW_COPY_AND_ASSIGN(FileFilter);
107
108 IDiagnostics* diag_;
109 std::vector<std::string> pattern_tokens_;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800110};
111
Adam Lesinskib39ad7c2017-03-13 11:40:48 -0700112// Returns a list of files relative to the directory identified by `path`.
113// An optional FileFilter filters out any files that don't pass.
114Maybe<std::vector<std::string>> FindFiles(const android::StringPiece& path, IDiagnostics* diag,
115 const FileFilter* filter = nullptr);
116
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700117} // namespace file
118} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800119
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700120#endif // AAPT_FILES_H