summaryrefslogtreecommitdiff
path: root/zend/stringmember.h
blob: 05fdb118c45a63a1d21fcf00f84dabbe9b333d67 (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
/**
 *  StringMember.h
 *
 *  Implementation for a property that is initially set to a string value
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */

/**
 *  Set up namespace
 */
namespace Php {

/**
 *  Class definition
 */
class StringMember : public Member
{
private:
    /**
     *  The value
     *  @var string
     */
    std::string _value;
    
public:
    /**
     *  Constructor
     *  @param  name
     *  @param  value
     *  @param  size
     *  @param  flags
     */
    StringMember(const char *name, const char *value, size_t size, int flags) : Member(name, flags), _value(value, size) {}

    /**
     *  Constructor
     *  @param  name
     *  @param  value
     *  @param  flags
     */
    StringMember(const char *name, const char *value, int flags) : StringMember(name, value, ::strlen(value), flags) {}

    /**
     *  Constructor
     *  @param  name
     *  @param  value
     *  @param  flags
     */
    StringMember(const char *name, const std::string &value, int flags) : Member(name, flags), _value(value) {}

    /**
     *  Destructor
     */
    virtual ~StringMember() {}

    /**
     *  Virtual method to declare class constant
     *  @param  entry       Class entry
     *  @param  tsrm_ls
     */
    virtual void constant(struct _zend_class_entry *entry TSRMLS_DC) override
    {
        zend_declare_class_constant_stringl(entry, _name.c_str(), _name.size(), _value.c_str(), _value.size() TSRMLS_CC);
    }

    /**
     *  Virtual method to declare the property
     *  @param  entry       Class entry
     */
    virtual void declare(struct _zend_class_entry *entry TSRMLS_DC) override
    {
        // cast to char* is necessary for php 5.3
        zend_declare_property_stringl(entry, (char *)_name.c_str(), _name.size(), (char *)_value.c_str(), _value.size(), _flags TSRMLS_CC);
    }
};

/**
 *  End of namespace
 */
}