1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.catalina.storeconfig;
import java.io.PrintWriter;
import java.net.URL;
import javax.management.MBeanServer;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import org.apache.catalina.Context;
import org.apache.catalina.Host;
import org.apache.catalina.Server;
import org.apache.catalina.Service;
import org.apache.catalina.core.StandardContext;
import org.apache.catalina.mbeans.MBeanUtils;
import org.apache.catalina.startup.Bootstrap;
import org.apache.juli.logging.Log;
import org.apache.juli.logging.LogFactory;
import org.apache.tomcat.util.res.StringManager;
/**
* Store Server/Service/Host/Context at file or PrintWriter. Default server.xml is at $catalina.base/conf/server.xml
*/
public class StoreConfig implements IStoreConfig {
private static final Log log = LogFactory.getLog(StoreConfig.class);
protected static final StringManager sm = StringManager.getManager(Constants.Package);
private String serverFilename = "conf/server.xml";
private StoreRegistry registry;
private Server server;
/**
* Get server.xml location
*
* @return The server file name
*/
public String getServerFilename() {
return serverFilename;
}
/**
* Set new server.xml location.
*
* @param string The server.xml location
*/
public void setServerFilename(String string) {
serverFilename = string;
}
@Override
public StoreRegistry getRegistry() {
return registry;
}
@Override
public void setServer(Server aServer) {
server = aServer;
}
@Override
public Server getServer() {
return server;
}
@Override
public void setRegistry(StoreRegistry aRegistry) {
registry = aRegistry;
}
@Override
public void storeConfig() {
store(server);
}
/**
* Store Server from Object Name (Catalina:type=Server).
*
* @param aServerName Server ObjectName
* @param backup <code>true</code> to backup existing configuration files before rewriting them
* @param externalAllowed <code>true</code> to allow saving webapp configuration for webapps that are not inside the
* host's app directory
*
* @throws MalformedObjectNameException Bad MBean name
*/
public synchronized void storeServer(String aServerName, boolean backup, boolean externalAllowed)
throws MalformedObjectNameException {
if (aServerName == null || aServerName.isEmpty()) {
log.error(sm.getString("config.emptyObjectName"));
return;
}
MBeanServer mserver = MBeanUtils.createServer();
ObjectName objectName = new ObjectName(aServerName);
if (mserver.isRegistered(objectName)) {
try {
Server aServer = (Server) mserver.getAttribute(objectName, "managedResource");
StoreDescription desc = getRegistry().findDescription(StandardContext.class);
if (desc != null) {
boolean oldSeparate = desc.isStoreSeparate();
boolean oldBackup = desc.isBackup();
boolean oldExternalAllowed = desc.isExternalAllowed();
try {
desc.setStoreSeparate(true);
desc.setBackup(backup);
desc.setExternalAllowed(externalAllowed);
store(aServer);
} finally {
desc.setStoreSeparate(oldSeparate);
desc.setBackup(oldBackup);
desc.setExternalAllowed(oldExternalAllowed);
}
} else {
store(aServer);
}
} catch (Exception e) {
log.error(sm.getString("config.storeServerError"), e);
}
} else {
log.info(sm.getString("config.objectNameNotFound", aServerName));
}
}
/**
* Store a Context from ObjectName.
*
* @param aContextName MBean ObjectName
* @param backup <code>true</code> to backup existing configuration files before rewriting them
* @param externalAllowed <code>true</code> to allow saving webapp configuration for webapps that are not inside the
* host's app directory
*
* @throws MalformedObjectNameException Bad MBean name
*/
public synchronized void storeContext(String aContextName, boolean backup, boolean externalAllowed)
throws MalformedObjectNameException {
if (aContextName == null || aContextName.isEmpty()) {
log.error(sm.getString("config.emptyObjectName"));
return;
}
MBeanServer mserver = MBeanUtils.createServer();
ObjectName objectName = new ObjectName(aContextName);
if (mserver.isRegistered(objectName)) {
try {
Context aContext = (Context) mserver.getAttribute(objectName, "managedResource");
URL configFile = aContext.getConfigFile();
if (configFile != null) {
StoreDescription desc = getRegistry().findDescription(aContext.getClass());
if (desc != null) {
boolean oldSeparate = desc.isStoreSeparate();
boolean oldBackup = desc.isBackup();
boolean oldExternalAllowed = desc.isExternalAllowed();
try {
desc.setStoreSeparate(true);
desc.setBackup(backup);
desc.setExternalAllowed(externalAllowed);
desc.getStoreFactory().store(null, -2, aContext);
} finally {
desc.setStoreSeparate(oldSeparate);
desc.setBackup(oldBackup);
desc.setBackup(oldExternalAllowed);
}
}
} else {
log.error(sm.getString("config.missingContextFile", aContext.getPath()));
}
} catch (Exception e) {
log.error(sm.getString("config.storeContextError", aContextName), e);
}
} else {
log.info(sm.getString("config.objectNameNotFound", aContextName));
}
}
@Override
public synchronized boolean store(Server aServer) {
StoreFileMover mover =
new StoreFileMover(Bootstrap.getCatalinaBase(), getServerFilename(), getRegistry().getEncoding());
// Open an output writer for the new configuration file
try {
try (PrintWriter writer = mover.getWriter()) {
store(writer, -2, aServer);
}
mover.move();
return true;
} catch (Exception e) {
log.error(sm.getString("config.storeServerError"), e);
}
return false;
}
@Override
public synchronized boolean store(Context aContext) {
try {
StoreDescription desc = getRegistry().findDescription(aContext.getClass());
if (desc != null) {
boolean old = desc.isStoreSeparate();
try {
desc.setStoreSeparate(true);
desc.getStoreFactory().store(null, -2, aContext);
} finally {
desc.setStoreSeparate(old);
}
}
return true;
} catch (Exception e) {
log.error(sm.getString("config.storeContextError", aContext.getName()), e);
}
return false;
}
@Override
public void store(PrintWriter aWriter, int indent, Context aContext) throws Exception {
boolean oldSeparate = true;
StoreDescription desc = null;
try {
desc = getRegistry().findDescription(aContext.getClass());
if (desc != null) {
oldSeparate = desc.isStoreSeparate();
desc.setStoreSeparate(false);
desc.getStoreFactory().store(aWriter, indent, aContext);
}
} finally {
if (desc != null) {
desc.setStoreSeparate(oldSeparate);
} else {
log.warn(sm.getString("factory.storeNoDescriptor", aContext.getClass()));
}
}
}
@Override
public void store(PrintWriter aWriter, int indent, Host aHost) throws Exception {
StoreDescription desc = getRegistry().findDescription(aHost.getClass());
if (desc != null) {
desc.getStoreFactory().store(aWriter, indent, aHost);
} else {
log.warn(sm.getString("factory.storeNoDescriptor", aHost.getClass()));
}
}
@Override
public void store(PrintWriter aWriter, int indent, Service aService) throws Exception {
StoreDescription desc = getRegistry().findDescription(aService.getClass());
if (desc != null) {
desc.getStoreFactory().store(aWriter, indent, aService);
} else {
log.warn(sm.getString("factory.storeNoDescriptor", aService.getClass()));
}
}
@Override
public void store(PrintWriter writer, int indent, Server aServer) throws Exception {
StoreDescription desc = getRegistry().findDescription(aServer.getClass());
if (desc != null) {
desc.getStoreFactory().store(writer, indent, aServer);
} else {
log.warn(sm.getString("factory.storeNoDescriptor", aServer.getClass()));
}
}
}
|