blob: b7e7f903a2b17e07b1187dc86a34f5ff546d2138 [file] [log] [blame]
Adam Lesinskica5638f2015-10-21 14:42:43 -07001/*
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#include "java/AnnotationProcessor.h"
18#include "util/Util.h"
19
20#include <algorithm>
21
22namespace aapt {
23
Adam Lesinski626b3db2016-04-07 13:24:59 -070024void AnnotationProcessor::appendCommentLine(std::string& comment) {
Adam Lesinskica5638f2015-10-21 14:42:43 -070025 static const std::string sDeprecated = "@deprecated";
26 static const std::string sSystemApi = "@SystemApi";
27
Adam Lesinskib274e352015-11-06 15:14:35 -080028 if (comment.find(sDeprecated) != std::string::npos) {
29 mAnnotationBitMask |= kDeprecated;
Adam Lesinskica5638f2015-10-21 14:42:43 -070030 }
31
Adam Lesinski626b3db2016-04-07 13:24:59 -070032 std::string::size_type idx = comment.find(sSystemApi);
33 if (idx != std::string::npos) {
Adam Lesinskib274e352015-11-06 15:14:35 -080034 mAnnotationBitMask |= kSystemApi;
Adam Lesinski626b3db2016-04-07 13:24:59 -070035 comment.erase(comment.begin() + idx, comment.begin() + idx + sSystemApi.size());
36 }
37
38 if (util::trimWhitespace(comment).empty()) {
39 return;
Adam Lesinskica5638f2015-10-21 14:42:43 -070040 }
41
Adam Lesinskib274e352015-11-06 15:14:35 -080042 if (!mHasComments) {
43 mHasComments = true;
44 mComment << "/**";
Adam Lesinskica5638f2015-10-21 14:42:43 -070045 }
46
Adam Lesinski76565542016-03-10 21:55:04 -080047 mComment << "\n * " << std::move(comment);
Adam Lesinskica5638f2015-10-21 14:42:43 -070048}
49
50void AnnotationProcessor::appendComment(const StringPiece16& comment) {
51 // We need to process line by line to clean-up whitespace and append prefixes.
52 for (StringPiece16 line : util::tokenize(comment, u'\n')) {
Adam Lesinski3b4cd942015-10-30 16:31:42 -070053 line = util::trimWhitespace(line);
54 if (!line.empty()) {
Adam Lesinski626b3db2016-04-07 13:24:59 -070055 std::string utf8Line = util::utf16ToUtf8(line);
56 appendCommentLine(utf8Line);
Adam Lesinski3b4cd942015-10-30 16:31:42 -070057 }
58 }
59}
60
61void AnnotationProcessor::appendComment(const StringPiece& comment) {
62 for (StringPiece line : util::tokenize(comment, '\n')) {
63 line = util::trimWhitespace(line);
64 if (!line.empty()) {
Adam Lesinski626b3db2016-04-07 13:24:59 -070065 std::string utf8Line = line.toString();
66 appendCommentLine(utf8Line);
Adam Lesinski3b4cd942015-10-30 16:31:42 -070067 }
Adam Lesinskica5638f2015-10-21 14:42:43 -070068 }
69}
70
Adam Lesinski76565542016-03-10 21:55:04 -080071void AnnotationProcessor::appendNewLine() {
72 mComment << "\n *";
73}
74
Adam Lesinski6cbfb1d2016-03-31 13:33:02 -070075void AnnotationProcessor::writeToStream(std::ostream* out, const StringPiece& prefix) const {
Adam Lesinskib274e352015-11-06 15:14:35 -080076 if (mHasComments) {
77 std::string result = mComment.str();
78 for (StringPiece line : util::tokenize<char>(result, '\n')) {
79 *out << prefix << line << "\n";
80 }
81 *out << prefix << " */" << "\n";
Adam Lesinski3b4cd942015-10-30 16:31:42 -070082 }
Adam Lesinskica5638f2015-10-21 14:42:43 -070083
Adam Lesinskib274e352015-11-06 15:14:35 -080084 if (mAnnotationBitMask & kDeprecated) {
85 *out << prefix << "@Deprecated\n";
86 }
87
88 if (mAnnotationBitMask & kSystemApi) {
89 *out << prefix << "@android.annotation.SystemApi\n";
90 }
Adam Lesinskica5638f2015-10-21 14:42:43 -070091}
92
93} // namespace aapt