summaryrefslogtreecommitdiff
path: root/src/argument.cpp
blob: 9ab5b75989d970bb43fbb42c58fd5088f8c36045 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
 *  Argument.cpp
 *
 *  Implementation for the Argument class
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */
#include "includes.h"

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

/**
 *  Constructor
 *  @param  name        Name of the argument
 *  @param  type        Argument type
 *  @param  required    Is this argument required?
 *  @param  byref       Is this a reference argument
 */
Argument::Argument(const char *name, Type type, bool required, bool byref)
{
    // construct object
    _info = new zend_arg_info;
    
    // fill members
    _info->name = name;
    _info->name_len = strlen(name);
#if PHP_VERSION_ID >= 50400    
    _info->type_hint = (unsigned char)(type == Type::Array || type == Type::Callable ? type : Type::Null);
#else
    _info->array_type_hint = type == Type::Array;
    _info->return_reference = false;
    _info->required_num_args = 0;   // @todo is this correct?
#endif
    _info->class_name = NULL;
    _info->class_name_len = 0;
    _info->allow_null = false;
    _info->pass_by_reference = byref;
    
    // store if required
    _required = required;
}

/**
 *  Constructor
 *  @param  name        Name of the argument
 *  @param  classname   Name of the class
 *  @param  nullable    Can it be null?
 *  @param  required    Is this argument required?
 *  @param  byref       Is this a reference argument?
 */
Argument::Argument(const char *name, const char *classname, bool nullable, bool required, bool byref)
{
    // construct object
    _info = new zend_arg_info;
    
    // fill members
    _info->name = name;
    _info->name_len = strlen(name);
#if PHP_VERSION_ID >= 50400    
    _info->type_hint = (unsigned char)Type::Object;
#endif
    _info->class_name = classname;
    _info->class_name_len = strlen(classname);
    _info->allow_null = nullable;
    _info->pass_by_reference = byref;
    
    // store if required
    _required = required;
}

/**
 *  Copy constructor
 *  @param  argument
 */
Argument::Argument(const Argument &argument)
{
    // construct object
    _info = new zend_arg_info;
    
    // fill members
    *_info = *argument._info;
    
    // store if required
    _required = argument._required;
}

/**
 *  Move constructor
 *  @param  argument
 */
Argument::Argument(Argument &&argument)
{
    // copy memory pointer
    _info = argument._info;
    
    // forget in other object
    argument._info = nullptr;
}

/**
 *  Destructor
 */
Argument::~Argument()
{
    if (_info) delete _info;
}

/**
 *  Fill an arg_info structure with data
 *  @param  info
 *  @internal
 */
void Argument::fill(struct _zend_arg_info *info) const
{
    // copy all data
    *info = *_info;
}

/**
 *  End of namespace
 */
}