diff --git a/src/Draw/Draw_Interpretor.cxx b/src/Draw/Draw_Interpretor.cxx index 56f475bb1d..84381735c6 100755 --- a/src/Draw/Draw_Interpretor.cxx +++ b/src/Draw/Draw_Interpretor.cxx @@ -29,6 +29,7 @@ #include #include +#include #include #include @@ -375,36 +376,23 @@ void Draw_Interpretor::Add(const Standard_CString n, if (myInterp==NULL) Init(); CData* C = new CData(f,this); - Standard_Size length, num_slashes, ii, jj, kk; Tcl_CreateCommand(myInterp,pN,CommandCmd, (ClientData) C, CommandDelete); // add the help Tcl_SetVar2(myInterp,"Draw_Helps",pN,pHelp,TCL_GLOBAL_ONLY); Tcl_SetVar2(myInterp,"Draw_Groups",pGroup,pN, TCL_GLOBAL_ONLY|TCL_APPEND_VALUE|TCL_LIST_ELEMENT); - length = strlen(pFileName) ; - char * a_string = - new char[length + 1] ; - jj = 0 ; - num_slashes = 0 ; - ii = length ; - while (num_slashes < 3 && ii >= 0) { - if (file_name[ii] == '/') { - num_slashes += 1 ; - } - ii -= 1 ; - } - jj = 0 ; - for (kk = ii+2 , jj =0 ; kk < length ; kk++) { - a_string[jj] = file_name[kk] ; - jj += 1 ; - } - a_string[jj] = '\0' ; - - Tcl_SetVar2(myInterp,"Draw_Files",pN,a_string,TCL_GLOBAL_ONLY); - - delete [] a_string; + // add path to source file (keep not more than two last subdirectories) + OSD_Path aPath (pFileName); + Standard_Integer nbTrek = aPath.TrekLength(); + for (Standard_Integer i = 2; i < nbTrek; i++) + aPath.RemoveATrek (1); + aPath.SetDisk(""); + aPath.SetNode(""); + TCollection_AsciiString aSrcPath; + aPath.SystemName (aSrcPath); + Tcl_SetVar2(myInterp,"Draw_Files",pN,aSrcPath.ToCString(),TCL_GLOBAL_ONLY); } diff --git a/src/DrawResources/StandardCommands.tcl b/src/DrawResources/StandardCommands.tcl index 45a72fb525..1d16b4bb7a 100755 --- a/src/DrawResources/StandardCommands.tcl +++ b/src/DrawResources/StandardCommands.tcl @@ -96,17 +96,16 @@ proc getsourcefile {{command ""}} { global Draw_Helps Draw_Groups Draw_Files + set out {} if {$command == ""} { # help general foreach h [lsort [array names Draw_Groups]] { - puts "" - puts "" - puts $h + lappend out "" "" "$h" set i 0 foreach f [lsort $Draw_Groups($h)] { if {$i == 0} { - puts " " + lappend out "" } incr i # @@ -114,18 +113,7 @@ proc getsourcefile {{command ""}} { # foreach command_that_has_file [array names Draw_Files] { if {($command_that_has_file == $f)} { -# -# compute the length of the string to have the right spacing -# with tabs -# - set ll [string length $f] - if {($ll >= 1) && ($ll < 8)} { - puts "$f\t\t: $Draw_Files($f) " - } - if {($ll >= 8)} { - puts "$f\t: $Draw_Files($f) " - } - + lappend out [format {%-20s %s} $f $Draw_Files($f)] } } } @@ -136,17 +124,12 @@ proc getsourcefile {{command ""}} { append command "*" foreach f [lsort [array names Draw_Files]] { if {[string match $command $f]} { - puts -nonewline $f - for {set j [string length $f]} {$j < 15} {incr j} { - puts -nonewline " " - } - - puts " $Draw_Files($f)" + lappend out [format {%-20s %s} $f $Draw_Files($f)] } } } - flush stdout + return [join $out "\n"] } help getsourcefile {getsourcefile, or getsourcefile command } {DRAW General Commands} diff --git a/src/DrawResources/TestCommands.tcl b/src/DrawResources/TestCommands.tcl index d29235d5ca..246e52060c 100644 --- a/src/DrawResources/TestCommands.tcl +++ b/src/DrawResources/TestCommands.tcl @@ -496,8 +496,8 @@ proc _run_test {scriptsdir group gridname casefile} { # log only output to stdout and stderr, not to file! if {[llength $args] > 1} { - set optvarg [lindex $args end-1] - if { $optarg == stdout || $optarg == stderr || $optarg == -newline } { + set optarg [lindex $args end-1] + if { $optarg == "stdout" || $optarg == "stderr" || $optarg == "-newline" } { dlog add [lindex $args end] } } else { diff --git a/tests/demo/draw/getsource b/tests/demo/draw/getsource new file mode 100644 index 0000000000..acfe3bbac1 --- /dev/null +++ b/tests/demo/draw/getsource @@ -0,0 +1,10 @@ +# test for command getsource + +# check that path returned for command pload is as expected +set expected src/Draw/Draw_PloadCommands.cxx +set path [lindex [getsourcefile pload] 1] +if { [string compare $path $expected] } { + puts "Error: command 'getsourcefile pload' returned '$path' while expected '$expected'" +} + +puts "TEST COMPLETED"