1 /* Cycript - Inlining/Optimizing JavaScript Compiler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include "Replace.hpp"
41 #include "ObjectiveC/Syntax.hpp"
43 #include <Foundation/Foundation.h>
46 CYStatement *CYCategory::Replace(CYContext &context) {
47 CYVariable *cyc($V("$cyc")), *cys($V("$cys"));
49 return $E($C1($F(NULL, $P5("$cys", "$cyp", "$cyc", "$cyn", "$cyt"), $$->*
50 $E($ CYAssign($V("$cyp"), $C1($V("object_getClass"), cys)))->*
51 $E($ CYAssign(cyc, cys))->*
52 $E($ CYAssign($V("$cym"), $C1($V("object_getClass"), cyc)))->*
53 messages_->Replace(context, true)
54 ), name_->ClassName(context, true)));
57 CYExpression *CYClass::Replace_(CYContext &context) {
58 CYVariable *cyc($V("$cyc")), *cys($V("$cys"));
60 CYExpression *name(name_ != NULL ? name_->ClassName(context, false) : $C1($V("$cyq"), $S("CY$")));
62 return $C1($F(NULL, $P6("$cys", "$cyp", "$cyc", "$cyn", "$cyt", "$cym"), $$->*
63 $E($ CYAssign($V("$cyp"), $C1($V("object_getClass"), cys)))->*
64 $E($ CYAssign(cyc, $C3($V("objc_allocateClassPair"), cys, name, $D(0))))->*
65 $E($ CYAssign($V("$cym"), $C1($V("object_getClass"), cyc)))->*
66 fields_->Replace(context)->*
67 messages_->Replace(context, false)->*
68 $E($C1($V("objc_registerClassPair"), cyc))->*
70 ), super_ == NULL ? $ CYNull() : super_);
73 CYExpression *CYClassExpression::Replace(CYContext &context) {
74 return Replace_(context);
77 CYStatement *CYClassStatement::Replace(CYContext &context) {
78 return $E(Replace_(context));
81 CYStatement *CYField::Replace(CYContext &context) const {
85 CYStatement *CYMessage::Replace(CYContext &context, bool replace) const { $T(NULL)
86 CYVariable *cyn($V("$cyn"));
87 CYVariable *cyt($V("$cyt"));
88 CYVariable *self($V("self"));
89 CYVariable *_class($V(instance_ ? "$cys" : "$cyp"));
91 return $ CYBlock($$->*
92 next_->Replace(context, replace)->*
93 $E($ CYAssign(cyn, parameters_->Selector(context)))->*
94 $E($ CYAssign(cyt, $C1($M(cyn, $S("type")), _class)))->*
95 $E($C4($V(replace ? "class_replaceMethod" : "class_addMethod"),
96 $V(instance_ ? "$cyc" : "$cym"),
98 $N2($V("Functor"), $F(NULL, $P2("self", "_cmd", parameters_->Parameters(context)), $$->*
99 $ CYVar($L1($L($I("$cyr"), $N2($V("Super"), self, _class))))->*
100 $ CYReturn($C1($M($F(NULL, NULL, code_), $S("call")), self))
107 CYFunctionParameter *CYMessageParameter::Parameters(CYContext &context) const { $T(NULL)
108 CYFunctionParameter *next(next_->Parameters(context));
109 return name_ == NULL ? next : $ CYFunctionParameter(name_, next);
112 CYSelector *CYMessageParameter::Selector(CYContext &context) const {
113 return $ CYSelector(SelectorPart(context));
116 CYSelectorPart *CYMessageParameter::SelectorPart(CYContext &context) const { $T(NULL)
117 CYSelectorPart *next(next_->SelectorPart(context));
118 return tag_ == NULL ? next : $ CYSelectorPart(tag_, name_ != NULL, next);
121 CYExpression *CYSelector::Replace(CYContext &context) {
122 return $N1($V("Selector"), name_->Replace(context));
125 CYString *CYSelectorPart::Replace(CYContext &context) {
126 std::ostringstream str;
127 for (const CYSelectorPart *part(this); part != NULL; part = part->next_) {
128 if (part->name_ != NULL)
129 str << part->name_->Word();
133 return $S(apr_pstrdup(context.pool_, str.str().c_str()));
136 CYExpression *CYSendDirect::Replace(CYContext &context) {
137 std::ostringstream name;
138 CYArgument **argument(&arguments_);
139 CYSelectorPart *selector(NULL), *current(NULL);
141 while (*argument != NULL) {
142 if ((*argument)->name_ != NULL) {
143 CYSelectorPart *part($ CYSelectorPart((*argument)->name_, (*argument)->value_ != NULL));
144 if (selector == NULL)
147 current->SetNext(part);
149 (*argument)->name_ = NULL;
152 if ((*argument)->value_ == NULL)
153 *argument = (*argument)->next_;
155 argument = &(*argument)->next_;
158 return $C2($V("objc_msgSend"), self_, ($ CYSelector(selector))->Replace(context), arguments_);
161 CYExpression *CYSendSuper::Replace(CYContext &context) {
162 return $ CYSendDirect($V("$cyr"), arguments_);