blob: e8c14d259287792f54ba4e66348990c071b707d7 [file] [log] [blame]
Ted Kremenek16c440a2010-01-15 20:35:54 +00001//===- CXCursor.cpp - Routines for manipulating CXCursors -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Douglas Gregor2e331b92010-01-16 14:00:32 +000010// This file defines routines for manipulating CXCursors. It should be the
11// only file that has internal knowledge of the encoding of the data in
12// CXCursor.
Ted Kremenek16c440a2010-01-15 20:35:54 +000013//
14//===----------------------------------------------------------------------===//
15
16#include "CXCursor.h"
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +000017#include "clang/Frontend/ASTUnit.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000018#include "clang/AST/Decl.h"
Douglas Gregor69319002010-08-31 23:48:11 +000019#include "clang/AST/DeclCXX.h"
Douglas Gregor283cae32010-01-15 21:56:13 +000020#include "clang/AST/DeclObjC.h"
21#include "clang/AST/Expr.h"
Ted Kremenekedc8aa62010-01-16 00:36:30 +000022#include "llvm/Support/ErrorHandling.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000023
24using namespace clang;
25
Douglas Gregor5bfb8c12010-01-20 23:34:41 +000026CXCursor cxcursor::MakeCXCursorInvalid(CXCursorKind K) {
27 assert(K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid);
28 CXCursor C = { K, { 0, 0, 0 } };
29 return C;
Ted Kremenek16c440a2010-01-15 20:35:54 +000030}
31
Ted Kremeneke77f4432010-02-18 03:09:07 +000032static CXCursorKind GetCursorKind(const Attr *A) {
33 assert(A && "Invalid arguments!");
34 switch (A->getKind()) {
35 default: break;
Sean Hunt387475d2010-06-16 23:43:53 +000036 case attr::IBAction: return CXCursor_IBActionAttr;
37 case attr::IBOutlet: return CXCursor_IBOutletAttr;
38 case attr::IBOutletCollection: return CXCursor_IBOutletCollectionAttr;
Ted Kremeneke77f4432010-02-18 03:09:07 +000039 }
40
41 return CXCursor_UnexposedAttr;
42}
43
44CXCursor cxcursor::MakeCXCursor(const Attr *A, Decl *Parent, ASTUnit *TU) {
45 assert(A && Parent && TU && "Invalid arguments!");
46 CXCursor C = { GetCursorKind(A), { Parent, (void*)A, TU } };
47 return C;
48}
49
Douglas Gregorb2cd4872010-01-20 23:57:43 +000050CXCursor cxcursor::MakeCXCursor(Decl *D, ASTUnit *TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +000051 assert(D && TU && "Invalid arguments!");
Douglas Gregore8d7beb2010-09-03 23:30:36 +000052 CXCursor C = { getCursorKindForDecl(D), { D, 0, TU } };
Douglas Gregor5bfb8c12010-01-20 23:34:41 +000053 return C;
Ted Kremenekedc8aa62010-01-16 00:36:30 +000054}
55
Douglas Gregorb2cd4872010-01-20 23:57:43 +000056CXCursor cxcursor::MakeCXCursor(Stmt *S, Decl *Parent, ASTUnit *TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +000057 assert(S && TU && "Invalid arguments!");
Douglas Gregor97b98722010-01-19 23:20:36 +000058 CXCursorKind K = CXCursor_NotImplemented;
59
60 switch (S->getStmtClass()) {
61 case Stmt::NoStmtClass:
62 break;
63
64 case Stmt::NullStmtClass:
65 case Stmt::CompoundStmtClass:
66 case Stmt::CaseStmtClass:
67 case Stmt::DefaultStmtClass:
Douglas Gregor97b98722010-01-19 23:20:36 +000068 case Stmt::IfStmtClass:
69 case Stmt::SwitchStmtClass:
70 case Stmt::WhileStmtClass:
71 case Stmt::DoStmtClass:
72 case Stmt::ForStmtClass:
73 case Stmt::GotoStmtClass:
74 case Stmt::IndirectGotoStmtClass:
75 case Stmt::ContinueStmtClass:
76 case Stmt::BreakStmtClass:
77 case Stmt::ReturnStmtClass:
78 case Stmt::DeclStmtClass:
79 case Stmt::SwitchCaseClass:
80 case Stmt::AsmStmtClass:
81 case Stmt::ObjCAtTryStmtClass:
82 case Stmt::ObjCAtCatchStmtClass:
83 case Stmt::ObjCAtFinallyStmtClass:
84 case Stmt::ObjCAtThrowStmtClass:
85 case Stmt::ObjCAtSynchronizedStmtClass:
86 case Stmt::ObjCForCollectionStmtClass:
87 case Stmt::CXXCatchStmtClass:
88 case Stmt::CXXTryStmtClass:
89 K = CXCursor_UnexposedStmt;
90 break;
91
Douglas Gregor36897b02010-09-10 00:22:18 +000092 case Stmt::LabelStmtClass:
93 K = CXCursor_LabelStmt;
94 break;
95
Douglas Gregor97b98722010-01-19 23:20:36 +000096 case Stmt::PredefinedExprClass:
97 case Stmt::IntegerLiteralClass:
98 case Stmt::FloatingLiteralClass:
99 case Stmt::ImaginaryLiteralClass:
100 case Stmt::StringLiteralClass:
101 case Stmt::CharacterLiteralClass:
102 case Stmt::ParenExprClass:
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000103 case Stmt::UnaryOperatorClass:
104 case Stmt::OffsetOfExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000105 case Stmt::SizeOfAlignOfExprClass:
106 case Stmt::ArraySubscriptExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000107 case Stmt::BinaryOperatorClass:
108 case Stmt::CompoundAssignOperatorClass:
109 case Stmt::ConditionalOperatorClass:
110 case Stmt::ImplicitCastExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000111 case Stmt::CStyleCastExprClass:
112 case Stmt::CompoundLiteralExprClass:
113 case Stmt::ExtVectorElementExprClass:
114 case Stmt::InitListExprClass:
115 case Stmt::DesignatedInitExprClass:
116 case Stmt::ImplicitValueInitExprClass:
117 case Stmt::ParenListExprClass:
118 case Stmt::VAArgExprClass:
119 case Stmt::AddrLabelExprClass:
120 case Stmt::StmtExprClass:
121 case Stmt::TypesCompatibleExprClass:
122 case Stmt::ChooseExprClass:
123 case Stmt::GNUNullExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000124 case Stmt::CXXStaticCastExprClass:
125 case Stmt::CXXDynamicCastExprClass:
126 case Stmt::CXXReinterpretCastExprClass:
127 case Stmt::CXXConstCastExprClass:
128 case Stmt::CXXFunctionalCastExprClass:
129 case Stmt::CXXTypeidExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +0000130 case Stmt::CXXUuidofExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000131 case Stmt::CXXBoolLiteralExprClass:
132 case Stmt::CXXNullPtrLiteralExprClass:
133 case Stmt::CXXThisExprClass:
134 case Stmt::CXXThrowExprClass:
135 case Stmt::CXXDefaultArgExprClass:
Douglas Gregored8abf12010-07-08 06:14:04 +0000136 case Stmt::CXXScalarValueInitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000137 case Stmt::CXXNewExprClass:
138 case Stmt::CXXDeleteExprClass:
139 case Stmt::CXXPseudoDestructorExprClass:
140 case Stmt::UnresolvedLookupExprClass:
141 case Stmt::UnaryTypeTraitExprClass:
142 case Stmt::DependentScopeDeclRefExprClass:
143 case Stmt::CXXBindTemporaryExprClass:
144 case Stmt::CXXExprWithTemporariesClass:
145 case Stmt::CXXUnresolvedConstructExprClass:
146 case Stmt::CXXDependentScopeMemberExprClass:
147 case Stmt::UnresolvedMemberExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +0000148 case Stmt::CXXNoexceptExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000149 case Stmt::ObjCStringLiteralClass:
150 case Stmt::ObjCEncodeExprClass:
151 case Stmt::ObjCSelectorExprClass:
152 case Stmt::ObjCProtocolExprClass:
153 case Stmt::ObjCImplicitSetterGetterRefExprClass:
154 case Stmt::ObjCSuperExprClass:
155 case Stmt::ObjCIsaExprClass:
156 case Stmt::ShuffleVectorExprClass:
157 case Stmt::BlockExprClass:
158 K = CXCursor_UnexposedExpr;
159 break;
Douglas Gregor36897b02010-09-10 00:22:18 +0000160
Douglas Gregor97b98722010-01-19 23:20:36 +0000161 case Stmt::DeclRefExprClass:
162 case Stmt::BlockDeclRefExprClass:
163 // FIXME: UnresolvedLookupExpr?
164 // FIXME: DependentScopeDeclRefExpr?
165 K = CXCursor_DeclRefExpr;
166 break;
167
168 case Stmt::MemberExprClass:
169 case Stmt::ObjCIvarRefExprClass:
170 case Stmt::ObjCPropertyRefExprClass:
171 // FIXME: UnresolvedMemberExpr?
172 // FIXME: CXXDependentScopeMemberExpr?
173 K = CXCursor_MemberRefExpr;
174 break;
175
176 case Stmt::CallExprClass:
177 case Stmt::CXXOperatorCallExprClass:
178 case Stmt::CXXMemberCallExprClass:
179 case Stmt::CXXConstructExprClass:
180 case Stmt::CXXTemporaryObjectExprClass:
181 // FIXME: CXXUnresolvedConstructExpr
182 // FIXME: ObjCImplicitSetterGetterRefExpr?
183 K = CXCursor_CallExpr;
184 break;
185
186 case Stmt::ObjCMessageExprClass:
187 K = CXCursor_ObjCMessageExpr;
188 break;
189 }
190
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000191 CXCursor C = { K, { Parent, S, TU } };
Douglas Gregor97b98722010-01-19 23:20:36 +0000192 return C;
193}
194
Douglas Gregor2e331b92010-01-16 14:00:32 +0000195CXCursor cxcursor::MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000196 SourceLocation Loc,
197 ASTUnit *TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000198 assert(Super && TU && "Invalid arguments!");
Douglas Gregor2e331b92010-01-16 14:00:32 +0000199 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000200 CXCursor C = { CXCursor_ObjCSuperClassRef, { Super, RawLoc, TU } };
Douglas Gregor2e331b92010-01-16 14:00:32 +0000201 return C;
202}
203
204std::pair<ObjCInterfaceDecl *, SourceLocation>
205cxcursor::getCursorObjCSuperClassRef(CXCursor C) {
206 assert(C.kind == CXCursor_ObjCSuperClassRef);
207 return std::make_pair(static_cast<ObjCInterfaceDecl *>(C.data[0]),
208 SourceLocation::getFromRawEncoding(
209 reinterpret_cast<uintptr_t>(C.data[1])));
210}
211
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000212CXCursor cxcursor::MakeCursorObjCProtocolRef(ObjCProtocolDecl *Super,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000213 SourceLocation Loc,
214 ASTUnit *TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000215 assert(Super && TU && "Invalid arguments!");
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000216 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000217 CXCursor C = { CXCursor_ObjCProtocolRef, { Super, RawLoc, TU } };
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000218 return C;
219}
220
221std::pair<ObjCProtocolDecl *, SourceLocation>
222cxcursor::getCursorObjCProtocolRef(CXCursor C) {
223 assert(C.kind == CXCursor_ObjCProtocolRef);
224 return std::make_pair(static_cast<ObjCProtocolDecl *>(C.data[0]),
225 SourceLocation::getFromRawEncoding(
226 reinterpret_cast<uintptr_t>(C.data[1])));
227}
228
Douglas Gregor1adb0822010-01-16 17:14:40 +0000229CXCursor cxcursor::MakeCursorObjCClassRef(ObjCInterfaceDecl *Class,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000230 SourceLocation Loc,
231 ASTUnit *TU) {
Ted Kremenekebfa3392010-03-19 20:39:03 +0000232 // 'Class' can be null for invalid code.
233 if (!Class)
234 return MakeCXCursorInvalid(CXCursor_InvalidCode);
235 assert(TU && "Invalid arguments!");
Douglas Gregor1adb0822010-01-16 17:14:40 +0000236 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000237 CXCursor C = { CXCursor_ObjCClassRef, { Class, RawLoc, TU } };
Douglas Gregor1adb0822010-01-16 17:14:40 +0000238 return C;
239}
240
241std::pair<ObjCInterfaceDecl *, SourceLocation>
242cxcursor::getCursorObjCClassRef(CXCursor C) {
243 assert(C.kind == CXCursor_ObjCClassRef);
244 return std::make_pair(static_cast<ObjCInterfaceDecl *>(C.data[0]),
245 SourceLocation::getFromRawEncoding(
246 reinterpret_cast<uintptr_t>(C.data[1])));
247}
248
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000249CXCursor cxcursor::MakeCursorTypeRef(TypeDecl *Type, SourceLocation Loc,
250 ASTUnit *TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000251 assert(Type && TU && "Invalid arguments!");
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000252 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
253 CXCursor C = { CXCursor_TypeRef, { Type, RawLoc, TU } };
254 return C;
255}
256
257std::pair<TypeDecl *, SourceLocation>
258cxcursor::getCursorTypeRef(CXCursor C) {
259 assert(C.kind == CXCursor_TypeRef);
260 return std::make_pair(static_cast<TypeDecl *>(C.data[0]),
261 SourceLocation::getFromRawEncoding(
262 reinterpret_cast<uintptr_t>(C.data[1])));
263}
264
Douglas Gregor0b36e612010-08-31 20:37:03 +0000265CXCursor cxcursor::MakeCursorTemplateRef(TemplateDecl *Template,
266 SourceLocation Loc, ASTUnit *TU) {
267 assert(Template && TU && "Invalid arguments!");
268 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
269 CXCursor C = { CXCursor_TemplateRef, { Template, RawLoc, TU } };
270 return C;
271}
272
273std::pair<TemplateDecl *, SourceLocation>
274cxcursor::getCursorTemplateRef(CXCursor C) {
275 assert(C.kind == CXCursor_TemplateRef);
276 return std::make_pair(static_cast<TemplateDecl *>(C.data[0]),
277 SourceLocation::getFromRawEncoding(
278 reinterpret_cast<uintptr_t>(C.data[1])));
279}
280
Douglas Gregor69319002010-08-31 23:48:11 +0000281CXCursor cxcursor::MakeCursorNamespaceRef(NamedDecl *NS, SourceLocation Loc,
282 ASTUnit *TU) {
283
284 assert(NS && (isa<NamespaceDecl>(NS) || isa<NamespaceAliasDecl>(NS)) && TU &&
285 "Invalid arguments!");
286 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
287 CXCursor C = { CXCursor_NamespaceRef, { NS, RawLoc, TU } };
288 return C;
289}
290
291std::pair<NamedDecl *, SourceLocation>
292cxcursor::getCursorNamespaceRef(CXCursor C) {
293 assert(C.kind == CXCursor_NamespaceRef);
294 return std::make_pair(static_cast<NamedDecl *>(C.data[0]),
295 SourceLocation::getFromRawEncoding(
296 reinterpret_cast<uintptr_t>(C.data[1])));
297}
298
Douglas Gregora67e03f2010-09-09 21:42:20 +0000299CXCursor cxcursor::MakeCursorMemberRef(FieldDecl *Field, SourceLocation Loc,
300 ASTUnit *TU) {
301
302 assert(Field && TU && "Invalid arguments!");
303 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
304 CXCursor C = { CXCursor_MemberRef, { Field, RawLoc, TU } };
305 return C;
306}
307
308std::pair<FieldDecl *, SourceLocation>
309cxcursor::getCursorMemberRef(CXCursor C) {
310 assert(C.kind == CXCursor_MemberRef);
311 return std::make_pair(static_cast<FieldDecl *>(C.data[0]),
312 SourceLocation::getFromRawEncoding(
313 reinterpret_cast<uintptr_t>(C.data[1])));
314}
315
Ted Kremenek3064ef92010-08-27 21:34:58 +0000316CXCursor cxcursor::MakeCursorCXXBaseSpecifier(CXXBaseSpecifier *B, ASTUnit *TU){
317 CXCursor C = { CXCursor_CXXBaseSpecifier, { B, 0, TU } };
318 return C;
319}
320
321CXXBaseSpecifier *cxcursor::getCursorCXXBaseSpecifier(CXCursor C) {
322 assert(C.kind == CXCursor_CXXBaseSpecifier);
323 return static_cast<CXXBaseSpecifier*>(C.data[0]);
324}
325
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +0000326CXCursor cxcursor::MakePreprocessingDirectiveCursor(SourceRange Range,
327 ASTUnit *TU) {
328 CXCursor C = { CXCursor_PreprocessingDirective,
329 { reinterpret_cast<void *>(Range.getBegin().getRawEncoding()),
330 reinterpret_cast<void *>(Range.getEnd().getRawEncoding()),
331 TU }
332 };
333 return C;
334}
335
336SourceRange cxcursor::getCursorPreprocessingDirective(CXCursor C) {
337 assert(C.kind == CXCursor_PreprocessingDirective);
338 return SourceRange(SourceLocation::getFromRawEncoding(
339 reinterpret_cast<uintptr_t> (C.data[0])),
340 SourceLocation::getFromRawEncoding(
341 reinterpret_cast<uintptr_t> (C.data[1])));
342}
343
Douglas Gregor572feb22010-03-18 18:04:21 +0000344CXCursor cxcursor::MakeMacroDefinitionCursor(MacroDefinition *MI, ASTUnit *TU) {
345 CXCursor C = { CXCursor_MacroDefinition, { MI, 0, TU } };
346 return C;
347}
348
349MacroDefinition *cxcursor::getCursorMacroDefinition(CXCursor C) {
350 assert(C.kind == CXCursor_MacroDefinition);
351 return static_cast<MacroDefinition *>(C.data[0]);
352}
353
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000354CXCursor cxcursor::MakeMacroInstantiationCursor(MacroInstantiation *MI,
Douglas Gregor48072312010-03-18 15:23:44 +0000355 ASTUnit *TU) {
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000356 CXCursor C = { CXCursor_MacroInstantiation, { MI, 0, TU } };
Douglas Gregor48072312010-03-18 15:23:44 +0000357 return C;
358}
359
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000360MacroInstantiation *cxcursor::getCursorMacroInstantiation(CXCursor C) {
Douglas Gregor48072312010-03-18 15:23:44 +0000361 assert(C.kind == CXCursor_MacroInstantiation);
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000362 return static_cast<MacroInstantiation *>(C.data[0]);
Douglas Gregor48072312010-03-18 15:23:44 +0000363}
364
Douglas Gregor36897b02010-09-10 00:22:18 +0000365CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
366 ASTUnit *TU) {
367
368 assert(Label && TU && "Invalid arguments!");
369 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
370 CXCursor C = { CXCursor_LabelRef, { Label, RawLoc, TU } };
371 return C;
372}
373
374std::pair<LabelStmt*, SourceLocation>
375cxcursor::getCursorLabelRef(CXCursor C) {
376 assert(C.kind == CXCursor_LabelRef);
377 return std::make_pair(static_cast<LabelStmt *>(C.data[0]),
378 SourceLocation::getFromRawEncoding(
379 reinterpret_cast<uintptr_t>(C.data[1])));
380}
381
Douglas Gregor283cae32010-01-15 21:56:13 +0000382Decl *cxcursor::getCursorDecl(CXCursor Cursor) {
383 return (Decl *)Cursor.data[0];
384}
385
386Expr *cxcursor::getCursorExpr(CXCursor Cursor) {
387 return dyn_cast_or_null<Expr>(getCursorStmt(Cursor));
388}
389
390Stmt *cxcursor::getCursorStmt(CXCursor Cursor) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000391 if (Cursor.kind == CXCursor_ObjCSuperClassRef ||
Douglas Gregor1adb0822010-01-16 17:14:40 +0000392 Cursor.kind == CXCursor_ObjCProtocolRef ||
393 Cursor.kind == CXCursor_ObjCClassRef)
Douglas Gregor2e331b92010-01-16 14:00:32 +0000394 return 0;
395
Douglas Gregor283cae32010-01-15 21:56:13 +0000396 return (Stmt *)Cursor.data[1];
397}
398
Ted Kremenek95f33552010-08-26 01:42:22 +0000399Attr *cxcursor::getCursorAttr(CXCursor Cursor) {
400 return (Attr *)Cursor.data[1];
401}
402
Douglas Gregorf46034a2010-01-18 23:41:10 +0000403ASTContext &cxcursor::getCursorContext(CXCursor Cursor) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000404 return getCursorASTUnit(Cursor)->getASTContext();
405}
Douglas Gregorf46034a2010-01-18 23:41:10 +0000406
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000407ASTUnit *cxcursor::getCursorASTUnit(CXCursor Cursor) {
408 return static_cast<ASTUnit *>(Cursor.data[2]);
Douglas Gregor283cae32010-01-15 21:56:13 +0000409}
410
Douglas Gregor283cae32010-01-15 21:56:13 +0000411bool cxcursor::operator==(CXCursor X, CXCursor Y) {
412 return X.kind == Y.kind && X.data[0] == Y.data[0] && X.data[1] == Y.data[1] &&
413 X.data[2] == Y.data[2];
Douglas Gregor2e331b92010-01-16 14:00:32 +0000414}