]> source.dussan.org Git - archiva.git/blob
bbe5b5fe8b3f54d54de0e00d43ef2daeaff25fa6
[archiva.git] /
1 package org.apache.archiva.web.action.admin;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.redback.rbac.Resource;
23 import org.apache.archiva.repository.scanner.RepositoryScanner;
24 import org.apache.archiva.security.common.ArchivaRoleConstants;
25 import org.apache.commons.lang.StringUtils;
26 import org.apache.archiva.web.action.AbstractActionSupport;
27 import org.apache.archiva.redback.components.cache.Cache;
28 import org.apache.archiva.redback.components.taskqueue.TaskQueue;
29 import org.apache.archiva.redback.integration.interceptor.SecureAction;
30 import org.apache.archiva.redback.integration.interceptor.SecureActionBundle;
31 import org.apache.archiva.redback.integration.interceptor.SecureActionException;
32 import org.springframework.context.annotation.Scope;
33 import org.springframework.stereotype.Controller;
34
35 import javax.annotation.PostConstruct;
36 import javax.inject.Inject;
37 import java.util.Map;
38
39 /**
40  * Shows system status information for the administrator.
41  *
42  *
43  */
44 @Controller( "systemStatus" )
45 @Scope( "prototype" )
46 public class SystemStatusAction
47     extends AbstractActionSupport
48     implements SecureAction
49 {
50
51     private Map<String, TaskQueue> queues;
52
53     private Map<String, Cache> caches;
54
55     @Inject
56     private RepositoryScanner scanner;
57
58     private String memoryStatus;
59
60     private String cacheKey;
61
62     @PostConstruct
63     public void initialize()
64     {
65         super.initialize();
66         queues = getBeansOfType( TaskQueue.class );
67         caches = getBeansOfType( Cache.class );
68     }
69
70     public SecureActionBundle getSecureActionBundle()
71         throws SecureActionException
72     {
73         SecureActionBundle bundle = new SecureActionBundle();
74
75         bundle.setRequiresAuthentication( true );
76         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
77
78         return bundle;
79     }
80
81     public String execute()
82     {
83         Runtime runtime = Runtime.getRuntime();
84         runtime.gc();
85         long total = runtime.totalMemory();
86         long used = total - runtime.freeMemory();
87         long max = runtime.maxMemory();
88         memoryStatus = formatMemory( used ) + "/" + formatMemory( total ) + " (Max: " + formatMemory( max ) + ")";
89
90         return SUCCESS;
91     }
92     
93     public String flush()
94     {
95         if( !StringUtils.isEmpty( cacheKey ) )
96         {
97             Cache cache = caches.get( cacheKey );
98             cache.clear();
99         }
100
101         return SUCCESS;
102     }
103
104     private static String formatMemory( long l )
105     {
106         return l / ( 1024 * 1024 ) + "M";
107     }
108
109     public String getMemoryStatus()
110     {
111         return memoryStatus;
112     }
113
114     public RepositoryScanner getScanner()
115     {
116         return scanner;
117     }
118
119     public Map<String, Cache> getCaches()
120     {
121         return caches;
122     }
123
124     public Map<String, TaskQueue> getQueues()
125     {
126         return queues;
127     }
128
129     public String getCacheKey()
130     {
131         return cacheKey;
132     }
133
134     public void setCacheKey( String cacheKey )
135     {
136         this.cacheKey = cacheKey;
137     }
138 }