123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- /*++
- Copyright (c) 2015 Minoca Corp. All Rights Reserved
- Module Name:
- rename.c
- Abstract:
- This module implements the performance benchmark tests for the rename() C
- library call.
- Author:
- Chris Stevens 6-May-2015
- Environment:
- User
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include "perftest.h"
- //
- // ---------------------------------------------------------------- Definitions
- //
- #define PT_RENAME_TEST_FILE_NAME_LENGTH 48
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // ------------------------------------------------------------------ Functions
- //
- void
- RenameMain (
- PPT_TEST_INFORMATION Test,
- PPT_TEST_RESULT Result
- )
- /*++
- Routine Description:
- This routine performs the rename performance benchmark test.
- Arguments:
- Test - Supplies a pointer to the performance test being executed.
- Result - Supplies a pointer to a performance test result structure that
- receives the tests results.
- Return Value:
- None.
- --*/
- {
- char *DestinationFile;
- int FileCreated;
- int FileDescriptor;
- char FileNames[2][PT_RENAME_TEST_FILE_NAME_LENGTH];
- int Index;
- unsigned long long Iterations;
- pid_t ProcessId;
- char *SourceFile;
- int Status;
- char *TempFile;
- FileCreated = 0;
- Iterations = 0;
- Result->Type = PtResultIterations;
- Result->Status = 0;
- SourceFile = FileNames[0];
- DestinationFile = FileNames[1];
- //
- // Create two process safe file names. One will start as the source and the
- // other the destination.
- //
- ProcessId = getpid();
- for (Index = 0; Index < 2; Index += 1) {
- Status = snprintf(FileNames[Index],
- PT_RENAME_TEST_FILE_NAME_LENGTH,
- "rename%d_%d.txt",
- Index,
- ProcessId);
- if (Status < 0) {
- Result->Status = errno;
- goto MainEnd;
- }
- }
- SourceFile = FileNames[0];
- DestinationFile = FileNames[1];
- //
- // Create the source file.
- //
- FileDescriptor = creat(SourceFile, S_IRUSR | S_IWUSR);
- if (FileDescriptor < 0) {
- Result->Status = errno;
- goto MainEnd;
- }
- close(FileDescriptor);
- FileCreated = 1;
- //
- // Start the test. This snaps resource usage and starts the clock ticking.
- //
- Status = PtStartTimedTest(Test->Duration);
- if (Status != 0) {
- Result->Status = errno;
- goto MainEnd;
- }
- //
- // Measure the performance of the rename() C library routine by counting
- // the number of times a file can be renamed.
- //
- while (PtIsTimedTestRunning() != 0) {
- Status = rename(SourceFile, DestinationFile);
- if (Status != 0) {
- Result->Status = errno;
- break;
- }
- //
- // Swap the two pointers.
- //
- TempFile = SourceFile;
- SourceFile = DestinationFile;
- DestinationFile = TempFile;
- Iterations += 1;
- }
- Status = PtFinishTimedTest(Result);
- if ((Status != 0) && (Result->Status == 0)) {
- Result->Status = errno;
- }
- MainEnd:
- //
- // If the file was created, try to delete it at both possible file paths.
- //
- if (FileCreated != 0) {
- remove(FileNames[0]);
- remove(FileNames[1]);
- }
- Result->Data.Iterations = Iterations;
- return;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|