0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / Standard / Standard_Copy.tcl
CommitLineData
973c2be1 1# Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2#
973c2be1 3# This file is part of Open CASCADE Technology software library.
b311480e 4#
d5f74e42 5# This library is free software; you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7# by the Free Software Foundation, with special exception defined in the file
8# OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9# distribution for complete text of the license and disclaimer of any warranty.
b311480e 10#
973c2be1 11# Alternatively, this file may be used under the terms of Open CASCADE
12# commercial license or contractual agreement.
7fd59977 13
14proc Standard_Copy:AdmFileType {} {
15 return "dbadmfile";
16}
17
18proc Standard_Copy:OutputDirTypeName {} {
19 return "dbtmpfile";
20}
21
22
23proc Standard_Copy:HandleInputFile { ID } {
24
25 scan $ID "%\[^:\]:%\[^:\]:%\[^:\]" unit type name
26
27 switch $name {
7fd59977 28 Standard_Transient.hxx {return 1;}
29 Standard_Persistent.hxx {return 1;}
30 default {
31 return 0;
32 }
33 }
34}
35
36proc Standard_Copy:Execute { unit args } {
37
38 msgprint -i -c "Standard_Copy::Execute" "Copy of Standard includes"
39
40 foreach file $args {
41 scan $file "%\[^:\]:%\[^:\]:%\[^:\]" Unit type name
42
e7195ab4 43 set source [woklocate -p Standard:source:$name [wokinfo -N $unit]]
7fd59977 44
e7195ab4 45 set vistarget [woklocate -p Standard:pubinclude:$name [wokinfo -N $unit]]
46 set target [wokinfo -p pubinclude:$name $unit]
7fd59977 47
48 if { [catch {eval exec "cmp $source $vistarget"} ] } {
49 msgprint -i -c "Standard_Copy::Execute" "Copy $source to $target"
50 if { [file exist $target] && [wokparam -e %Station ] != "wnt" } {
51 eval exec "chmod u+w $target" }
52 eval exec "cp -p $source $target"
53 if { [wokprofile -s] == "wnt" } {
54 eval exec "attrib -r $target"
55 }
56 } else {
57 msgprint -i -c "Standard_Copy::Execute" "No change in $source"
58 }
59 }
60 return 0;
61}