| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- //
- // System.CodeDom.Compiler TempFileCollection Class implementation
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Copyright 2003 Ximian, Inc.
- // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Collections;
- using System.IO;
- using System.Security;
- using System.Security.Permissions;
- namespace System.CodeDom.Compiler {
- #if NET_2_0
- [Serializable]
- #endif
- [PermissionSet (SecurityAction.LinkDemand, Unrestricted = true)]
- public class TempFileCollection:ICollection, IEnumerable, IDisposable
- {
- Hashtable filehash;
- string tempdir;
- bool keepfiles;
- string basepath;
- Random rnd;
-
- public TempFileCollection ()
- : this (String.Empty, false)
- {
- }
- public TempFileCollection(string tempDir)
- : this (tempDir, false)
- {
- }
- public TempFileCollection(string tempDir, bool keepFiles)
- {
- filehash=new Hashtable();
- tempdir = (tempDir == null) ? String.Empty : tempDir;
- keepfiles=keepFiles;
- }
- public string BasePath
- {
- get {
- if(basepath==null) {
- // note: this property *cannot* change TempDir property
- string temp = tempdir;
- if (temp.Length == 0) {
- // this call ensure the Environment permissions check
- temp = Path.GetTempPath ();
- }
- if (rnd == null)
- rnd = new Random ();
- string random = rnd.Next (10000,99999).ToString ();
- basepath = Path.Combine (temp, random);
- // and you must have discovery access to the combined path
- // note: the cache behaviour is tested in the CAS tests
- if (SecurityManager.SecurityEnabled) {
- new FileIOPermission (FileIOPermissionAccess.PathDiscovery, basepath).Demand ();
- }
- }
- return(basepath);
- }
- }
- int ICollection.Count {
- get {
- return filehash.Count;
- }
- }
-
- public int Count
- {
- get {
- return(filehash.Count);
- }
- }
- public bool KeepFiles
- {
- get {
- return(keepfiles);
- }
- set {
- keepfiles=value;
- }
- }
- public string TempDir
- {
- get {
- // note: we only return what we were supplied so there
- // is no permission protecting this information
- return tempdir;
- }
- }
- public string AddExtension(string fileExtension)
- {
- return(AddExtension(fileExtension, keepfiles));
- }
- public string AddExtension(string fileExtension, bool keepFile)
- {
- string filename=BasePath+"."+fileExtension;
- AddFile(filename, keepFile);
- return(filename);
- }
- public void AddFile(string fileName, bool keepFile)
- {
- filehash.Add(fileName, keepFile);
- }
- public void CopyTo(string[] fileNames, int start)
- {
- filehash.Keys.CopyTo(fileNames, start);
- }
- void ICollection.CopyTo(Array array, int start)
- {
- filehash.Keys.CopyTo(array, start);
- }
- object ICollection.SyncRoot {
- get {
- return null;
- }
- }
- bool ICollection.IsSynchronized {
- get {
- return(false);
- }
- }
-
- void IDisposable.Dispose()
- {
- Dispose(true);
- }
-
- public void Delete()
- {
- string[] filenames=new string[filehash.Count];
- filehash.Keys.CopyTo(filenames, 0);
- foreach(string file in filenames) {
- if((bool)filehash[file]==false) {
- File.Delete(file);
- filehash.Remove(file);
- }
- }
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return(filehash.Keys.GetEnumerator());
- }
-
- public IEnumerator GetEnumerator()
- {
- return(filehash.Keys.GetEnumerator());
- }
- protected virtual void Dispose(bool disposing)
- {
- Delete();
- if (disposing) {
- GC.SuppressFinalize (true);
- }
- }
- ~TempFileCollection()
- {
- Dispose(false);
- }
-
- }
- }
|