1 /*
2  * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle in the LICENSE file that accompanied this code.
10  *
11  * This code is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14  * version 2 for more details (a copy is included in the LICENSE file that
15  * accompanied this code).
16  *
17  * You should have received a copy of the GNU General Public License version
18  * 2 along with this work; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 #include "Messages.h"
27 #include "Platform.h"
28 #include "FilePath.h"
29 #include "Helpers.h"
30 #include "Macros.h"
31 #include "JavaVirtualMachine.h"
32 
Messages(void)33 Messages::Messages(void) {
34     FMessages.SetReadOnly(false);
35     FMessages.SetValue(LIBRARY_NOT_FOUND, _T("Failed to find library."));
36     FMessages.SetValue(FAILED_CREATING_JVM, _T("Failed to create JVM"));
37     FMessages.SetValue(FAILED_LOCATING_JVM_ENTRY_POINT,
38             _T("Failed to locate JLI_Launch"));
39     FMessages.SetValue(NO_MAIN_CLASS_SPECIFIED, _T("No main class specified"));
40     FMessages.SetValue(METHOD_NOT_FOUND, _T("No method %s in class %s."));
41     FMessages.SetValue(CLASS_NOT_FOUND, _T("Class %s not found."));
42     FMessages.SetValue(ERROR_INVOKING_METHOD, _T("Error invoking method."));
43     FMessages.SetValue(APPCDS_CACHE_FILE_NOT_FOUND,
44             _T("Error: AppCDS cache does not exists:\n%s\n"));
45 }
46 
GetInstance()47 Messages& Messages::GetInstance() {
48     static Messages instance;
49     // Guaranteed to be destroyed. Instantiated on first use.
50     return instance;
51 }
52 
~Messages(void)53 Messages::~Messages(void) {
54 }
55 
GetMessage(const TString Key)56 TString Messages::GetMessage(const TString Key) {
57     TString result;
58     FMessages.GetValue(Key, result);
59     Macros& macros = Macros::GetInstance();
60     result = macros.ExpandMacros(result);
61     return result;
62 }
63