Can I create a unique filename based on ProcessID and ThreadID? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:31:41Z http://stackoverflow.com/feeds/question/272783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid 3 Can I create a unique filename based on ProcessID and ThreadID? Graza 2008-11-07T17:11:04Z 2008-11-10T17:46:51Z <p>I have a delphi (Win32) web application that can run either as a CGI app, ISAPI or Apache DLL. I want to be able to generate a unique filename prefix (unique for all current requests at a given moment), and figure that the best way to do this would be to use processID (to handle CGI mode) as well as threadID (to handle dll mode).</p> <p>How would I get a unique Process ID and Thread ID in Delphi?</p> <p>Will these be unique in a Multi-Core/Multi-Processor situation (on a single webserver machine)?</p> <p><em>Edit: please note that I was advised against this approach, and thus the accepted answer uses a different method to generate temporary filenames</em></p> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/272789#272789 4 Answer by Jamie for Can I create a unique filename based on ProcessID and ThreadID? Jamie 2008-11-07T17:13:11Z 2008-11-07T17:21:59Z <p>Could you not use a <a href="http://en.wikipedia.org/wiki/Globally_Unique_Identifier" rel="nofollow">GUID</a> instead? </p> <p>Edit: Should have said first time around, check out the following two functions</p> <pre><code>CreateGuid GuidToString </code></pre> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/272797#272797 3 Answer by grieve for Can I create a unique filename based on ProcessID and ThreadID? grieve 2008-11-07T17:15:19Z 2008-11-07T17:15:19Z <p>Process IDs are not guaranteed to be unique on windows. They are certainly unique for the life of the process, but once a process dies its id can be immediately reused. I am not certain about ThreadIDs. If these are temporary files you could use something equivalent to tmpfile or tmpnam (C functions, but I assume Delphi has an equivalent).</p> <p>As Jamie posted a GUID may be better.</p> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/272812#272812 2 Answer by Douglas Mayle for Can I create a unique filename based on ProcessID and ThreadID? Douglas Mayle 2008-11-07T17:19:30Z 2008-11-07T17:44:39Z <p>Better than either of of those options, you should be using the system function <a href="http://msdn.microsoft.com/en-us/library/hs3e7355.aspx" rel="nofollow">_tempnam</a>. It returns a random file name in the directory for a file that does not exist. If you want to, you can supply a prefix to _tempnam so that the file you create is recognizably yours. If you are providing a unique prefix, there is shouldn't be any worry about someone opening your file. There is another solution, however.</p> <p>_tempnam is only good if you want to put the file into an arbitrary directory. If you don't care that the directory is the system temporary directory, use <a href="http://msdn.microsoft.com/en-us/library/b3dz6009.aspx" rel="nofollow">tempfile_s</a> instead. It will also create the file for you, so no worry about race conditions... Errors will only occur if you try to open more temp files than the system can handle. The big downside to tempfile_s is that the file will disappear once you fclose it.</p> <p>EDIT: I've gotten a downvote because this is a C function. You have access to the C runtime by importing them into delphi. Have a look at some examples with msvcrt.dll <a href="http://rvelthuis.de/articles/articles-cobjs.html" rel="nofollow">here</a>.</p> <pre><code>function _tempnam(const Dir: PChar, const Prefix: PChar): PChar; cdecl; external 'msvcrt.dll' name '_tempnam'; </code></pre> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/272903#272903 1 Answer by gabr for Can I create a unique filename based on ProcessID and ThreadID? gabr 2008-11-07T17:40:14Z 2008-11-07T17:59:24Z <p>Others all gave you a good and reasonable ideas, but still - if you're using files for temporary storage and if those files will always be created first (it doesn't matter if there is a leftover file with a same name already on the disk as you'll overwrite it anyway) then processid_threadid approach is completely valid.</p> <p>Use <a href="http://msdn.microsoft.com/en-us/library/ms683180.aspx" rel="nofollow">GetCurrentProcessID</a> and <a href="http://msdn.microsoft.com/en-us/library/ms683183.aspx" rel="nofollow">GetCurrentThreadID</a> Win32 calls to access those two IDs.</p> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/272919#272919 5 Answer by X-Ray for Can I create a unique filename based on ProcessID and ThreadID? X-Ray 2008-11-07T17:46:31Z 2008-11-07T17:46:31Z <p>you have many good ideas presented here.</p> <blockquote> <p>Does it also create an empty file to "get a lock on" the name?</p> </blockquote> <p>no; i believe we rely on Windows to ensure the same temp file name is never given twice on the same computer since boot time.</p> <blockquote> <p>is there <em>any</em> chance of a clash if there is a split second delay between generating the name and creating the file (if I need to create the file myself).</p> </blockquote> <p>no; that'd be a pretty bad thing.</p> <p>here's a routine i've been using for getting a temp file.</p> <pre><code>function GetTemporaryFileName:string; var Path, FileName: array[0..MAX_PATH] of Char; begin Win32Check(GetTempPath(MAX_PATH, Path) &lt;&gt; 0); Win32Check(GetTempFileName(Path, '~EX', 0, FileName) &lt;&gt; 0); Result:=String(Filename); end; </code></pre> <p>you could instead use FileGetTempName( ) from JclFileUtils.pas in JCL.</p> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/274318#274318 2 Answer by Darian Miller for Can I create a unique filename based on ProcessID and ThreadID? Darian Miller 2008-11-08T03:47:48Z 2008-11-08T03:47:48Z <p>1) How to get a unique Process ID &amp; ThreadID in Delphi:</p> <p>Answer: <br> NOTE: Ensure to add 'windows' to your uses clause in the implementation section<br> NOTE: Cardinals are unsigned 32-bit integers ranging from 0 to 4294967295</p> <pre><code>implementation uses Windows; procedure MySolution(); var myThreadID:Cardinal; myProcessID:Cardinal; begin myThreadID := windows.GetCurrentThreadID; myProcessID := windows.GetCurrentProcessId; end; </code></pre> <p>2) Will these be unique in a Multi-Core/Multi-Processor situation (on a single webserver machine)?<br> <strong>Answer: Yes.</strong></p> <blockquote> <p>The process identifier is valid from the time the process is created until the process has been terminated and is unique throughout the system. (Not unique to processor)</p> <p>Until the thread terminates, the thread identifier uniquely identifies the thread throughout the system. (Again, system wide, not unique to processor)</p> </blockquote> http://stackoverflow.com/questions/272783/can-i-create-a-unique-filename-based-on-processid-and-threadid/274364#274364 5 Answer by Nick Hodges for Can I create a unique filename based on ProcessID and ThreadID? Nick Hodges 2008-11-08T04:29:38Z 2008-11-08T04:29:38Z <p>Windows provides functionality for creating guaranteed unique file names. No need for creating your own:</p> <p>Here's a Delphi wrapper around that functionality:</p> <pre><code>function CreateTempFileName(aPrefix: string): string; var Buf: array[0..MAX_PATH] of Char; Temp: array[0..MAX_PATH] of Char; begin GetTempPath(MAX_PATH, Buf); if GetTempFilename(Buf, PChar(aPrefix), 0, Temp) = 0 then begin raise Exception.CreateFmt(sWin32Error, [GetLastError, SysErrorMessage(GetLastError)]); end; Result := string(Temp); end; </code></pre>