]> git.saurik.com Git - cycript.git/blame - ObjectiveC/Replace.cpp
Drop support for ObjC @implementation expressions.
[cycript.git] / ObjectiveC / Replace.cpp
CommitLineData
b3378a02 1/* Cycript - Optimizing JavaScript Compiler/Runtime
c1d3e52e 2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
b53b30c1
JF
3*/
4
f95d2598 5/* GNU Affero General Public License, Version 3 {{{ */
b53b30c1 6/*
f95d2598
JF
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c15969fd 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f95d2598
JF
15 * GNU Affero General Public License for more details.
16
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
b3378a02 19**/
b53b30c1
JF
20/* }}} */
21
4de0686f 22#include "Replace.hpp"
3c1c3635 23#include "ObjectiveC/Syntax.hpp"
4de0686f 24
4de0686f
JF
25#include <sstream>
26
57d55714 27static CYExpression *MessageType(CYContext &context, CYTypedIdentifier *type, CYMessageParameter *next, CYExpression *extra = NULL) {
57d55714 28 CYExpression *left($C0($M(type->Replace(context), $S("toString"))));
9a7c375c
JF
29 if (extra != NULL)
30 left = $ CYAdd(left, extra);
31
104cc5f5 32 if (next == NULL || next->type_ == NULL)
9a7c375c
JF
33 return left;
34
35 CYExpression *right(next->TypeSignature(context));
36 if (right == NULL)
37 return NULL;
38
39 return $ CYAdd(left, right);
40}
41
4de0686f
JF
42CYStatement *CYCategory::Replace(CYContext &context) {
43 CYVariable *cyc($V("$cyc")), *cys($V("$cys"));
44
b639f46d 45 return $E($C1($F(NULL, $P6($L("$cys"), $L("$cyp"), $L("$cyc"), $L("$cyn"), $L("$cyt"), $L("$cym")), $$->*
4de0686f
JF
46 $E($ CYAssign($V("$cyp"), $C1($V("object_getClass"), cys)))->*
47 $E($ CYAssign(cyc, cys))->*
725075ae 48 $E($ CYAssign($V("$cym"), $C1($V("object_getClass"), cyc)))->*
4de0686f
JF
49 messages_->Replace(context, true)
50 ), name_->ClassName(context, true)));
51}
52
ec18682d 53CYStatement *CYClassStatement::Replace(CYContext &context) {
4de0686f
JF
54 CYVariable *cyc($V("$cyc")), *cys($V("$cys"));
55
ec18682d 56 CYExpression *name(name_->ClassName(context, false));
4de0686f 57
ec18682d 58 return $E($C1($F(NULL, $P6($L("$cys"), $L("$cyp"), $L("$cyc"), $L("$cyn"), $L("$cyt"), $L("$cym")), $$->*
4de0686f
JF
59 $E($ CYAssign($V("$cyp"), $C1($V("object_getClass"), cys)))->*
60 $E($ CYAssign(cyc, $C3($V("objc_allocateClassPair"), cys, name, $D(0))))->*
61 $E($ CYAssign($V("$cym"), $C1($V("object_getClass"), cyc)))->*
64b8d29f 62 protocols_->Replace(context)->*
4de0686f
JF
63 fields_->Replace(context)->*
64 messages_->Replace(context, false)->*
65 $E($C1($V("objc_registerClassPair"), cyc))->*
66 $ CYReturn(cyc)
ec18682d 67 ), super_ == NULL ? $ CYNull() : super_));
4de0686f
JF
68}
69
b6a67580 70CYStatement *CYClassField::Replace(CYContext &context) const { $T(NULL)
cfd73c6d
JF
71 CYVariable *cyn($V("$cyn"));
72 CYVariable *cyt($V("$cyt"));
73
d2f6e642 74 CYExpression *type($C0($M(typed_->Replace(context), $S("toString"))));
cfd73c6d
JF
75
76 return $ CYBlock($$->*
cfd73c6d
JF
77 $E($ CYAssign(cyt, type))->*
78 $E($ CYAssign(cyn, $N1($V("Type"), cyt)))->*
17f01b7a
JF
79 $E($C5($V("class_addIvar"), $V("$cyc"), $S(typed_->identifier_->Word()), $M(cyn, $S("size")), $M(cyn, $S("alignment")), cyt))->*
80 next_->Replace(context)
cfd73c6d 81 );
4de0686f
JF
82}
83
61769f4f
JF
84CYExpression *CYInstanceLiteral::Replace(CYContext &context) {
85 return $N1($V("Instance"), number_);
86}
87
4de0686f
JF
88CYStatement *CYMessage::Replace(CYContext &context, bool replace) const { $T(NULL)
89 CYVariable *cyn($V("$cyn"));
90 CYVariable *cyt($V("$cyt"));
cacd1a88
JF
91 CYVariable *self($V("self"));
92 CYVariable *_class($V(instance_ ? "$cys" : "$cyp"));
4de0686f
JF
93
94 return $ CYBlock($$->*
95 next_->Replace(context, replace)->*
96 $E($ CYAssign(cyn, parameters_->Selector(context)))->*
104cc5f5 97 $E($ CYAssign(cyt, TypeSignature(context)))->*
4de0686f
JF
98 $E($C4($V(replace ? "class_replaceMethod" : "class_addMethod"),
99 $V(instance_ ? "$cyc" : "$cym"),
100 cyn,
c8a0500b 101 $N2($V("Functor"), $F(NULL, $P2($L("self"), $L("_cmd"), parameters_->Parameters(context)), $$->*
7a3459ce 102 $ CYVar($L1($L("$cyr", $N2($V("objc_super"), self, _class))))->*
b0385401 103 $ CYReturn($C1($M($F(NULL, NULL, code_.code_), $S("call")), self))
4de0686f
JF
104 ), cyt),
105 cyt
106 ))
107 );
108}
109
9a7c375c
JF
110CYExpression *CYMessage::TypeSignature(CYContext &context) const {
111 return MessageType(context, type_, parameters_, $S("@:"));
112}
113
4de0686f
JF
114CYFunctionParameter *CYMessageParameter::Parameters(CYContext &context) const { $T(NULL)
115 CYFunctionParameter *next(next_->Parameters(context));
104cc5f5 116 return type_ == NULL ? next : $ CYFunctionParameter($ CYDeclaration(type_->identifier_), next);
4de0686f
JF
117}
118
119CYSelector *CYMessageParameter::Selector(CYContext &context) const {
120 return $ CYSelector(SelectorPart(context));
121}
122
123CYSelectorPart *CYMessageParameter::SelectorPart(CYContext &context) const { $T(NULL)
124 CYSelectorPart *next(next_->SelectorPart(context));
104cc5f5 125 return tag_ == NULL ? next : $ CYSelectorPart(tag_, type_ != NULL, next);
4de0686f
JF
126}
127
9a7c375c
JF
128CYExpression *CYMessageParameter::TypeSignature(CYContext &context) const {
129 return MessageType(context, type_, next_);
130}
131
f2f0d1d1
JF
132CYExpression *CYBox::Replace(CYContext &context) {
133 return $C1($M($V("Instance"), $S("box")), value_);
134}
135
56e02e5b 136CYExpression *CYObjCBlock::Replace(CYContext &context) {
b0385401 137 return $C1($ CYEncodedType(($ CYTypedIdentifier(*typed_))->Modify($ CYTypeBlockWith(parameters_))), $ CYFunctionExpression(NULL, parameters_->Parameters(context), code_));
56e02e5b
JF
138}
139
64b8d29f
JF
140CYStatement *CYProtocol::Replace(CYContext &context) const { $T(NULL)
141 return $ CYBlock($$->*
142 next_->Replace(context)->*
143 $E($C2($V("class_addProtocol"),
144 $V("$cyc"), name_
145 ))
146 );
147}
148
4de0686f 149CYExpression *CYSelector::Replace(CYContext &context) {
575f1f1b 150 return $C1($V("sel_registerName"), name_->Replace(context));
4de0686f
JF
151}
152
153CYString *CYSelectorPart::Replace(CYContext &context) {
154 std::ostringstream str;
c2c9f509 155 CYForEach (part, this) {
4de0686f 156 if (part->name_ != NULL)
69688ca1 157 str << part->name_->Word();
4de0686f
JF
158 if (part->value_)
159 str << ':';
160 }
b799113b 161 return $S($pool.strdup(str.str().c_str()));
4de0686f
JF
162}
163
cacd1a88 164CYExpression *CYSendDirect::Replace(CYContext &context) {
4de0686f
JF
165 std::ostringstream name;
166 CYArgument **argument(&arguments_);
2385c806 167 CYSelectorPart *selector(NULL), *current(NULL);
4de0686f
JF
168
169 while (*argument != NULL) {
170 if ((*argument)->name_ != NULL) {
2385c806
JF
171 CYSelectorPart *part($ CYSelectorPart((*argument)->name_, (*argument)->value_ != NULL));
172 if (selector == NULL)
173 selector = part;
174 if (current != NULL)
175 current->SetNext(part);
176 current = part;
4de0686f 177 (*argument)->name_ = NULL;
4de0686f
JF
178 }
179
180 if ((*argument)->value_ == NULL)
181 *argument = (*argument)->next_;
182 else
183 argument = &(*argument)->next_;
184 }
185
dbf9d389 186 return $C2($V("objc_msgSend"), self_, selector->Replace(context), arguments_);
4de0686f 187}
cacd1a88
JF
188
189CYExpression *CYSendSuper::Replace(CYContext &context) {
57a65431 190 return $ CYSendDirect($V("$cyr"), arguments_);
cacd1a88 191}