summaryrefslogtreecommitdiff
path: root/modules/atoms/macros/atoms_internals/atomsPath.sci
blob: af5d31a02e104bd1883676a93e532ce6181a49c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2009 - DIGITEO - Pierre MARECHAL <pierre.marechal@scilab.org>
// Copyright (C) 2011 - DIGITEO - Allan CORNET
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution.  The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt

// Internal function

// Add an URL to the list of repositories, and returns

function path = atomsPath(whataction, section)

    path = [];

    // Check number of input arguments
    // =========================================================================
    rhs = argn(2);

    if rhs <> 2 then
        error(msprintf(gettext("%s: Wrong number of input argument: %d to %d expected.\n"),"atomsPath",2));
    end

    // Check input argument type
    // =========================================================================

    if type(whataction) <> 10 then
        error(msprintf(gettext("%s: Wrong type for input argument #%d: Single string expected.\n"),"atomsPath",1));
    end

    if type(section) <> 10 then
        error(msprintf(gettext("%s: Wrong type for input argument #%d: Single string expected.\n"),"atomsPath",2));
    end

    // Check input argument value
    // =========================================================================

    if and(whataction<>["system","install"]) then
        error(msprintf(gettext("%s: Wrong value for input argument #%d: ''system'' or ''install'' expected.\n"),"atomsPath",1));
    end

    if and(section<>["all","allusers","user","session"]) then
        error(msprintf(gettext("%s: Wrong value for input argument #%d: ''all'',''allusers'',''user'' or ''session'' expected.\n"),"atomsPath",2));
    end

    // Check input argument value
    // =========================================================================

    if (whataction=="system") then

        if or( section == ["all","allusers"]) then
            path = [ path ; pathconvert(SCI + "/.atoms")];
        end

        if or( section == ["all","user"]) then
            // bug 8763 - on Windows 64 bit, we can have a 32 bit and 64 bit version
            // in this case modules download must be not the same
            if getos() <> "Windows" then
                path = [ path ; pathconvert(SCIHOME + "/.atoms")];
            else
                if win64() then
                    path = [ path ; pathconvert(SCIHOME + "/.atoms/x64")];
                else
                    path = [ path ; pathconvert(SCIHOME + "/.atoms")];
                end
            end
        end

        if or( section == ["session"]) then
            path = [ path ; pathconvert(TMPDIR + "/.atoms") ];
        end

    elseif (whataction=="install") then

        if or( section == ["all","allusers"]) then
            path = [ path ; pathconvert(SCI + "/contrib") ];
        end

        if or( section == ["all","user"]) then
            if getos() <> "Windows" then
                path = [ path ; pathconvert(SCIHOME + "/atoms")];
            else
                if win64() then
                    path = [ path ; pathconvert(SCIHOME + "/atoms/x64")];
                else
                    path = [ path ; pathconvert(SCIHOME + "/atoms")];
                end
            end
        end
    end

endfunction