/* * 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.geode.management.internal.cli.util; import java.io.File; import java.io.IOException; import java.io.StringReader; import java.util.Properties; import java.util.regex.Pattern; import org.apache.geode.GemFireIOException; import org.apache.geode.cache.DiskAccessException; import org.apache.geode.internal.cache.DiskStoreImpl; import org.apache.geode.internal.i18n.LocalizedStrings; import org.apache.geode.management.internal.cli.CliUtil; import org.apache.geode.management.internal.cli.GfshParser; import org.apache.geode.management.internal.cli.i18n.CliStrings; public class DiskStoreUpgrader { public static String STACKTRACE_START = "--------------------------"; public static void main(String[] args) { String errorString = null; String stackTraceString = null; String diskStoreName = null; String diskDirsStr = null; String[] diskDirs = null; String maxOpLogSize = null; long maxOplogSize = -1; if (args.length < 3) { throw new IllegalArgumentException( "Requires 3 arguments : <diskStoreName> <diskDirs> <maxOpLogSize>"); } Properties prop = new Properties(); try { prop.load(new StringReader( args[0] + GfshParser.LINE_SEPARATOR + args[1] + GfshParser.LINE_SEPARATOR + args[2])); } catch (IOException e) { throw new IllegalArgumentException( "Requires 3 arguments : <diskStoreName> <diskDirs> <maxOpLogSize>"); } try { diskStoreName = prop.getProperty(CliStrings.UPGRADE_OFFLINE_DISK_STORE__NAME); diskDirsStr = prop.getProperty(CliStrings.UPGRADE_OFFLINE_DISK_STORE__DISKDIRS); diskDirs = diskDirsStr.split(","); maxOpLogSize = prop.getProperty(CliStrings.UPGRADE_OFFLINE_DISK_STORE__MAXOPLOGSIZE); maxOplogSize = Long.valueOf(maxOpLogSize); upgrade(diskStoreName, diskDirs, maxOplogSize); } catch (GemFireIOException e) { Throwable cause = e.getCause(); if (cause instanceof IllegalStateException) { String message = cause.getMessage(); if (stringMatches( LocalizedStrings.DiskInitFile_THE_INIT_FILE_0_DOES_NOT_EXIST.toLocalizedString("(.*)"), message)) { errorString = CliStrings.format( CliStrings.UPGRADE_OFFLINE_DISK_STORE__MSG__CANNOT_LOCATE_0_DISKSTORE_IN_1, diskStoreName, CliUtil.arrayToString(diskDirs)); } else { errorString = message; } } else if (cause instanceof DiskAccessException) { boolean isKnownCause = false; Throwable nestedCause = cause.getCause(); if (nestedCause instanceof IOException) { String message = nestedCause.getMessage(); if (stringMatches(LocalizedStrings.Oplog_THE_FILE_0_IS_BEING_USED_BY_ANOTHER_PROCESS .toLocalizedString("(.*)"), message)) { errorString = CliStrings.UPGRADE_OFFLINE_DISK_STORE__MSG__DISKSTORE_IN_USE_COMPACT_DISKSTORE_CAN_BE_USED; isKnownCause = true; } } if (!isKnownCause) { errorString = CliStrings.format( CliStrings.UPGRADE_OFFLINE_DISK_STORE__MSG__CANNOT_ACCESS_DISKSTORE_0_FROM_1_CHECK_GFSH_LOGS, new Object[] {diskStoreName, CliUtil.arrayToString(diskDirs)}); } } else { errorString = e.getMessage(); // which are other known exceptions? } stackTraceString = CliUtil.stackTraceAsString(e); } catch (IllegalArgumentException e) { errorString = e.getMessage(); stackTraceString = CliUtil.stackTraceAsString(e); } finally { if (errorString != null) { System.err.println(errorString); } if (stackTraceString != null) { System.err.println(STACKTRACE_START); System.err.println(stackTraceString); } } } private static void upgrade(String diskStoreName, String[] diskDirs, long maxOplogSize) { File[] dirs = null; if (diskDirs != null) { dirs = new File[diskDirs.length]; for (int i = 0; i < dirs.length; i++) { dirs[i] = new File(diskDirs[i]); } } try { DiskStoreImpl.offlineCompact(diskStoreName, dirs, true, maxOplogSize); } catch (Exception ex) { String fieldsMessage = (maxOplogSize != -1 ? CliStrings.UPGRADE_OFFLINE_DISK_STORE__MAXOPLOGSIZE + "=" + maxOplogSize + "," : ""); fieldsMessage += CliUtil.arrayToString(dirs); throw new GemFireIOException(CliStrings.format( CliStrings.UPGRADE_OFFLINE_DISK_STORE__MSG__ERROR_WHILE_COMPACTING_DISKSTORE_0_WITH_1_REASON_2, new Object[] {diskStoreName, fieldsMessage, ex.getMessage()}), ex); } } private static boolean stringMatches(String str1, String str2) { return Pattern.matches(str1, str2); } }