]> source.dussan.org Git - archiva.git/blob
012d0d684da4d80c2022b5caada8e493958be87a
[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.maven.archiva.repository.scanner.RepositoryScanner;
23 import org.apache.maven.archiva.security.ArchivaRoleConstants;
24 import org.apache.maven.archiva.web.action.PlexusActionSupport;
25 import org.codehaus.plexus.cache.Cache;
26 import org.codehaus.plexus.redback.rbac.Resource;
27 import org.codehaus.plexus.taskqueue.TaskQueue;
28 import org.codehaus.redback.integration.interceptor.SecureAction;
29 import org.codehaus.redback.integration.interceptor.SecureActionBundle;
30 import org.codehaus.redback.integration.interceptor.SecureActionException;
31
32 import java.util.Map;
33
34 /**
35  * Shows system status information for the administrator.
36  *
37  * @version $Id$
38  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="systemStatus" instantiation-strategy="per-lookup"
39  */
40 public class SystemStatusAction
41     extends PlexusActionSupport
42     implements SecureAction
43 {
44     /**
45      * @plexus.requirement role="org.codehaus.plexus.taskqueue.TaskQueue"
46      */
47     private Map<String,TaskQueue> queues;
48
49     /**
50      * @plexus.requirement role="org.codehaus.plexus.cache.Cache"
51      */
52     private Map<String,Cache> caches;
53
54     /**
55      * @plexus.requirement
56      */
57     private RepositoryScanner scanner;
58
59     private String memoryStatus;
60
61     public SecureActionBundle getSecureActionBundle()
62         throws SecureActionException
63     {
64         SecureActionBundle bundle = new SecureActionBundle();
65
66         bundle.setRequiresAuthentication( true );
67         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
68
69         return bundle;
70     }
71
72     public String execute()
73     {
74         Runtime runtime = Runtime.getRuntime();
75         runtime.gc();
76         long total = runtime.totalMemory();
77         long used = total - runtime.freeMemory();
78         long max = runtime.maxMemory();
79         memoryStatus = formatMemory(used) + "/" + formatMemory(total) + " (Max: " + formatMemory(max) + ")";
80         
81         return SUCCESS;
82     }
83
84     private static String formatMemory( long l )
85     {
86       return  l / ( 1024 * 1024 ) + "M";
87     }
88
89     public String getMemoryStatus()
90     {
91         return memoryStatus;
92     }
93
94     public RepositoryScanner getScanner()
95     {
96         return scanner;
97     }
98
99     public Map<String, Cache> getCaches()
100     {
101         return caches;
102     }
103
104     public Map<String, TaskQueue> getQueues()
105     {
106         return queues;
107     }
108 }