Path: blob/master/src/java.desktop/share/native/libjsound/Utilities.h
41149 views
/*1* Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425#include <jni.h>26#include "jni_util.h"27#include "SoundDefs.h"28#include "Configure.h" // put flags for debug msgs etc. here2930// return 1 if this platform is big endian, or 0 for little endian31int UTIL_IsBigEndianPlatform();323334// ERROR PRINTS35#ifdef USE_ERROR36#define ERROR0(string) { fprintf(stdout, (string)); fflush(stdout); }37#define ERROR1(string, p1) { fprintf(stdout, (string), (p1)); fflush(stdout); }38#define ERROR2(string, p1, p2) { fprintf(stdout, (string), (p1), (p2)); fflush(stdout); }39#define ERROR3(string, p1, p2, p3) { fprintf(stdout, (string), (p1), (p2), (p3)); fflush(stdout); }40#define ERROR4(string, p1, p2, p3, p4) { fprintf(stdout, (string), (p1), (p2), (p3), (p4)); fflush(stdout); }41#else42#define ERROR0(string)43#define ERROR1(string, p1)44#define ERROR2(string, p1, p2)45#define ERROR3(string, p1, p2, p3)46#define ERROR4(string, p1, p2, p3, p4)47#endif484950// TRACE PRINTS51#ifdef USE_TRACE52#define TRACE0(string) { fprintf(stdout, (string)); fflush(stdout); }53#define TRACE1(string, p1) { fprintf(stdout, (string), (p1)); fflush(stdout); }54#define TRACE2(string, p1, p2) { fprintf(stdout, (string), (p1), (p2)); fflush(stdout); }55#define TRACE3(string, p1, p2, p3) { fprintf(stdout, (string), (p1), (p2), (p3)); fflush(stdout); }56#define TRACE4(string, p1, p2, p3, p4) { fprintf(stdout, (string), (p1), (p2), (p3), (p4)); fflush(stdout); }57#define TRACE5(string, p1, p2, p3, p4, p5) { fprintf(stdout, (string), (p1), (p2), (p3), (p4), (p5)); fflush(stdout); }58#else59#define TRACE0(string)60#define TRACE1(string, p1)61#define TRACE2(string, p1, p2)62#define TRACE3(string, p1, p2, p3)63#define TRACE4(string, p1, p2, p3, p4)64#define TRACE5(string, p1, p2, p3, p4, p5)65#endif666768// VERBOSE TRACE PRINTS69#ifdef USE_VERBOSE_TRACE70#define VTRACE0(string) fprintf(stdout, (string));71#define VTRACE1(string, p1) fprintf(stdout, (string), (p1));72#define VTRACE2(string, p1, p2) fprintf(stdout, (string), (p1), (p2));73#define VTRACE3(string, p1, p2, p3) fprintf(stdout, (string), (p1), (p2), (p3));74#define VTRACE4(string, p1, p2, p3, p4) fprintf(stdout, (string), (p1), (p2), (p3), (p4));75#else76#define VTRACE0(string)77#define VTRACE1(string, p1)78#define VTRACE2(string, p1, p2)79#define VTRACE3(string, p1, p2, p3)80#define VTRACE4(string, p1, p2, p3, p4)81#endif828384void ThrowJavaMessageException(JNIEnv *e, const char *exClass, const char *msg);858687