Directory Core/Util/

Total Files:
8
Deleted Files:
0
Lines of Code:
1842

[root]/Core/Util

Lines of Code

Core/Util/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 31 (100.0%) 1025 (100.0%) 33.0
worthen 5 (16.1%) 805 (78.5%) 161.0
dav 20 (64.5%) 220 (21.5%) 11.0
luitjens 2 (6.5%) 0 (0.0%) 0.0
jas 4 (12.9%) 0 (0.0%) 0.0

Most Recent Commits

jas 2007-12-12 14:57 Rev.: 39589

Use const char * to eliminate warnings for converting strings to char *.

0 lines of code changed in 4 files:

  • Core/Util: FileUtils.cc (new), FileUtils.h (changed)
dav 2007-11-28 11:13 Rev.: 39479

cosmetics

4 lines of code changed in 1 file:

  • Core/Util: FileUtils.h (+4 -6)
dav 2007-11-26 17:22 Rev.: 39461

need include<time.h> for localtime

3 lines of code changed in 1 file:

  • Core/Util: FileUtils.cc (+3 -1)
dav 2007-11-26 14:49 Rev.: 39451

Added a getInfo() function that prints out info about the specified file.

38 lines of code changed in 2 files:

  • Core/Util: FileUtils.cc (+37), FileUtils.h (+1)
dav 2007-11-08 18:14 Rev.: 39337

Clean up use of std::. Use const & strings for params. Alphabatize a little. Coding standards... etc.

72 lines of code changed in 2 files:

  • Core/Util: FileUtils.cc (+57 -44), FileUtils.h (+15 -15)
worthen 2007-11-08 12:58 Rev.: 39318

Tweaks (that don't really affect this trunk) that help Uintah branch merges operate much more smoothly.

800 lines of code changed in 2 files:

  • Core/Util: FileUtils.cc (+676 -269), FileUtils.h (+124 -74)
dav 2007-10-30 14:30 Rev.: 39184

use a const reference string for the parameter

6 lines of code changed in 2 files:

  • Core/Util: FileUtils.cc (+3 -3), FileUtils.h (+3 -3)
worthen 2007-07-13 00:22 Rev.: 38054

Get Dir::removeDir working. Add strerror to errno prints there and in testFilesystem

5 lines of code changed in 1 file:

  • Core/Util: FileUtils.cc (+5 -5)
dav 2007-07-10 22:26 Rev.: 38029

Bryan, I'd really appreciate it if you could go over these changes and verify that they work...
Stop by if you'd like to talk them through. Thanks!

M Core/OS/Dir.cc
M Core/OS/Dir.h

This code needs to be REVIEWED and TESTED still...
Added removeDir() which deletes a directory and all of its children (files/dirs).
Indented.

M Core/Util/FileUtils.cc
M Core/Util/FileUtils.h

Added testFilesystem() call (which opens a file, writes to it, checks its size, deletes it).

M Packages/Uintah/CCA/Components/DataArchiver/DataArchiver.cc

Use the removeDir() call (which uses C++ calls to delete a dir (instead of system()). If it fails,
run the new testFilesystem() routine. Also check to see if system() seems to be working.

60 lines of code changed in 2 files:

  • Core/Util: FileUtils.cc (+57), FileUtils.h (+3)
dav 2007-07-03 17:13 Rev.: 37974

Forgot backslash

0 lines of code changed in 2 files:

  • Core/Util: sub.mk (changed)
dav 2007-07-03 17:01 Rev.: 37973

Socket.cc moved to !redstorm block

0 lines of code changed in 1 file:

  • Core/Util: sub.mk (-1)
dav 2007-07-03 16:58 Rev.: 37972


Mostly (C-SAFE Sandia) Redstorm (RS) fixes...

M include/sci_algorithm.h

Apparently RS already has is_sorted...

M Core/OS/sub.mk

No sock support on RS.

M Core/Exceptions/Exception.cc
M Core/Thread/Thread.cc

No terminal support on the compute nodes, so can't drop into a debugger...
(Not sure why we have what looks like the same code in two different places...)

M Core/Util/sub.mk

No support for these things on RS:

- DynamicLoader.cc
- DynamicCompilation.cc
- soloader.cc
- Socket.cc

so don't build them.

M Core/Util/sci_system.cc

Can't call 'system' on RS.
Indent/whitespace.

M Core/Util/TypeDescription.cc
M Core/Util/TypeDescription.h

Compiler can't resolve fill_compile_info() function (can't find
it?)... we don't use it (it is for SCIRun) on RS anyway, so turn it
off.

M Packages/Uintah/sub.mk

Don't need to set libs/etc... 'cause nothing is built in this dir.

M Packages/Uintah/CCA/Components/MPM/MPMCommon.cc
M Packages/Uintah/CCA/Components/ICE/ICE.cc

Check to see if stringstream worked... (RS handles it differently then
the c++ spec... go figure.)
Indent.

M Packages/Uintah/CCA/Components/DataArchiver/DataArchiver.cc

Better file open failure error message.
Indent.

M Packages/Uintah/CCA/Components/Schedulers/MPIScheduler.cc

Fix #include to use full path.
Indent.

M Packages/Uintah/CCA/Components/Schedulers/SchedulerCommon.cc

Indent. RS needs time.h.

M Packages/Uintah/Core/Grid/Variables/Variable.cc

Indent. Coding standard return type. Use {}.
Better write failure error msg.
No gzip on RS.
- Though putting this in might not be too hard. I think we have the library on RS.

M Packages/Uintah/Core/Grid/SimulationState.cc

Whitespace.

M Packages/Uintah/Core/DataArchive/DataArchive.cc
M Packages/Uintah/Core/ProblemSpec/ProblemSpec.cc

Robustness check (for istringstream).

M Packages/Uintah/Core/Disclosure/TypeUtils.cc
M Packages/Uintah/Core/Disclosure/TypeUtils.h

RS compiler has problem with resolving templated find_type_name() function.
It isn't used anyway as we don't build SCIRun.
Indent.

M Packages/Uintah/StandAlone/sus.cc

RS:
- requires time.h
- doesn't support disallow_sgi_OpenGL_page0_sillyness(0
- can't run diff command
- can't do initial sleep for debugger attachment

Goodbye to endls. :)

M Packages/Uintah/StandAlone/sub.mk

RS needs to link statically so all libs must be listed on the compile
line... this is the same as on AIX, so we use the AIX syntax. (There
is a small possiblity that this is going to cause a problem on
uP... FS, can you please check?)

37 lines of code changed in 7 files:

  • Core/Util: TypeDescription.cc (new), TypeDescription.h (new), sci_system.cc (+24 -19), sub.mk (+9 -4)
luitjens 2007-01-11 17:24 Rev.: 36369

HZ and CLK_TCK are deprecated CLOCKS_PER_SEC is equivalent to them.

This fixes a compiler error with new compilers.

0 lines of code changed in 2 files:

  • Core/Util: Timer.cc (new)
worthen 2007-01-03 10:51 Rev.: 36297

fix sgi build

0 lines of code changed in 2 files:

  • Core/Util: Socket.cc (new)
Generated by StatSVN 0.4.0