Class GatewayUtils
- java.lang.Object
- 
- com.inductiveautomation.ignition.gateway.util.GatewayUtils
 
- 
 public class GatewayUtils extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description GatewayUtils()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static voidautoBackupDirectory(java.io.File base, java.io.File sink, int count, java.lang.String prefix)Creates an auto-backup folder underneath the base folder with all of the file contents of the base folder.static voidautoBackupDirectory(java.io.File base, java.io.File sink, int count, java.lang.String prefix, java.io.FileFilter filter)static voidclearDirectory(java.io.File dir)Removes all files from the given directory, but not any subfoldersstatic voidclearDirectory(java.io.File dir, java.io.FileFilter filter)Removes all files from the given directory that match the criteria, but not any subfoldersstatic voidclearDirectoryDeep(java.io.File dir)Removes all files and subfolders from the given directory, but not the directory itselfstatic voidcopyAll(java.io.File sourceFolder, java.io.File destFolder)Copies all of the files (shallow) in the source folder into the destination folderstatic voidcopyFile(java.io.File source, java.io.File dest)Copies the source file to the destination file, creating the destination if necessary.static voidcopyFile(java.io.InputStream fin, java.io.File dest)Copies all remaining bytes in the input stream to the output file, creating the destination file if necessary.static voidcreateFile(java.io.File contextFile, java.lang.String filePath, byte[] fileData)Creates a file at ${contextFile}/filePath.static java.io.FilecreateTempDirectory()Creates a new, empty temp dir.static java.lang.StringgetCertCommonName(java.security.cert.X509Certificate certificate, boolean useIssuer)Returns the CN field in a certificate.static java.io.FilegetMostRecentAutobackupDirectory(java.io.File base, java.lang.String prefix)static java.io.FilegetSubDir(java.io.File base, java.lang.String... subDirs)Returns a File representing a subdirectory, by following the paths from the base folder.static java.io.FilegetSubFile(java.io.File base, java.lang.String filePath)Returns a subfile beneath directory.static java.lang.Stringmd5(java.lang.String source)static voidnoCache(javax.servlet.http.HttpServletResponse res)Adds headers to a servlet response that should prevent it from caching at any levelstatic voidnoCache_IE6(javax.servlet.http.HttpServletResponse res)static voidremoveDirectory(java.io.File dir)Removes a directory, including all subfiles and subfolders recursivelystatic voidremoveDirectory(java.io.File contextFile, java.lang.String dirPath)Removes the directory at ${contextFile}/dirPath.static booleanremoveFile(java.io.File contextFile, java.lang.String filePath)Removes a file at ${contextFile}/filePath.static java.lang.Stringsha256(java.lang.String source)static java.lang.StringunzipFile(java.io.File zipFile, java.io.OutputStream output, java.lang.String name)This version, which takes a direct file, is more efficient than using a stream.static byte[]unzipFile(java.io.File zipFile, java.lang.String name)Unzips the given file name from zip file at the path specified.static java.lang.StringunzipFile(java.io.InputStream zipFile, java.io.OutputStream output, java.lang.String name)Unzips the given file from the given input stream, which will be wrapped in a ZipInputStream within this function.static byte[]unzipFile(java.io.InputStream zipFile, java.lang.String name)Unzips the given file from the given input stream, which will be wrapped in a ZipInputStream within this function.static java.lang.StringunzipFile(java.util.zip.ZipFile zip, java.io.OutputStream output, java.lang.String name)static byte[]unzipFile(java.util.zip.ZipFile zipFile, java.lang.String name)Unzips the given file name from the provided ZipFile.static booleanzipEntryExists(java.io.InputStream zipFile, java.lang.String name)Returns true if the zip file contains an entry with the given name (case insensitive)static booleanzipEntryExists(java.util.zip.ZipFile file, java.lang.String name)
 
- 
- 
- 
Method Detail- 
noCachepublic static void noCache(javax.servlet.http.HttpServletResponse res) Adds headers to a servlet response that should prevent it from caching at any level
 - 
noCache_IE6public static void noCache_IE6(javax.servlet.http.HttpServletResponse res) 
 - 
createTempDirectorypublic static java.io.File createTempDirectory() throws java.io.IOExceptionCreates a new, empty temp dir. Does not delete automatically, make sure you remove it.- Throws:
- java.io.IOException
 
 - 
autoBackupDirectorypublic static void autoBackupDirectory(java.io.File base, java.io.File sink, int count, java.lang.String prefix) throws java.io.IOExceptionCreates an auto-backup folder underneath the base folder with all of the file contents of the base folder. Using naming conventions, aims to keep a maximum of count autobackup directories at any one time. For instance, given the following folder structure, folder/ folder/file1.xyz folder/file2.txt calling autobackup on Nov 3rd, 2008 at 2:30:59PM would make this: folder/ folder/file1.xyz folder/file2.txt folder/autobackup_20081103_143059/ folder/autobackup_20081103_143059/file1.xyz folder/autobackup_20081103_143059/file2.txt - Throws:
- java.io.IOException
 
 - 
autoBackupDirectorypublic static void autoBackupDirectory(java.io.File base, java.io.File sink, int count, java.lang.String prefix, java.io.FileFilter filter) throws java.io.IOException- Throws:
- java.io.IOException
 
 - 
getMostRecentAutobackupDirectorypublic static java.io.File getMostRecentAutobackupDirectory(java.io.File base, java.lang.String prefix)
 - 
copyAllpublic static void copyAll(java.io.File sourceFolder, java.io.File destFolder) throws java.io.IOExceptionCopies all of the files (shallow) in the source folder into the destination folder- Throws:
- java.io.IOException
 
 - 
copyFilepublic static void copyFile(java.io.File source, java.io.File dest) throws java.io.IOExceptionCopies the source file to the destination file, creating the destination if necessary.- Throws:
- java.io.IOException
 
 - 
copyFilepublic static void copyFile(java.io.InputStream fin, java.io.File dest) throws java.io.IOExceptionCopies all remaining bytes in the input stream to the output file, creating the destination file if necessary. Input steam is not closed.- Throws:
- java.io.IOException
 
 - 
getSubDirpublic static java.io.File getSubDir(java.io.File base, java.lang.String... subDirs)Returns a File representing a subdirectory, by following the paths from the base folder. For example, if base is "C:\Program Files\Inductive Automation\SCADARail\" and you send "abc", "xyz" as subDirs, you'll get the following File back: "C:\Program Files\Inductive Automation\SCADARail\abc\xyz\"- Parameters:
- base- A File that represents the starting folders.
- subDirs- Names of folders to follow from the base.
 
 - 
getSubFilepublic static java.io.File getSubFile(java.io.File base, java.lang.String filePath)Returns a subfile beneath directory. The filePath may contain multiple levels, separated by "/"
 - 
removeDirectorypublic static void removeDirectory(java.io.File dir) Removes a directory, including all subfiles and subfolders recursively
 - 
clearDirectoryDeeppublic static void clearDirectoryDeep(java.io.File dir) Removes all files and subfolders from the given directory, but not the directory itself
 - 
clearDirectorypublic static void clearDirectory(java.io.File dir) Removes all files from the given directory, but not any subfolders
 - 
clearDirectorypublic static void clearDirectory(java.io.File dir, java.io.FileFilter filter)Removes all files from the given directory that match the criteria, but not any subfolders
 - 
createFilepublic static void createFile(java.io.File contextFile, java.lang.String filePath, byte[] fileData) throws java.io.IOExceptionCreates a file at ${contextFile}/filePath. The passed contextFile must be a File object that can be returned from the context, such as context.getDataDir() or context.getUserlibDir(). File path should be like "abc.txt" or "folder/abc.txt"- Throws:
- java.io.IOException
 
 - 
removeFilepublic static boolean removeFile(java.io.File contextFile, java.lang.String filePath)Removes a file at ${contextFile}/filePath. The passed contextFile must be a File object that can be returned from the context, such as context.getDataDir() or context.getUserlibDir().
 - 
removeDirectorypublic static void removeDirectory(java.io.File contextFile, java.lang.String dirPath)Removes the directory at ${contextFile}/dirPath. The passed contextFile must be a File object that can be returned from the context, such as context.getDataDir() or context.getUserlibDir().
 - 
unzipFilepublic static byte[] unzipFile(java.io.InputStream zipFile, java.lang.String name) throws java.io.IOExceptionUnzips the given file from the given input stream, which will be wrapped in a ZipInputStream within this function.- Parameters:
- name- the filename entry in the zip file to extract.
- Returns:
- a byte[] representing the file
- Throws:
- java.io.IOException- if the name was not found, or if any other IOException occurrs
 
 - 
unzipFilepublic static byte[] unzipFile(java.io.File zipFile, java.lang.String name) throws java.io.IOExceptionUnzips the given file name from zip file at the path specified.- Parameters:
- zipFile- the path to a file, which should be a zip file.
- name- the filename entry in the zip file to extract.
- Returns:
- a byte[] representing the file
- Throws:
- java.io.IOException- if the name was not found, or if any other IOException occurrs
 
 - 
unzipFilepublic static byte[] unzipFile(java.util.zip.ZipFile zipFile, java.lang.String name) throws java.io.IOExceptionUnzips the given file name from the provided ZipFile.- Parameters:
- zipFile- the ZipFile representation of a zip.
- name- the filename entry in the zip file to extract.
- Returns:
- a byte[] representing the file
- Throws:
- java.io.IOException- if the name was not found, or if any other IOException occurrs
 
 - 
unzipFilepublic static java.lang.String unzipFile(java.io.InputStream zipFile, java.io.OutputStream output, java.lang.String name) throws java.io.IOExceptionUnzips the given file from the given input stream, which will be wrapped in a ZipInputStream within this function. The file will be written to the given outputstream. The streams will be closed.- Parameters:
- zipFile- An input stream for the zip file. Should not be a ZipInputStream. Will be closed.
- output- An output stream to write the bytes to.
- name- Path to the file. If the name ends in '*', the first matching entry that starts with the name will be used.
- Returns:
- the full name of the entry. Useful when using wildcard names, to see what the actual entry was.
- Throws:
- java.io.IOException- On IO error or if the entry isn't found.
 
 - 
unzipFilepublic static java.lang.String unzipFile(java.io.File zipFile, java.io.OutputStream output, java.lang.String name) throws java.io.IOExceptionThis version, which takes a direct file, is more efficient than using a stream.- Throws:
- java.io.IOException
 
 - 
unzipFilepublic static java.lang.String unzipFile(java.util.zip.ZipFile zip, java.io.OutputStream output, java.lang.String name) throws java.io.IOException- Throws:
- java.io.IOException
 
 - 
zipEntryExistspublic static boolean zipEntryExists(java.io.InputStream zipFile, java.lang.String name) throws java.io.IOExceptionReturns true if the zip file contains an entry with the given name (case insensitive)- Throws:
- java.io.IOException
 
 - 
zipEntryExistspublic static boolean zipEntryExists(java.util.zip.ZipFile file, java.lang.String name)
 - 
md5public static java.lang.String md5(java.lang.String source) 
 - 
sha256public static java.lang.String sha256(java.lang.String source) 
 - 
getCertCommonNamepublic static java.lang.String getCertCommonName(java.security.cert.X509Certificate certificate, boolean useIssuer)Returns the CN field in a certificate. If useIssuer is true, then the issuer's CN field is used. Otherwise, the subject's CN field is used- Parameters:
- certificate- the certificate to extract CN from.
- useIssuer- if- true, extract the issuer CN; otherwise the subject SN.
- Returns:
- either the issuer or subject CN, depending on useIssuer.
 
 
- 
 
-