Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.bugvm.apple.corefoundation.CFURL Maven / Gradle / Ivy
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed 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 com.bugvm.apple.corefoundation;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.dispatch.*;
import com.bugvm.apple.coreservices.*;
import com.bugvm.apple.coremedia.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coretext.*;
/* */
/**/
/* */
/**/@Library("CoreFoundation")/* */
/**/public/* */ class /**/CFURL/* */
extends /**/CFType/* */
/**//* */ {
/**/public static class CFURLPtr extends Ptr {}/* */
/**/static { Bro.bind(CFURL.class); }/* */
/**//* */
/**/
protected CFURL() {}
/* */
/**//* */
/**//* */
/**/
@Bridge(symbol="CFURLGetTypeID", optional=true)
public static native @MachineSizedUInt long getClassTypeID();
@Bridge(symbol="CFURLCreateWithBytes", optional=true)
private static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL create(CFAllocator allocator, BytePtr URLBytes, @MachineSizedSInt long length, CFStringEncodings encoding, CFURL baseURL);
@Bridge(symbol="CFURLCreateData", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFData asData(CFAllocator allocator, CFURL url, CFStringEncodings encoding, boolean escapeWhitespace);
@Bridge(symbol="CFURLCreateWithString", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL create(CFAllocator allocator, String URLString, CFURL baseURL);
@Bridge(symbol="CFURLCreateAbsoluteURLWithBytes", optional=true)
private static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL create(CFAllocator alloc, BytePtr relativeURLBytes, @MachineSizedSInt long length, CFStringEncodings encoding, CFURL baseURL, boolean useCompatibilityMode);
@Bridge(symbol="CFURLCreateWithFileSystemPath", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createWithFileSystemPath(CFAllocator allocator, String filePath, CFURLPathStyle pathStyle, boolean isDirectory);
@Bridge(symbol="CFURLCreateFromFileSystemRepresentation", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createFromFileSystemRepresentation(CFAllocator allocator, BytePtr buffer, @MachineSizedSInt long bufLen, boolean isDirectory);
@Bridge(symbol="CFURLCreateWithFileSystemPathRelativeToBase", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createWithFileSystemPathRelativeToBase(CFAllocator allocator, String filePath, CFURLPathStyle pathStyle, boolean isDirectory, CFURL baseURL);
@Bridge(symbol="CFURLCreateFromFileSystemRepresentationRelativeToBase", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createFromFileSystemRepresentationRelativeToBase(CFAllocator allocator, BytePtr buffer, @MachineSizedSInt long bufLen, boolean isDirectory, CFURL baseURL);
@Bridge(symbol="CFURLCopyAbsoluteURL", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL getAbsoluteURL();
@Bridge(symbol="CFURLGetString", optional=true)
public native String getString();
@Bridge(symbol="CFURLGetBaseURL", optional=true)
public native CFURL getBaseURL();
@Bridge(symbol="CFURLCanBeDecomposed", optional=true)
public native boolean canBeDecomposed();
@Bridge(symbol="CFURLCopyScheme", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getScheme();
@Bridge(symbol="CFURLCopyNetLocation", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getNetLocation();
@Bridge(symbol="CFURLCopyPath", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getPath();
@Bridge(symbol="CFURLCopyStrictPath", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getStrictPath(BooleanPtr isAbsolute);
@Bridge(symbol="CFURLCopyFileSystemPath", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getFileSystemPath(CFURLPathStyle pathStyle);
@Bridge(symbol="CFURLHasDirectoryPath", optional=true)
public native boolean hasDirectoryPath();
@Bridge(symbol="CFURLCopyResourceSpecifier", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getResourceSpecifier();
@Bridge(symbol="CFURLCopyHostName", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getHostName();
@Bridge(symbol="CFURLGetPortNumber", optional=true)
public native int getPortNumber();
@Bridge(symbol="CFURLCopyUserName", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getUserName();
@Bridge(symbol="CFURLCopyPassword", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getPassword();
@Bridge(symbol="CFURLCopyParameterString", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getParameterString(String charactersToLeaveEscaped);
@Bridge(symbol="CFURLCopyQueryString", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getQueryString(String charactersToLeaveEscaped);
@Bridge(symbol="CFURLCopyFragment", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getFragment(String charactersToLeaveEscaped);
@Bridge(symbol="CFURLCopyLastPathComponent", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getLastPathComponent();
@Bridge(symbol="CFURLCopyPathExtension", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String getPathExtension();
@Bridge(symbol="CFURLCreateCopyAppendingPathComponent", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createCopyByAppendingPathComponent(CFAllocator allocator, CFURL url, String pathComponent, boolean isDirectory);
@Bridge(symbol="CFURLCreateCopyDeletingLastPathComponent", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createCopyByDeletingLastPathComponent(CFAllocator allocator, CFURL url);
@Bridge(symbol="CFURLCreateCopyAppendingPathExtension", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createCopyByAppendingPathExtension(CFAllocator allocator, CFURL url, String extension);
@Bridge(symbol="CFURLCreateCopyDeletingPathExtension", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createCopyByDeletingPathExtension(CFAllocator allocator, CFURL url);
@Bridge(symbol="CFURLCreateStringByReplacingPercentEscapes", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String decodeURLString(CFAllocator allocator, String originalString, String charactersToLeaveEscaped);
/**
* @since Available in iOS 2.0 and later.
* @deprecated Deprecated in iOS 9.0.
*/
@Deprecated
@Bridge(symbol="CFURLCreateStringByReplacingPercentEscapesUsingEncoding", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String decodeURLString(CFAllocator allocator, String origString, String charsToLeaveEscaped, CFStringEncodings encoding);
/**
* @since Available in iOS 2.0 and later.
* @deprecated Deprecated in iOS 9.0.
*/
@Deprecated
@Bridge(symbol="CFURLCreateStringByAddingPercentEscapes", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String encodeURLString(CFAllocator allocator, String originalString, String charactersToLeaveUnescaped, String legalURLCharactersToBeEscaped, CFStringEncodings encoding);
/**
* @since Available in iOS 7.0 and later.
*/
@Bridge(symbol="CFURLIsFileReferenceURL", optional=true)
public native boolean isFileReferenceURL();
/**
* @since Available in iOS 4.0 and later.
*/
public static CFURL createFileReferenceURL(CFAllocator allocator, CFURL url) throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
CFURL result = createFileReferenceURL(allocator, url, ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLCreateFileReferenceURL", optional=true)
private static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createFileReferenceURL(CFAllocator allocator, CFURL url, NSError.NSErrorPtr error);
/**
* @since Available in iOS 4.0 and later.
*/
public static CFURL createFilePathURL(CFAllocator allocator, CFURL url) throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
CFURL result = createFilePathURL(allocator, url, ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLCreateFilePathURL", optional=true)
private static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL createFilePathURL(CFAllocator allocator, CFURL url, NSError.NSErrorPtr error);
/**
* @since Available in iOS 4.0 and later.
*/
public boolean getResourceValue(String key, VoidPtr propertyValueTypeRefPtr) throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
boolean result = getResourceValue(key, propertyValueTypeRefPtr, ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLCopyResourcePropertyForKey", optional=true)
private native boolean getResourceValue(String key, VoidPtr propertyValueTypeRefPtr, NSError.NSErrorPtr error);
/**
* @since Available in iOS 4.0 and later.
*/
public CFDictionary getResourceValues(CFArray keys) throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
CFDictionary result = getResourceValues(keys, ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLCopyResourcePropertiesForKeys", optional=true)
private native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFDictionary getResourceValues(CFArray keys, NSError.NSErrorPtr error);
/**
* @since Available in iOS 4.0 and later.
*/
public boolean setResourceValue(String key, CFType propertyValue) throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
boolean result = setResourceValue(key, propertyValue, ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLSetResourcePropertyForKey", optional=true)
private native boolean setResourceValue(String key, CFType propertyValue, NSError.NSErrorPtr error);
/**
* @since Available in iOS 4.0 and later.
*/
public boolean setResourceValues(CFDictionary keyedPropertyValues) throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
boolean result = setResourceValues(keyedPropertyValues, ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLSetResourcePropertiesForKeys", optional=true)
private native boolean setResourceValues(CFDictionary keyedPropertyValues, NSError.NSErrorPtr error);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLClearResourcePropertyCacheForKey", optional=true)
public native void clearResourcePropertyCacheForKey(String key);
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLClearResourcePropertyCache", optional=true)
public native void clearResourcePropertyCache();
/**
* @since Available in iOS 4.0 and later.
*/
public boolean isResourceReachable() throws NSErrorException {
NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
boolean result = isResourceReachable(ptr);
if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
return result;
}
/**
* @since Available in iOS 4.0 and later.
*/
@Bridge(symbol="CFURLResourceIsReachable", optional=true)
private native boolean isResourceReachable(NSError.NSErrorPtr error);
/**
* @since Available in iOS 8.0 and later.
*/
@Bridge(symbol="CFURLStartAccessingSecurityScopedResource", optional=true)
public native boolean startAccessingSecurityScopedResource();
/**
* @since Available in iOS 8.0 and later.
*/
@Bridge(symbol="CFURLStopAccessingSecurityScopedResource", optional=true)
public native void stopAccessingSecurityScopedResource();
/**
* @since Available in iOS 5.0 and later.
*/
@Bridge(symbol="CFCopyHomeDirectoryURL", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFURL getHomeDirectoryURL();
/* */
}