blob: 4d8a1feb63b1c0a6503d9db85ad4c5f62919eb40 [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 "Diagnostics.h"
21#include "Maybe.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080022#include "Source.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080023
Adam Lesinski1ab598f2015-08-14 14:26:04 -070024#include "util/StringPiece.h"
25
26#include <utils/FileMap.h>
Adam Lesinskica2fc352015-04-03 12:08:26 -070027#include <cassert>
Adam Lesinski1ab598f2015-08-14 14:26:04 -070028#include <memory>
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080029#include <string>
30#include <vector>
31
32namespace 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 {
42 kUnknown = 0,
43 kNonexistant,
44 kRegular,
45 kDirectory,
46 kCharDev,
47 kBlockDev,
48 kFifo,
49 kSymlink,
50 kSocket,
51};
52
53FileType getFileType(const StringPiece& path);
54
55/*
56 * Lists files under the directory `root`. Files are listed
57 * with just their leaf (filename) names.
58 */
59std::vector<std::string> listFiles(const StringPiece& root);
60
61/*
62 * Appends a path to `base`, separated by the directory separator.
63 */
Adam Lesinski96917c22016-03-09 13:11:25 -080064void appendPath(std::string* base, StringPiece part);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080065
66/*
67 * Makes all the directories in `path`. The last element in the path
68 * is interpreted as a directory.
69 */
70bool mkdirs(const StringPiece& path);
71
Adam Lesinski4d3a9872015-04-09 19:53:22 -070072/**
73 * Returns all but the last part of the path.
74 */
Adam Lesinski1ab598f2015-08-14 14:26:04 -070075StringPiece getStem(const StringPiece& path);
76
77/**
78 * Returns the last part of the path with extension.
79 */
80StringPiece getFilename(const StringPiece& path);
81
82/**
83 * Returns the extension of the path. This is the entire string after
84 * the first '.' of the last part of the path.
85 */
86StringPiece getExtension(const StringPiece& path);
87
88/**
89 * Converts a package name (com.android.app) to a path: com/android/app
90 */
91std::string packageToPath(const StringPiece& package);
92
93/**
94 * Creates a FileMap for the file at path.
95 */
96Maybe<android::FileMap> mmapPath(const StringPiece& path, std::string* outError);
Adam Lesinski4d3a9872015-04-09 19:53:22 -070097
Adam Lesinskic51562c2016-04-28 11:12:38 -070098/**
99 * Reads the file at path and appends each line to the outArgList vector.
100 */
101bool appendArgsFromFile(const StringPiece& path, std::vector<std::string>* outArgList,
102 std::string* outError);
103
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800104/*
105 * Filter that determines which resource files/directories are
106 * processed by AAPT. Takes a pattern string supplied by the user.
107 * Pattern format is specified in the
108 * FileFilter::setPattern(const std::string&) method.
109 */
110class FileFilter {
111public:
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700112 FileFilter(IDiagnostics* diag) : mDiag(diag) {
113 }
114
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800115 /*
116 * Patterns syntax:
117 * - Delimiter is :
118 * - Entry can start with the flag ! to avoid printing a warning
119 * about the file being ignored.
120 * - Entry can have the flag "<dir>" to match only directories
121 * or <file> to match only files. Default is to match both.
122 * - Entry can be a simplified glob "<prefix>*" or "*<suffix>"
123 * where prefix/suffix must have at least 1 character (so that
124 * we don't match a '*' catch-all pattern.)
125 * - The special filenames "." and ".." are always ignored.
126 * - Otherwise the full string is matched.
127 * - match is not case-sensitive.
128 */
129 bool setPattern(const StringPiece& pattern);
130
131 /**
132 * Applies the filter, returning true for pass, false for fail.
133 */
134 bool operator()(const std::string& filename, FileType type) const;
135
136private:
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700137 IDiagnostics* mDiag;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800138 std::vector<std::string> mPatternTokens;
139};
140
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700141} // namespace file
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800142} // namespace aapt
143
144#endif // AAPT_FILES_H