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