blob: 93f0e6dfacb526cd37cc77ffe4eaa89af5ce3e11 [file] [log] [blame]
/*
* Copyright (c) 2008-2020 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* --
*
* Functions to convert between date container classes.
*/
#import <Foundation/NSDate.h>
#import <JavaNativeFoundation/JNFJNI.h>
__BEGIN_DECLS
/*
* Converts java.util.Calendar and java.util.Date to an NSDate
* NOTE: Return value is auto-released.
*/
JNF_EXPORT extern NSDate *JNFJavaToNSDate(JNIEnv *env, jobject date);
/*
* Converts an NSDate to a java.util.Calendar
* NOTE: This returns a JNI local ref. Any code that calls this should call DeleteLocalRef when done with the return value.
*/
JNF_EXPORT extern jobject JNFNSToJavaCalendar(JNIEnv *env, NSDate *date);
/*
* Converts a millisecond time interval since the Java Jan 1, 1970 epoch into an
* NSTimeInterval since Mac OS X's Jan 1, 2001 epoch.
*/
JNF_EXPORT extern NSTimeInterval JNFJavaMillisToNSTimeInterval(jlong javaMillisSince1970);
/*
* Converts an NSTimeInterval since the Mac OS X Jan 1, 2001 epoch into a
* Java millisecond time interval since Java's Jan 1, 1970 epoch.
*/
JNF_EXPORT extern jlong JNFNSTimeIntervalToJavaMillis(NSTimeInterval intervalSince2001);
__END_DECLS