]> source.dussan.org Git - archiva.git/blob
4f471edf09bf23db082b5a05d7efa22555f37c5d
[archiva.git] /
1 package org.apache.maven.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.repository.scanner.RepositoryScanner;
23 import org.apache.archiva.security.common.ArchivaRoleConstants;
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.web.action.AbstractActionSupport;
26 import org.codehaus.plexus.cache.Cache;
27 import org.codehaus.plexus.redback.rbac.Resource;
28 import org.codehaus.plexus.taskqueue.TaskQueue;
29 import org.codehaus.redback.integration.interceptor.SecureAction;
30 import org.codehaus.redback.integration.interceptor.SecureActionBundle;
31 import org.codehaus.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  * @version $Id$
43  */
44 @Controller( "systemStatus" )
45 @Scope( "prototype" )
46 public class SystemStatusAction
47     extends AbstractActionSupport
48     implements SecureAction
49 {
50     /**
51      * plexus.requirement role="org.codehaus.plexus.taskqueue.TaskQueue"
52      */
53     private Map<String, TaskQueue> queues;
54
55     /**
56      * plexus.requirement role="org.codehaus.plexus.cache.Cache"
57      */
58     private Map<String, Cache> caches;
59
60     /**
61      * plexus.requirement
62      */
63     @Inject
64     private RepositoryScanner scanner;
65
66     private String memoryStatus;
67
68     private String cacheKey;
69
70     @PostConstruct
71     public void initialize()
72     {
73         super.initialize();
74         queues = getBeansOfType( TaskQueue.class );
75         caches = getBeansOfType( Cache.class );
76     }
77
78     public SecureActionBundle getSecureActionBundle()
79         throws SecureActionException
80     {
81         SecureActionBundle bundle = new SecureActionBundle();
82
83         bundle.setRequiresAuthentication( true );
84         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
85
86         return bundle;
87     }
88
89     public String execute()
90     {
91         Runtime runtime = Runtime.getRuntime();
92         runtime.gc();
93         long total = runtime.totalMemory();
94         long used = total - runtime.freeMemory();
95         long max = runtime.maxMemory();
96         memoryStatus = formatMemory( used ) + "/" + formatMemory( total ) + " (Max: " + formatMemory( max ) + ")";
97
98         return SUCCESS;
99     }
100     
101     public String flush()
102     {
103         if( !StringUtils.isEmpty( cacheKey ) )
104         {
105             Cache cache = caches.get( cacheKey );
106             cache.clear();
107         }
108
109         return SUCCESS;
110     }
111
112     private static String formatMemory( long l )
113     {
114         return l / ( 1024 * 1024 ) + "M";
115     }
116
117     public String getMemoryStatus()
118     {
119         return memoryStatus;
120     }
121
122     public RepositoryScanner getScanner()
123     {
124         return scanner;
125     }
126
127     public Map<String, Cache> getCaches()
128     {
129         return caches;
130     }
131
132     public Map<String, TaskQueue> getQueues()
133     {
134         return queues;
135     }
136
137     public String getCacheKey()
138     {
139         return cacheKey;
140     }
141
142     public void setCacheKey( String cacheKey )
143     {
144         this.cacheKey = cacheKey;
145     }
146 }