This change replaces all printfs in src_moz with calls to PR_LOG. No
printfs should appear in src_moz anymore.
You won't see any console output from native code unless you define
NSPR_LOG_MODULES=webclient:3
in your environment. Furthermore, if you want PR_LOG statements in
webclient to go to a file instead, define
WEBCLIENT_LOG_FILE=C:\VALIDDIR\filename.txt
in your environment. This file will get created fresh each time, since
PR_LOG uses fopen(filename, "w").
New Files:
I've created ns_globals.h, included from jni_util.h. ns_globals.h holds
an extern * to a struct used in the PR_LOG calls.
Significant changes:
WrapperFactoryImpl.cpp
nativeAppInitialize(){
Added:
#if DEBUG_RAPTOR_CANVAS
prLogModuleInfo = PR_NewLogModule("webclient");
const char *webclientLogFile = PR_GetEnv("WEBCLIENT_LOG_FILE");
if (nsnull != webclientLogFile) {
PR_SetLogFile(webclientLogFile);
// If this fails, it just goes to stdout/stderr
}
#endif
}
All the other files in this checkin follow the this pattern:
Before checkin:
printf("InitMozillaStuff(%lx): Create the Event Queue for the UI thread...\n",
initContext);
After checkin:
if (prLogModuleInfo) {
PR_LOG(prLogModuleInfo, 3,
("InitMozillaStuff(%lx): Create the Event Queue for the UI thread...\n",
initContext));
}
See http://lxr.mozilla.org/mozilla/source/nsprpub/pr/include/prlog.h#190
for the definition of PR_LOG
git-svn-id: svn://10.0.0.236/trunk@65380 18797224-902f-48f8-a5cc-f745e15eee43
138 lines
3.5 KiB
C++
138 lines
3.5 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (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.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is RaptorCanvas.
|
|
*
|
|
* The Initial Developer of the Original Code is Kirk Baker and
|
|
* Ian Wilkinson. Portions created by Kirk Baker and Ian Wilkinson are
|
|
* Copyright (C) 1999 Kirk Baker and Ian Wilkinson. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s): Ed Burns <edburns@acm.org>
|
|
*
|
|
*/
|
|
|
|
#include "jni_util_export.h"
|
|
|
|
#include "bal_util.h"
|
|
|
|
#include "nscore.h" // for nsnull
|
|
|
|
#include "ns_globals.h" // for prLogModuleInfo
|
|
|
|
JNIEXPORT const char * JNICALL util_GetStringUTFChars(JNIEnv *env,
|
|
jstring inString)
|
|
{
|
|
const char *result = nsnull;
|
|
|
|
#ifdef BAL_INTERFACE
|
|
char *nonConstResult;
|
|
bal_str_newFromJstring(&nonConstResult, inString);
|
|
result = (const char *)nonConstResult;
|
|
#else
|
|
result = (const char *) env->GetStringUTFChars(inString, 0);
|
|
#endif
|
|
|
|
return result;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL util_ReleaseStringUTFChars(JNIEnv *env,
|
|
jstring inString,
|
|
const char *stringFromGet)
|
|
{
|
|
|
|
#ifdef BAL_INTERFACE
|
|
bal_str_release(stringFromGet);
|
|
#else
|
|
env->ReleaseStringUTFChars(inString, stringFromGet);
|
|
#endif
|
|
|
|
}
|
|
|
|
JNIEXPORT const jchar * JNICALL util_GetStringChars(JNIEnv *env,
|
|
jstring inString)
|
|
{
|
|
const jchar *result = nsnull;
|
|
|
|
#ifdef BAL_INTERFACE
|
|
// ASSUMES typedef wchar_t jchar;
|
|
// ASSUMES typedef wchar_t *jstring;
|
|
result = (const jchar *) inString;
|
|
#else
|
|
result = (const jchar *) env->GetStringChars(inString, 0);
|
|
#endif
|
|
|
|
return result;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL util_ReleaseStringChars(JNIEnv *env, jstring inString,
|
|
const jchar *stringFromGet)
|
|
{
|
|
|
|
#ifdef BAL_INTERFACE
|
|
// NO action necessary, see NewStringChars
|
|
#else
|
|
env->ReleaseStringChars(inString, stringFromGet);
|
|
#endif
|
|
|
|
}
|
|
|
|
JNIEXPORT jstring JNICALL util_NewStringUTF(JNIEnv *env, const char *inString)
|
|
{
|
|
jstring result = nsnull;
|
|
#ifdef BAL_INTERFACE
|
|
bal_jstring_newFromAscii(&result, inString);
|
|
#else
|
|
result = env->NewStringUTF(inString);
|
|
#endif
|
|
|
|
return result;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL util_DeleteStringUTF(JNIEnv *env, jstring toDelete)
|
|
{
|
|
#ifdef BAL_INTERFACE
|
|
util_DeleteString(env, toDelete);
|
|
#else
|
|
if (prLogModuleInfo) {
|
|
PR_LOG(prLogModuleInfo, 3,
|
|
("This shouldn't get called in a non-BAL context!\n"));
|
|
}
|
|
#endif
|
|
|
|
}
|
|
|
|
JNIEXPORT jstring JNICALL util_NewString(JNIEnv *env, const jchar *inString,
|
|
jsize len)
|
|
{
|
|
jstring result = nsnull;
|
|
#ifdef BAL_INTERFACE
|
|
#else
|
|
result = env->NewString(inString, len);
|
|
#endif
|
|
|
|
return result;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL util_DeleteString(JNIEnv *env, jstring toDelete)
|
|
{
|
|
#ifdef BAL_INTERFACE
|
|
bal_jstring_release(toDelete);
|
|
#else
|
|
if (prLogModuleInfo) {
|
|
PR_LOG(prLogModuleInfo, 3,
|
|
("This shouldn't get called in a non-BAL context!\n"));
|
|
}
|
|
#endif
|
|
|
|
}
|