]>
git.saurik.com Git - cycript.git/blob - Output.cpp
1d4a510e36a4090751f39c34eed89bf361654634
6 #include <objc/runtime.h>
9 _finline CYFlags
operator ~(CYFlags rhs
) {
10 return static_cast<CYFlags
>(~static_cast<unsigned>(rhs
));
13 _finline CYFlags
operator &(CYFlags lhs
, CYFlags rhs
) {
14 return static_cast<CYFlags
>(static_cast<unsigned>(lhs
) & static_cast<unsigned>(rhs
));
17 _finline CYFlags
operator |(CYFlags lhs
, CYFlags rhs
) {
18 return static_cast<CYFlags
>(static_cast<unsigned>(lhs
) | static_cast<unsigned>(rhs
));
21 _finline CYFlags
&operator |=(CYFlags
&lhs
, CYFlags rhs
) {
22 return lhs
= lhs
| rhs
;
25 _finline CYFlags
CYLeft(CYFlags flags
) {
26 return flags
& ~CYNoTrailer
;
29 _finline CYFlags
CYCenter(CYFlags flags
) {
30 return flags
& CYNoIn
;
33 _finline CYFlags
CYRight(CYFlags flags
) {
34 return flags
& (CYNoIn
| CYNoTrailer
);
37 bool CYFalse::Value() const {
41 bool CYTrue::Value() const {
47 void CYAddressOf::Output(std::ostream
&out
, CYFlags flags
) const {
48 rhs_
->Output(out
, 1, CYLeft(flags
));
52 void CYArgument::Output(std::ostream
&out
) const {
59 value_
->Output(out
, CYPA
, CYNoFlags
);
61 if (next_
->name_
== NULL
)
69 void CYArray::Output(std::ostream
&out
, CYFlags flags
) const {
71 if (elements_
!= NULL
)
72 elements_
->Output(out
);
76 void CYArrayComprehension::Output(std::ostream
&out
, CYFlags flags
) const {
77 // XXX: I don't necc. need the ()s
78 out
<< "(function($cyv";
79 for (CYComprehension
*comprehension(comprehensions_
); comprehension
!= NULL
; comprehension
= comprehension
->next_
)
80 if (const char *name
= comprehension
->Name())
84 comprehensions_
->Output(out
);
86 expression_
->Output(out
, CYPA
, CYNoFlags
);
88 for (CYComprehension
*comprehension(comprehensions_
); comprehension
!= NULL
; comprehension
= comprehension
->next_
)
89 comprehension
->End_(out
);
90 out
<< "return $cyt;";
94 void CYAssignment::Output(std::ostream
&out
, CYFlags flags
) const {
95 lhs_
->Output(out
, Precedence() - 1, CYLeft(flags
));
97 rhs_
->Output(out
, Precedence(), CYRight(flags
));
100 void CYBlock::Output(std::ostream
&out
) const {
101 for (CYSource
*statement(statements_
); statement
!= NULL
; statement
= statement
->next_
)
102 statement
->Output(out
);
105 void CYBoolean::Output(std::ostream
&out
, CYFlags flags
) const {
106 if ((flags
& CYNoLeader
) != 0)
108 out
<< (Value() ? "true" : "false");
109 if ((flags
& CYNoTrailer
) != 0)
113 void CYBreak::Output(std::ostream
&out
) const {
116 out
<< ' ' << *label_
;
120 void CYCall::Output(std::ostream
&out
, CYFlags flags
) const {
121 function_
->Output(out
, Precedence(), CYLeft(flags
));
123 if (arguments_
!= NULL
)
124 arguments_
->Output(out
);
128 void CYCatch::Output(std::ostream
&out
) const {
129 out
<< "catch(" << *name_
<< ')';
130 code_
->Output(out
, true);
133 void CYCategory::Output(std::ostream
&out
) const {
134 out
<< "(function($cys,$cyp,$cyc,$cyn,$cyt){";
135 out
<< "$cyp=object_getClass($cys);";
137 if (messages_
!= NULL
)
138 messages_
->Output(out
, true);
140 name_
->ClassName(out
, true);
144 void CYClass::Output(std::ostream
&out
) const {
149 void CYClass::Output(std::ostream
&out
, CYFlags flags
) const {
150 // XXX: I don't necc. need the ()s
151 out
<< "(function($cys,$cyp,$cyc,$cyn,$cyt,$cym){";
152 out
<< "$cyp=object_getClass($cys);";
153 out
<< "$cyc=objc_allocateClassPair($cys,";
155 name_
->ClassName(out
, false);
157 out
<< "$cyq(\"CY$\")";
159 out
<< "$cym=object_getClass($cyc);";
161 fields_
->Output(out
);
162 if (messages_
!= NULL
)
163 messages_
->Output(out
, false);
164 out
<< "objc_registerClassPair($cyc);";
165 out
<< "return $cyc;";
168 super_
->Output(out
, CYPA
, CYNoFlags
);
174 void CYCompound::Output(std::ostream
&out
, CYFlags flags
) const {
175 if (CYExpression
*expression
= expressions_
)
176 if (CYExpression
*next
= expression
->next_
) {
177 expression
->Output(out
, CYLeft(flags
));
178 CYFlags
center(CYCenter(flags
));
179 while (next
!= NULL
) {
182 next
= expression
->next_
;
183 CYFlags
right(next
!= NULL
? center
: CYRight(flags
));
184 expression
->Output(out
, right
);
187 expression
->Output(out
, flags
);
190 void CYComprehension::Output(std::ostream
&out
) const {
196 void CYCondition::Output(std::ostream
&out
, CYFlags flags
) const {
197 test_
->Output(out
, Precedence() - 1, CYLeft(flags
));
200 true_
->Output(out
, CYPA
, CYNoFlags
);
202 false_
->Output(out
, CYPA
, CYRight(flags
));
205 void CYContinue::Output(std::ostream
&out
) const {
208 out
<< ' ' << *label_
;
212 void CYClause::Output(std::ostream
&out
) const {
215 case_
->Output(out
, CYNoFlags
);
220 code_
->Output(out
, false);
224 void CYDeclaration::Part(std::ostream
&out
, CYFlags flags
) const {
225 if ((flags
& CYNoLeader
) != 0)
228 Output(out
, CYRight(flags
));
231 void CYDeclaration::ForEachIn(std::ostream
&out
) const {
235 void CYDeclaration::Output(std::ostream
&out
, CYFlags flags
) const {
237 if (initialiser_
!= NULL
) {
239 initialiser_
->Output(out
, CYPA
, CYRight(flags
));
240 } else if ((flags
& CYNoTrailer
) != 0)
244 void CYDeclarations::Part(std::ostream
&out
, CYFlags flags
) const {
245 if ((flags
& CYNoLeader
) != 0)
249 const CYDeclarations
*declaration(this);
251 CYDeclarations
*next(declaration
->next_
);
252 CYFlags
right(next
== NULL
? CYRight(flags
) : CYCenter(flags
));
253 declaration
->declaration_
->Output(out
, right
);
262 void CYDeclarations::Output(std::ostream
&out
) const {
263 Part(out
, CYNoFlags
);
267 void CYDirectMember::Output(std::ostream
&out
, CYFlags flags
) const {
268 object_
->Output(out
, Precedence(), CYLeft(flags
));
269 if (const char *word
= property_
->Word())
273 property_
->Output(out
, CYNoFlags
);
278 void CYDoWhile::Output(std::ostream
&out
) const {
279 // XXX: extra space character!
281 code_
->Output(out
, false);
283 test_
->Output(out
, CYNoFlags
);
287 void CYElement::Output(std::ostream
&out
) const {
289 value_
->Output(out
, CYPA
, CYNoFlags
);
290 if (next_
!= NULL
|| value_
== NULL
)
296 void CYEmpty::Output(std::ostream
&out
) const {
300 void CYEmpty::Output(std::ostream
&out
, bool block
) const {
302 CYSource::Output(out
, block
);
307 void CYExpress::Output(std::ostream
&out
) const {
308 expression_
->Output(out
, CYNoBF
);
312 void CYExpression::ClassName(std::ostream
&out
, bool object
) const {
313 Output(out
, CYPA
, CYNoFlags
);
316 void CYExpression::ForEachIn(std::ostream
&out
) const {
317 // XXX: this should handle LeftHandSideExpression
318 Output(out
, CYPA
, CYNoFlags
);
321 void CYExpression::Part(std::ostream
&out
, CYFlags flags
) const {
322 // XXX: this should handle LeftHandSideExpression
326 void CYExpression::Output(std::ostream
&out
, unsigned precedence
, CYFlags flags
) const {
327 if (precedence
< Precedence()) {
329 Output(out
, CYNoFlags
);
335 void CYField::Output(std::ostream
&out
) const {
339 void CYFor::Output(std::ostream
&out
) const {
341 if (initialiser_
!= NULL
)
342 initialiser_
->Part(out
, CYNoFlags
);
345 test_
->Output(out
, CYNoFlags
);
347 if (increment_
!= NULL
)
348 increment_
->Output(out
, CYNoFlags
);
350 code_
->Output(out
, false);
353 void CYForEachIn::Output(std::ostream
&out
) const {
354 const char *name(initialiser_
->ForEachIn());
358 out
<< "var " << name
<< ';';
361 out
<< "(function($cys,$cyt){";
363 set_
->Output(out
, CYPA
, CYNoFlags
);
366 out
<< "for($cyt in $cys){";
368 initialiser_
->ForEachIn(out
);
369 out
<< "=$cys[$cyt];";
379 void CYForEachInComprehension::Begin_(std::ostream
&out
) const {
380 out
<< "(function($cys){";
382 set_
->Output(out
, CYPA
, CYNoFlags
);
385 out
<< "for(" << *name_
<< " in $cys){";
386 out
<< *name_
<< "=$cys[" << *name_
<< "];";
389 void CYForEachInComprehension::End_(std::ostream
&out
) const {
393 void CYForIn::Output(std::ostream
&out
) const {
395 initialiser_
->Part(out
, CYNoIn
| CYNoTrailer
);
397 set_
->Output(out
, CYNoLeader
);
399 code_
->Output(out
, false);
402 void CYForInComprehension::Begin_(std::ostream
&out
) const {
403 out
<< "for(" << *name_
<< " in";
404 set_
->Output(out
, CYNoLeader
);
408 void CYFunction::Output(std::ostream
&out
) const {
409 CYLambda::Output(out
, CYNoFlags
);
412 void CYFunctionParameter::Output(std::ostream
&out
) const {
420 void CYIf::Output(std::ostream
&out
) const {
422 test_
->Output(out
, CYNoFlags
);
424 true_
->Output(out
, true);
425 if (false_
!= NULL
) {
427 false_
->Output(out
, false);
431 void CYIfComprehension::Begin_(std::ostream
&out
) const {
433 test_
->Output(out
, CYNoFlags
);
437 void CYIndirect::Output(std::ostream
&out
, CYFlags flags
) const {
438 rhs_
->Output(out
, 1, CYLeft(flags
));
442 void CYIndirectMember::Output(std::ostream
&out
, CYFlags flags
) const {
443 object_
->Output(out
, Precedence(), CYLeft(flags
));
445 if (const char *word
= property_
->Word())
449 property_
->Output(out
, CYNoFlags
);
454 void CYInfix::Output(std::ostream
&out
, CYFlags flags
) const {
455 const char *name(Operator());
456 bool protect((flags
& CYNoIn
) != 0 && strcmp(name
, "in"));
459 bool alphabetic(Alphabetic());
460 CYFlags
left(protect
? CYNoFlags
: CYLeft(flags
));
463 lhs_
->Output(out
, Precedence(), left
);
465 CYFlags
right(protect
? CYNoFlags
: CYRight(flags
));
468 if (strcmp(name
, "-") == 0)
470 rhs_
->Output(out
, Precedence() - 1, right
);
475 void CYLambda::Output(std::ostream
&out
, CYFlags flags
) const {
476 bool protect((flags
& CYNoFunction
) != 0);
479 else if ((flags
& CYNoLeader
) != 0)
483 out
<< ' ' << *name_
;
485 if (parameters_
!= NULL
)
495 void CYMessage::Output(std::ostream
&out
, bool replace
) const {
497 next_
->Output(out
, replace
);
498 out
<< "$cyn=new Selector(\"";
499 for (CYMessageParameter
*parameter(parameter_
); parameter
!= NULL
; parameter
= parameter
->next_
)
500 if (parameter
->tag_
!= NULL
) {
501 out
<< *parameter
->tag_
;
502 if (parameter
->name_
!= NULL
)
506 out
<< "$cyt=$cyn.type($cy" << (instance_
? 's' : 'p') << ");";
507 out
<< "class_" << (replace
? "replace" : "add") << "Method($cy" << (instance_
? 'c' : 'm') << ",$cyn,";
508 out
<< "new Functor(function(self,_cmd";
509 for (CYMessageParameter
*parameter(parameter_
); parameter
!= NULL
; parameter
= parameter
->next_
)
510 if (parameter
->name_
!= NULL
)
511 out
<< ',' << *parameter
->name_
;
512 out
<< "){return function(){";
515 out
<< "}.call(self);},$cyt),$cyt);";
518 void CYNew::Output(std::ostream
&out
, CYFlags flags
) const {
519 if ((flags
& CYNoLeader
) != 0)
522 constructor_
->Output(out
, Precedence(), CYCenter(flags
) | CYNoLeader
);
524 if (arguments_
!= NULL
)
525 arguments_
->Output(out
);
529 void CYNull::Output(std::ostream
&out
, CYFlags flags
) const {
530 if ((flags
& CYNoLeader
) != 0)
533 if ((flags
& CYNoTrailer
) != 0)
537 void CYNumber::Output(std::ostream
&out
, CYFlags flags
) const {
538 double value(Value());
539 if ((flags
& CYNoLeader
) != 0 || value
< 0 && (flags
& CYNoHyphen
) != 0)
541 // XXX: decide on correct precision
542 out
<< std::setprecision(9) << value
;
543 if ((flags
& CYNoTrailer
) != 0)
547 void CYNumber::PropertyName(std::ostream
&out
) const {
551 void CYObject::Output(std::ostream
&out
, CYFlags flags
) const {
552 bool protect((flags
& CYNoBrace
) != 0);
556 if (property_
!= NULL
)
557 property_
->Output(out
);
563 void CYPostfix::Output(std::ostream
&out
, CYFlags flags
) const {
564 lhs_
->Output(out
, Precedence(), CYLeft(flags
));
568 void CYPrefix::Output(std::ostream
&out
, CYFlags flags
) const {
569 const char *name(Operator());
570 bool alphabetic(Alphabetic());
571 if (alphabetic
&& (flags
& CYNoLeader
) != 0 || name
[0] == '-' && (flags
& CYNoHyphen
) != 0)
574 CYFlags
right(CYRight(flags
));
577 rhs_
->Output(out
, Precedence(), right
);
580 void CYProperty::Output(std::ostream
&out
) const {
581 name_
->PropertyName(out
);
583 value_
->Output(out
, CYPA
, CYNoFlags
);
590 void CYReturn::Output(std::ostream
&out
) const {
593 value_
->Output(out
, CYNoLeader
);
597 void CYSelector::Output(std::ostream
&out
, CYFlags flags
) const {
598 if ((flags
& CYNoLeader
) != 0)
600 out
<< "new Selector(\"";
606 void CYSelectorPart::Output(std::ostream
&out
) const {
615 void CYSend::Output(std::ostream
&out
, CYFlags flags
) const {
616 if ((flags
& CYNoLeader
) != 0)
618 out
<< "objc_msgSend(";
619 self_
->Output(out
, CYPA
, CYNoFlags
);
621 std::ostringstream name
;
622 for (CYArgument
*argument(arguments_
); argument
!= NULL
; argument
= argument
->next_
)
623 if (argument
->name_
!= NULL
) {
624 name
<< *argument
->name_
;
625 if (argument
->value_
!= NULL
)
628 out
<< reinterpret_cast<void *>(sel_registerName(name
.str().c_str()));
629 for (CYArgument
*argument(arguments_
); argument
!= NULL
; argument
= argument
->next_
)
630 if (argument
->value_
!= NULL
) {
632 argument
->value_
->Output(out
, CYPA
, CYNoFlags
);
637 void CYSource::Show(std::ostream
&out
) const {
638 for (const CYSource
*next(this); next
!= NULL
; next
= next
->next_
)
642 void CYSource::Output(std::ostream
&out
, bool block
) const {
643 if (!block
&& !IsBlock())
652 void CYSource::Output_(std::ostream
&out
) const {
656 void CYStatement::Output_(std::ostream
&out
) const {
657 for (CYLabel
*label(labels_
); label
!= NULL
; label
= label
->next_
)
658 out
<< *label
->name_
<< ':';
662 void CYString::Output(std::ostream
&out
, CYFlags flags
) const {
663 unsigned quot(0), apos(0);
664 for (const char *value(value_
), *end(value_
+ size_
); value
!= end
; ++value
)
667 else if (*value
== '\'')
670 bool single(quot
> apos
);
672 out
<< (single
? '\'' : '"');
673 for (const char *value(value_
), *end(value_
+ size_
); value
!= end
; ++value
)
675 case '\\': out
<< "\\\\"; break;
676 case '\b': out
<< "\\b"; break;
677 case '\f': out
<< "\\f"; break;
678 case '\n': out
<< "\\n"; break;
679 case '\r': out
<< "\\r"; break;
680 case '\t': out
<< "\\t"; break;
681 case '\v': out
<< "\\v"; break;
696 if (*value
< 0x20 || *value
>= 0x7f)
697 out
<< "\\x" << std::setbase(16) << std::setw(2) << std::setfill('0') << unsigned(*value
);
701 out
<< (single
? '\'' : '"');
704 void CYString::PropertyName(std::ostream
&out
) const {
705 if (const char *word
= Word())
711 void CYSwitch::Output(std::ostream
&out
) const {
713 value_
->Output(out
, CYNoFlags
);
715 if (clauses_
!= NULL
)
720 void CYThis::Output(std::ostream
&out
, CYFlags flags
) const {
721 if ((flags
& CYNoLeader
) != 0)
724 if ((flags
& CYNoTrailer
) != 0)
728 void CYThrow::Output(std::ostream
&out
) const {
731 value_
->Output(out
, CYNoLeader
);
735 void CYTry::Output(std::ostream
&out
) const {
737 try_
->Output(out
, true);
740 if (finally_
!= NULL
) {
742 finally_
->Output(out
, true);
746 void CYVariable::Output(std::ostream
&out
, CYFlags flags
) const {
747 if ((flags
& CYNoLeader
) != 0)
750 if ((flags
& CYNoTrailer
) != 0)
754 void CYWhile::Output(std::ostream
&out
) const {
756 test_
->Output(out
, CYNoFlags
);
758 code_
->Output(out
, false);
761 void CYWith::Output(std::ostream
&out
) const {
763 scope_
->Output(out
, CYNoFlags
);
765 code_
->Output(out
, false);
768 void CYWord::ClassName(std::ostream
&out
, bool object
) const {
770 out
<< "objc_getClass(";
771 out
<< '"' << Value() << '"';
776 void CYWord::Output(std::ostream
&out
) const {
780 void CYWord::PropertyName(std::ostream
&out
) const {