blob: c301ffed1a4b1619c796d42ac2f425d351fc674e [file] [log] [blame]
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001/*
2 * Copyright (C) 2013 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
17package com.android.server.wm;
18
Craig Mautner2c2549c2013-11-12 08:31:15 -080019import android.util.EventLog;
Craig Mautner2c2549c2013-11-12 08:31:15 -080020
Craig Mautnerc00204b2013-03-05 15:02:14 -080021class Task {
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080022// private final String TAG = "TaskGroup";
Craig Mautnerc00204b2013-03-05 15:02:14 -080023 TaskStack mStack;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080024 final AppTokenList mAppTokens = new AppTokenList();
25 final int taskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070026 final int mUserId;
Craig Mautner9ef471f2014-02-07 13:11:47 -080027 boolean mDeferRemoval = false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080028
Craig Mautnerac6f8432013-07-17 13:24:59 -070029 Task(AppWindowToken wtoken, TaskStack stack, int userId) {
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080030 taskId = wtoken.groupId;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080031 mAppTokens.add(wtoken);
Craig Mautnerc00204b2013-03-05 15:02:14 -080032 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070033 mUserId = userId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080034 }
35
36 DisplayContent getDisplayContent() {
37 return mStack.getDisplayContent();
38 }
39
40 void addAppToken(int addPos, AppWindowToken wtoken) {
41 mAppTokens.add(addPos, wtoken);
42 }
43
44 boolean removeAppToken(AppWindowToken wtoken) {
45 mAppTokens.remove(wtoken);
46 if (mAppTokens.size() == 0) {
Craig Mautner2c2549c2013-11-12 08:31:15 -080047 EventLog.writeEvent(com.android.server.EventLogTags.WM_TASK_REMOVED, taskId,
48 "removeAppToken: last token");
Craig Mautnerc00204b2013-03-05 15:02:14 -080049 return true;
50 }
51 return false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080052 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -080053
54 @Override
55 public String toString() {
Craig Mautner4cd0c13f2013-04-16 15:55:52 -070056 return "{taskId=" + taskId + " appTokens=" + mAppTokens + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -080057 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080058}