Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / Compiler / TempFiles.cs / 1 / TempFiles.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.Collections; using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Text; using Microsoft.Win32; using System.Security; using System.Security.Permissions; using System.Security.Principal; using System.ComponentModel; using System.Security.Cryptography; using System.Globalization; using System.Runtime.Versioning; ////// [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] [Serializable] public class TempFileCollection : ICollection, IDisposable { private static RNGCryptoServiceProvider rng; string basePath; string tempDir; bool keepFiles; Hashtable files; static TempFileCollection() { // Since creating the random generator can be expensive, only do it once rng = new RNGCryptoServiceProvider(); } ///Represents a collection of temporary file names that are all based on a /// single base filename located in a temporary directory. ////// public TempFileCollection() : this(null, false) { } ///[To be supplied.] ////// public TempFileCollection(string tempDir) : this(tempDir, false) { } ///[To be supplied.] ////// public TempFileCollection(string tempDir, bool keepFiles) { this.keepFiles = keepFiles; this.tempDir = tempDir; #if !FEATURE_CASE_SENSITIVE_FILESYSTEM files = new Hashtable(StringComparer.OrdinalIgnoreCase); #else files = new Hashtable(); #endif } ///[To be supplied.] ////// /// void IDisposable.Dispose() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { // It is safe to call Delete from here even if Dispose is called from Finalizer // because the graph of objects is guaranteed to be there and // neither Hashtable nor String have a finalizer of their own that could // be called before TempFileCollection Finalizer Delete(); } ///To allow it's stuff to be cleaned up ////// ~TempFileCollection() { Dispose(false); } ///[To be supplied.] ////// public string AddExtension(string fileExtension) { return AddExtension(fileExtension, keepFiles); } ///[To be supplied.] ////// public string AddExtension(string fileExtension, bool keepFile) { if (fileExtension == null || fileExtension.Length == 0) throw new ArgumentException(SR.GetString(SR.InvalidNullEmptyArgument, "fileExtension"), "fileExtension"); // fileExtension not specified string fileName = BasePath + "." + fileExtension; AddFile(fileName, keepFile); return fileName; } ///[To be supplied.] ////// public void AddFile(string fileName, bool keepFile) { if (fileName == null || fileName.Length == 0) throw new ArgumentException(SR.GetString(SR.InvalidNullEmptyArgument, "fileName"), "fileName"); // fileName not specified if (files[fileName] != null) throw new ArgumentException(SR.GetString(SR.DuplicateFileName, fileName), "fileName"); // duplicate fileName files.Add(fileName, (object)keepFile); } ///[To be supplied.] ////// public IEnumerator GetEnumerator() { return files.Keys.GetEnumerator(); } ///[To be supplied.] ///IEnumerator IEnumerable.GetEnumerator() { return files.Keys.GetEnumerator(); } /// void ICollection.CopyTo(Array array, int start) { files.Keys.CopyTo(array, start); } /// /// public void CopyTo(string[] fileNames, int start) { files.Keys.CopyTo(fileNames, start); } ///[To be supplied.] ////// public int Count { get { return files.Count; } } ///[To be supplied.] ///int ICollection.Count { get { return files.Count; } } /// object ICollection.SyncRoot { get { return null; } } /// bool ICollection.IsSynchronized { get { return false; } } /// /// public string TempDir { get { return tempDir == null ? string.Empty : tempDir; } } ///[To be supplied.] ////// public string BasePath { get { EnsureTempNameCreated(); return basePath; } } void EnsureTempNameCreated() { if (basePath == null) { string tempFileName = null; FileStream tempFileStream; bool uniqueFile = false; int retryCount = 5000; do { try { basePath = GetTempFileName(TempDir); string full = basePath; new EnvironmentPermission(PermissionState.Unrestricted).Assert(); try { full = Path.GetFullPath(basePath); } finally { CodeAccessPermission.RevertAssert(); } new FileIOPermission(FileIOPermissionAccess.AllAccess, full).Demand(); // make sure the filename is unique. tempFileName = basePath + ".tmp"; using (tempFileStream = new FileStream(tempFileName, FileMode.CreateNew, FileAccess.Write)) { } uniqueFile = true; } catch (IOException e) { retryCount--; if (retryCount == 0 || Marshal.GetHRForException(e) != NativeMethods.ERROR_FILE_EXISTS) throw; uniqueFile = false; } }while (!uniqueFile); files.Add(tempFileName, keepFiles); } } ///[To be supplied.] ////// public bool KeepFiles { get { return keepFiles; } set { keepFiles = value; } } bool KeepFile(string fileName) { object keep = files[fileName]; if (keep == null) return false; return (bool)keep; } ///[To be supplied.] ////// [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] public void Delete() { if (files != null) { string[] fileNames = new string[files.Count]; files.Keys.CopyTo(fileNames, 0); foreach (string fileName in fileNames) { if (!KeepFile(fileName)) { Delete(fileName); files.Remove(fileName); } } } } // This function deletes files after reverting impersonation. internal void SafeDelete() { #if !FEATURE_PAL WindowsImpersonationContext impersonation = Executor.RevertImpersonation(); #endif try{ Delete(); } finally { #if !FEATURE_PAL Executor.ReImpersonate(impersonation); #endif } } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] void Delete(string fileName) { try { File.Delete(fileName); } catch { // Ignore all exceptions } } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] static string GetTempFileName(string tempDir) { if (tempDir == null || tempDir.Length == 0) { tempDir = Path.GetTempPath(); } string fileName = GenerateRandomFileName(); if (tempDir.EndsWith("\\", StringComparison.Ordinal)) return tempDir + fileName; return tempDir + "\\" + fileName; } // Generate a random file name with 8 characters static string GenerateRandomFileName() { // Generate random bytes byte[] data = new byte[6]; lock (rng) { rng.GetBytes(data); } // Turn them into a string containing only characters valid in file names/url string s = Convert.ToBase64String(data).ToLower(CultureInfo.InvariantCulture); s = s.Replace('/', '-'); s = s.Replace('+', '_'); return s; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.Collections; using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Text; using Microsoft.Win32; using System.Security; using System.Security.Permissions; using System.Security.Principal; using System.ComponentModel; using System.Security.Cryptography; using System.Globalization; using System.Runtime.Versioning; ////// [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] [Serializable] public class TempFileCollection : ICollection, IDisposable { private static RNGCryptoServiceProvider rng; string basePath; string tempDir; bool keepFiles; Hashtable files; static TempFileCollection() { // Since creating the random generator can be expensive, only do it once rng = new RNGCryptoServiceProvider(); } ///Represents a collection of temporary file names that are all based on a /// single base filename located in a temporary directory. ////// public TempFileCollection() : this(null, false) { } ///[To be supplied.] ////// public TempFileCollection(string tempDir) : this(tempDir, false) { } ///[To be supplied.] ////// public TempFileCollection(string tempDir, bool keepFiles) { this.keepFiles = keepFiles; this.tempDir = tempDir; #if !FEATURE_CASE_SENSITIVE_FILESYSTEM files = new Hashtable(StringComparer.OrdinalIgnoreCase); #else files = new Hashtable(); #endif } ///[To be supplied.] ////// /// void IDisposable.Dispose() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { // It is safe to call Delete from here even if Dispose is called from Finalizer // because the graph of objects is guaranteed to be there and // neither Hashtable nor String have a finalizer of their own that could // be called before TempFileCollection Finalizer Delete(); } ///To allow it's stuff to be cleaned up ////// ~TempFileCollection() { Dispose(false); } ///[To be supplied.] ////// public string AddExtension(string fileExtension) { return AddExtension(fileExtension, keepFiles); } ///[To be supplied.] ////// public string AddExtension(string fileExtension, bool keepFile) { if (fileExtension == null || fileExtension.Length == 0) throw new ArgumentException(SR.GetString(SR.InvalidNullEmptyArgument, "fileExtension"), "fileExtension"); // fileExtension not specified string fileName = BasePath + "." + fileExtension; AddFile(fileName, keepFile); return fileName; } ///[To be supplied.] ////// public void AddFile(string fileName, bool keepFile) { if (fileName == null || fileName.Length == 0) throw new ArgumentException(SR.GetString(SR.InvalidNullEmptyArgument, "fileName"), "fileName"); // fileName not specified if (files[fileName] != null) throw new ArgumentException(SR.GetString(SR.DuplicateFileName, fileName), "fileName"); // duplicate fileName files.Add(fileName, (object)keepFile); } ///[To be supplied.] ////// public IEnumerator GetEnumerator() { return files.Keys.GetEnumerator(); } ///[To be supplied.] ///IEnumerator IEnumerable.GetEnumerator() { return files.Keys.GetEnumerator(); } /// void ICollection.CopyTo(Array array, int start) { files.Keys.CopyTo(array, start); } /// /// public void CopyTo(string[] fileNames, int start) { files.Keys.CopyTo(fileNames, start); } ///[To be supplied.] ////// public int Count { get { return files.Count; } } ///[To be supplied.] ///int ICollection.Count { get { return files.Count; } } /// object ICollection.SyncRoot { get { return null; } } /// bool ICollection.IsSynchronized { get { return false; } } /// /// public string TempDir { get { return tempDir == null ? string.Empty : tempDir; } } ///[To be supplied.] ////// public string BasePath { get { EnsureTempNameCreated(); return basePath; } } void EnsureTempNameCreated() { if (basePath == null) { string tempFileName = null; FileStream tempFileStream; bool uniqueFile = false; int retryCount = 5000; do { try { basePath = GetTempFileName(TempDir); string full = basePath; new EnvironmentPermission(PermissionState.Unrestricted).Assert(); try { full = Path.GetFullPath(basePath); } finally { CodeAccessPermission.RevertAssert(); } new FileIOPermission(FileIOPermissionAccess.AllAccess, full).Demand(); // make sure the filename is unique. tempFileName = basePath + ".tmp"; using (tempFileStream = new FileStream(tempFileName, FileMode.CreateNew, FileAccess.Write)) { } uniqueFile = true; } catch (IOException e) { retryCount--; if (retryCount == 0 || Marshal.GetHRForException(e) != NativeMethods.ERROR_FILE_EXISTS) throw; uniqueFile = false; } }while (!uniqueFile); files.Add(tempFileName, keepFiles); } } ///[To be supplied.] ////// public bool KeepFiles { get { return keepFiles; } set { keepFiles = value; } } bool KeepFile(string fileName) { object keep = files[fileName]; if (keep == null) return false; return (bool)keep; } ///[To be supplied.] ////// [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] public void Delete() { if (files != null) { string[] fileNames = new string[files.Count]; files.Keys.CopyTo(fileNames, 0); foreach (string fileName in fileNames) { if (!KeepFile(fileName)) { Delete(fileName); files.Remove(fileName); } } } } // This function deletes files after reverting impersonation. internal void SafeDelete() { #if !FEATURE_PAL WindowsImpersonationContext impersonation = Executor.RevertImpersonation(); #endif try{ Delete(); } finally { #if !FEATURE_PAL Executor.ReImpersonate(impersonation); #endif } } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] void Delete(string fileName) { try { File.Delete(fileName); } catch { // Ignore all exceptions } } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] static string GetTempFileName(string tempDir) { if (tempDir == null || tempDir.Length == 0) { tempDir = Path.GetTempPath(); } string fileName = GenerateRandomFileName(); if (tempDir.EndsWith("\\", StringComparison.Ordinal)) return tempDir + fileName; return tempDir + "\\" + fileName; } // Generate a random file name with 8 characters static string GenerateRandomFileName() { // Generate random bytes byte[] data = new byte[6]; lock (rng) { rng.GetBytes(data); } // Turn them into a string containing only characters valid in file names/url string s = Convert.ToBase64String(data).ToLower(CultureInfo.InvariantCulture); s = s.Replace('/', '-'); s = s.Replace('+', '_'); return s; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDomTextWriter.cs
- ScrollData.cs
- BamlStream.cs
- DataContractSerializer.cs
- StylusEventArgs.cs
- WeakReferenceList.cs
- Camera.cs
- ContextMenuStrip.cs
- CommandHelper.cs
- AuthenticationManager.cs
- HotCommands.cs
- XmlRootAttribute.cs
- FixedTextContainer.cs
- InfoCardBaseException.cs
- SessionEndingCancelEventArgs.cs
- MainMenu.cs
- NetCodeGroup.cs
- TextParagraphView.cs
- Typeface.cs
- FontStyles.cs
- ConstraintStruct.cs
- DataTable.cs
- DiagnosticsConfiguration.cs
- AnnotationResourceChangedEventArgs.cs
- Buffer.cs
- NonDualMessageSecurityOverHttpElement.cs
- XmlMapping.cs
- CompModSwitches.cs
- DataError.cs
- TouchFrameEventArgs.cs
- StylusPointPropertyInfo.cs
- AssemblyCache.cs
- Condition.cs
- Type.cs
- WebPermission.cs
- RegionInfo.cs
- SpecularMaterial.cs
- FillRuleValidation.cs
- IPCCacheManager.cs
- PortCache.cs
- BoundColumn.cs
- XmlName.cs
- BuildProviderAppliesToAttribute.cs
- CategoryEditor.cs
- TabPage.cs
- NavigationProperty.cs
- CngKeyBlobFormat.cs
- FrameworkElementAutomationPeer.cs
- AccessDataSourceView.cs
- SmiMetaData.cs
- Mappings.cs
- ImageSourceValueSerializer.cs
- WindowsAltTab.cs
- QueryResults.cs
- ApplicationDirectoryMembershipCondition.cs
- DoubleAnimationUsingKeyFrames.cs
- Point4D.cs
- AssemblyAssociatedContentFileAttribute.cs
- GeneralTransform3DGroup.cs
- CssStyleCollection.cs
- TaskResultSetter.cs
- EnlistmentState.cs
- MouseEventArgs.cs
- HttpCapabilitiesBase.cs
- BrowserDefinitionCollection.cs
- HostVisual.cs
- CodeExporter.cs
- SoapCodeExporter.cs
- CqlWriter.cs
- SmiEventSink_DeferedProcessing.cs
- AddingNewEventArgs.cs
- ForwardPositionQuery.cs
- CertificateReferenceElement.cs
- CharAnimationBase.cs
- IriParsingElement.cs
- OLEDB_Util.cs
- TextServicesContext.cs
- OptimalTextSource.cs
- CommonXSendMessage.cs
- InteropAutomationProvider.cs
- BitConverter.cs
- Freezable.cs
- VarInfo.cs
- GridViewCommandEventArgs.cs
- SystemParameters.cs
- GridEntryCollection.cs
- AspCompat.cs
- SettingsProperty.cs
- DetailsViewPagerRow.cs
- DataGridViewColumnCollectionDialog.cs
- Helper.cs
- Helper.cs
- SmiEventSink_DeferedProcessing.cs
- XsdBuilder.cs
- WebHttpDispatchOperationSelector.cs
- WebPartZoneBase.cs
- OrderedDictionary.cs
- CatalogZoneBase.cs
- ServiceNotStartedException.cs
- DynamicQueryableWrapper.cs