summaryrefslogtreecommitdiff
path: root/include/array.h
blob: 6956fee2c8ef48565f957ac4f6d0790d0ad5a237 (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
/**
 *  Array.h
 *
 *  An array is an extension to the Value class. It extends the Value class
 *  to initialize the variable as an array, instead of a null pointer
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */

/**
 *  Set up namespace
 */
namespace Php {
    
/**
 *  Class definition
 */
class Array : public Value
{
public:
    /**
     *  Constructor
     */
    Array() : Value() { setType(arrayType); }
    
    /**
     *  Copy constructor
     *  @param  array
     */
    Array(const Array &array) : Value(array) {}
    
    /**
     *  Move constructor
     *  @param  array
     */
    Array(Array &&that) : Value(std::move(that)) {}
    
    /**
     *  Copy constructor from a value object
     *  @param  value
     */
    Array(const Value &value) : Value(value) { setType(arrayType); }
    
    /**
     *  Destructor
     */
    virtual ~Array() {}

    /**
     *  Change the internal type of the variable
     *  @param  Type
     */
    virtual Value &setType(Type type) override
    {
        // only possible for arrays
        if (type != arrayType) return *this;
        
        // call base
        return Value::setType(type);
    }
    
protected:
    /**
     *  Validate the object
     *  @return Value
     */
    virtual Value &validate() override
    {
        // make sure the value object is an array
        setType(arrayType);
        
        // call base
        return Value::validate();
    }
    
};
    
/**
 *  End of namespace
 */
}