~jeremywootten/pantheon-files/fix-1604300-merge-find-functionalities-part1

« back to all changes in this revision

Viewing changes to src/Utils/Permissions.vala

  • Committer: Jeremy Wootten
  • Date: 2017-01-13 13:31:06 UTC
  • mfrom: (2412.1.32 pantheon-files)
  • Revision ID: jeremy@elementaryos.org-20170113133106-v9l164ms13lh3p0a
Merge trunk to r2444 and resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Copyright (c) 2016 elementary LLC. (http://launchpad.net/pantheon-files)
 
3
*
 
4
* This program is free software; you can redistribute it and/or
 
5
* modify it under the terms of the GNU General Public
 
6
* License as published by the Free Software Foundation; either
 
7
* version 2 of the License, or (at your option) any later version.
 
8
*
 
9
* This program is distributed in the hope that it will be useful,
 
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
* General Public License for more details.
 
13
*
 
14
* You should have received a copy of the GNU General Public
 
15
* License along with this program; if not, write to the
 
16
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
* Boston, MA 02111-1307, USA.
 
18
*/
 
19
 
 
20
namespace Permissions {
 
21
    public enum Type {
 
22
        USER,
 
23
        GROUP,
 
24
        OTHER
 
25
    }
 
26
 
 
27
    public enum Value {
 
28
        READ,
 
29
        WRITE,
 
30
        EXE
 
31
    }
 
32
 
 
33
    public static bool is_chmod_code (string str) {
 
34
        try {
 
35
            var regex = new Regex ("^[0-7]{3}$");
 
36
            if (regex.match (str)) {
 
37
                return true;
 
38
            }
 
39
        } catch (RegexError e) {
 
40
            assert_not_reached ();
 
41
        }
 
42
 
 
43
        return false;
 
44
    }
 
45
}