]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/parse/token.rs
Auto merge of #24865 - bluss:range-size, r=alexcrichton
[rust.git] / src / libsyntax / parse / token.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 pub use self::BinOpToken::*;
12 pub use self::Nonterminal::*;
13 pub use self::DelimToken::*;
14 pub use self::IdentStyle::*;
15 pub use self::Lit::*;
16 pub use self::Token::*;
17
18 use ast;
19 use ext::mtwt;
20 use ptr::P;
21 use util::interner::{RcStr, StrInterner};
22 use util::interner;
23
24 use serialize::{Decodable, Decoder, Encodable, Encoder};
25 use std::fmt;
26 use std::ops::Deref;
27 use std::rc::Rc;
28
29 #[allow(non_camel_case_types)]
30 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash, Debug, Copy)]
31 pub enum BinOpToken {
32     Plus,
33     Minus,
34     Star,
35     Slash,
36     Percent,
37     Caret,
38     And,
39     Or,
40     Shl,
41     Shr,
42 }
43
44 /// A delimiter token
45 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash, Debug, Copy)]
46 pub enum DelimToken {
47     /// A round parenthesis: `(` or `)`
48     Paren,
49     /// A square bracket: `[` or `]`
50     Bracket,
51     /// A curly brace: `{` or `}`
52     Brace,
53 }
54
55 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash, Debug, Copy)]
56 pub enum IdentStyle {
57     /// `::` follows the identifier with no whitespace in-between.
58     ModName,
59     Plain,
60 }
61
62 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash, Debug, Copy)]
63 pub enum SpecialMacroVar {
64     /// `$crate` will be filled in with the name of the crate a macro was
65     /// imported from, if any.
66     CrateMacroVar,
67 }
68
69 impl SpecialMacroVar {
70     pub fn as_str(self) -> &'static str {
71         match self {
72             SpecialMacroVar::CrateMacroVar => "crate",
73         }
74     }
75 }
76
77 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash, Debug, Copy)]
78 pub enum Lit {
79     Byte(ast::Name),
80     Char(ast::Name),
81     Integer(ast::Name),
82     Float(ast::Name),
83     Str_(ast::Name),
84     StrRaw(ast::Name, usize), /* raw str delimited by n hash symbols */
85     Binary(ast::Name),
86     BinaryRaw(ast::Name, usize), /* raw binary str delimited by n hash symbols */
87 }
88
89 impl Lit {
90     pub fn short_name(&self) -> &'static str {
91         match *self {
92             Byte(_) => "byte",
93             Char(_) => "char",
94             Integer(_) => "integer",
95             Float(_) => "float",
96             Str_(_) | StrRaw(..) => "str",
97             Binary(_) | BinaryRaw(..) => "binary str"
98         }
99     }
100 }
101
102 #[allow(non_camel_case_types)]
103 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash, Debug)]
104 pub enum Token {
105     /* Expression-operator symbols. */
106     Eq,
107     Lt,
108     Le,
109     EqEq,
110     Ne,
111     Ge,
112     Gt,
113     AndAnd,
114     OrOr,
115     Not,
116     Tilde,
117     BinOp(BinOpToken),
118     BinOpEq(BinOpToken),
119
120     /* Structural symbols */
121     At,
122     Dot,
123     DotDot,
124     DotDotDot,
125     Comma,
126     Semi,
127     Colon,
128     ModSep,
129     RArrow,
130     LArrow,
131     FatArrow,
132     Pound,
133     Dollar,
134     Question,
135     /// An opening delimiter, eg. `{`
136     OpenDelim(DelimToken),
137     /// A closing delimiter, eg. `}`
138     CloseDelim(DelimToken),
139
140     /* Literals */
141     Literal(Lit, Option<ast::Name>),
142
143     /* Name components */
144     Ident(ast::Ident, IdentStyle),
145     Underscore,
146     Lifetime(ast::Ident),
147
148     /* For interpolation */
149     Interpolated(Nonterminal),
150     // Can be expanded into several tokens.
151     /// Doc comment
152     DocComment(ast::Name),
153     // In left-hand-sides of MBE macros:
154     /// Parse a nonterminal (name to bind, name of NT, styles of their idents)
155     MatchNt(ast::Ident, ast::Ident, IdentStyle, IdentStyle),
156     // In right-hand-sides of MBE macros:
157     /// A syntactic variable that will be filled in by macro expansion.
158     SubstNt(ast::Ident, IdentStyle),
159     /// A macro variable with special meaning.
160     SpecialVarNt(SpecialMacroVar),
161
162     // Junk. These carry no data because we don't really care about the data
163     // they *would* carry, and don't really want to allocate a new ident for
164     // them. Instead, users could extract that from the associated span.
165
166     /// Whitespace
167     Whitespace,
168     /// Comment
169     Comment,
170     Shebang(ast::Name),
171
172     Eof,
173 }
174
175 impl Token {
176     /// Returns `true` if the token starts with '>'.
177     pub fn is_like_gt(&self) -> bool {
178         match *self {
179             BinOp(Shr) | BinOpEq(Shr) | Gt | Ge => true,
180             _ => false,
181         }
182     }
183
184     /// Returns `true` if the token can appear at the start of an expression.
185     pub fn can_begin_expr(&self) -> bool {
186         match *self {
187             OpenDelim(_)                => true,
188             Ident(_, _)                 => true,
189             Underscore                  => true,
190             Tilde                       => true,
191             Literal(_, _)               => true,
192             Not                         => true,
193             BinOp(Minus)                => true,
194             BinOp(Star)                 => true,
195             BinOp(And)                  => true,
196             BinOp(Or)                   => true, // in lambda syntax
197             OrOr                        => true, // in lambda syntax
198             AndAnd                      => true, // double borrow
199             DotDot                      => true, // range notation
200             ModSep                      => true,
201             Interpolated(NtExpr(..))    => true,
202             Interpolated(NtIdent(..))   => true,
203             Interpolated(NtBlock(..))   => true,
204             Interpolated(NtPath(..))    => true,
205             _                           => false,
206         }
207     }
208
209     /// Returns `true` if the token is any literal
210     pub fn is_lit(&self) -> bool {
211         match *self {
212             Literal(_, _) => true,
213             _          => false,
214         }
215     }
216
217     /// Returns `true` if the token is an identifier.
218     pub fn is_ident(&self) -> bool {
219         match *self {
220             Ident(_, _) => true,
221             _           => false,
222         }
223     }
224
225     /// Returns `true` if the token is an interpolated path.
226     pub fn is_path(&self) -> bool {
227         match *self {
228             Interpolated(NtPath(..))    => true,
229             _                           => false,
230         }
231     }
232
233     /// Returns `true` if the token is a path that is not followed by a `::`
234     /// token.
235     #[allow(non_upper_case_globals)]
236     pub fn is_plain_ident(&self) -> bool {
237         match *self {
238             Ident(_, Plain) => true,
239             _               => false,
240         }
241     }
242
243     /// Returns `true` if the token is a lifetime.
244     pub fn is_lifetime(&self) -> bool {
245         match *self {
246             Lifetime(..) => true,
247             _            => false,
248         }
249     }
250
251     /// Returns `true` if the token is either the `mut` or `const` keyword.
252     pub fn is_mutability(&self) -> bool {
253         self.is_keyword(keywords::Mut) ||
254         self.is_keyword(keywords::Const)
255     }
256
257     /// Maps a token to its corresponding binary operator.
258     pub fn to_binop(&self) -> Option<ast::BinOp_> {
259         match *self {
260             BinOp(Star)     => Some(ast::BiMul),
261             BinOp(Slash)    => Some(ast::BiDiv),
262             BinOp(Percent)  => Some(ast::BiRem),
263             BinOp(Plus)     => Some(ast::BiAdd),
264             BinOp(Minus)    => Some(ast::BiSub),
265             BinOp(Shl)      => Some(ast::BiShl),
266             BinOp(Shr)      => Some(ast::BiShr),
267             BinOp(And)      => Some(ast::BiBitAnd),
268             BinOp(Caret)    => Some(ast::BiBitXor),
269             BinOp(Or)       => Some(ast::BiBitOr),
270             Lt              => Some(ast::BiLt),
271             Le              => Some(ast::BiLe),
272             Ge              => Some(ast::BiGe),
273             Gt              => Some(ast::BiGt),
274             EqEq            => Some(ast::BiEq),
275             Ne              => Some(ast::BiNe),
276             AndAnd          => Some(ast::BiAnd),
277             OrOr            => Some(ast::BiOr),
278             _               => None,
279         }
280     }
281
282     /// Returns `true` if the token is a given keyword, `kw`.
283     #[allow(non_upper_case_globals)]
284     pub fn is_keyword(&self, kw: keywords::Keyword) -> bool {
285         match *self {
286             Ident(sid, Plain) => kw.to_name() == sid.name,
287             _                      => false,
288         }
289     }
290
291     pub fn is_keyword_allow_following_colon(&self, kw: keywords::Keyword) -> bool {
292         match *self {
293             Ident(sid, _) => { kw.to_name() == sid.name }
294             _ => { false }
295         }
296     }
297
298     /// Returns `true` if the token is either a special identifier, or a strict
299     /// or reserved keyword.
300     #[allow(non_upper_case_globals)]
301     pub fn is_any_keyword(&self) -> bool {
302         match *self {
303             Ident(sid, Plain) => {
304                 let n = sid.name;
305
306                    n == SELF_KEYWORD_NAME
307                 || n == STATIC_KEYWORD_NAME
308                 || n == SUPER_KEYWORD_NAME
309                 || n == SELF_TYPE_KEYWORD_NAME
310                 || STRICT_KEYWORD_START <= n
311                 && n <= RESERVED_KEYWORD_FINAL
312             },
313             _ => false
314         }
315     }
316
317     /// Returns `true` if the token may not appear as an identifier.
318     #[allow(non_upper_case_globals)]
319     pub fn is_strict_keyword(&self) -> bool {
320         match *self {
321             Ident(sid, Plain) => {
322                 let n = sid.name;
323
324                    n == SELF_KEYWORD_NAME
325                 || n == STATIC_KEYWORD_NAME
326                 || n == SUPER_KEYWORD_NAME
327                 || n == SELF_TYPE_KEYWORD_NAME
328                 || STRICT_KEYWORD_START <= n
329                 && n <= STRICT_KEYWORD_FINAL
330             },
331             Ident(sid, ModName) => {
332                 let n = sid.name;
333
334                    n != SELF_KEYWORD_NAME
335                 && n != SUPER_KEYWORD_NAME
336                 && STRICT_KEYWORD_START <= n
337                 && n <= STRICT_KEYWORD_FINAL
338             }
339             _ => false,
340         }
341     }
342
343     /// Returns `true` if the token is a keyword that has been reserved for
344     /// possible future use.
345     #[allow(non_upper_case_globals)]
346     pub fn is_reserved_keyword(&self) -> bool {
347         match *self {
348             Ident(sid, Plain) => {
349                 let n = sid.name;
350
351                    RESERVED_KEYWORD_START <= n
352                 && n <= RESERVED_KEYWORD_FINAL
353             },
354             _ => false,
355         }
356     }
357
358     /// Hygienic identifier equality comparison.
359     ///
360     /// See `styntax::ext::mtwt`.
361     pub fn mtwt_eq(&self, other : &Token) -> bool {
362         match (self, other) {
363             (&Ident(id1,_), &Ident(id2,_)) | (&Lifetime(id1), &Lifetime(id2)) =>
364                 mtwt::resolve(id1) == mtwt::resolve(id2),
365             _ => *self == *other
366         }
367     }
368 }
369
370 #[derive(Clone, RustcEncodable, RustcDecodable, PartialEq, Eq, Hash)]
371 /// For interpolation during macro expansion.
372 pub enum Nonterminal {
373     NtItem(P<ast::Item>),
374     NtBlock(P<ast::Block>),
375     NtStmt(P<ast::Stmt>),
376     NtPat(P<ast::Pat>),
377     NtExpr(P<ast::Expr>),
378     NtTy(P<ast::Ty>),
379     NtIdent(Box<ast::Ident>, IdentStyle),
380     /// Stuff inside brackets for attributes
381     NtMeta(P<ast::MetaItem>),
382     NtPath(Box<ast::Path>),
383     NtTT(P<ast::TokenTree>), // needs P'ed to break a circularity
384     // These is not exposed to macros, but is used by quasiquote.
385     NtArm(ast::Arm),
386     NtImplItem(P<ast::ImplItem>),
387     NtTraitItem(P<ast::TraitItem>),
388 }
389
390 impl fmt::Debug for Nonterminal {
391     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
392         match *self {
393             NtItem(..) => f.pad("NtItem(..)"),
394             NtBlock(..) => f.pad("NtBlock(..)"),
395             NtStmt(..) => f.pad("NtStmt(..)"),
396             NtPat(..) => f.pad("NtPat(..)"),
397             NtExpr(..) => f.pad("NtExpr(..)"),
398             NtTy(..) => f.pad("NtTy(..)"),
399             NtIdent(..) => f.pad("NtIdent(..)"),
400             NtMeta(..) => f.pad("NtMeta(..)"),
401             NtPath(..) => f.pad("NtPath(..)"),
402             NtTT(..) => f.pad("NtTT(..)"),
403             NtArm(..) => f.pad("NtArm(..)"),
404             NtImplItem(..) => f.pad("NtImplItem(..)"),
405             NtTraitItem(..) => f.pad("NtTraitItem(..)"),
406         }
407     }
408 }
409
410
411 // Get the first "argument"
412 macro_rules! first {
413     ( $first:expr, $( $remainder:expr, )* ) => ( $first )
414 }
415
416 // Get the last "argument" (has to be done recursively to avoid phoney local ambiguity error)
417 macro_rules! last {
418     ( $first:expr, $( $remainder:expr, )+ ) => ( last!( $( $remainder, )+ ) );
419     ( $first:expr, ) => ( $first )
420 }
421
422 // In this macro, there is the requirement that the name (the number) must be monotonically
423 // increasing by one in the special identifiers, starting at 0; the same holds for the keywords,
424 // except starting from the next number instead of zero, and with the additional exception that
425 // special identifiers are *also* allowed (they are deduplicated in the important place, the
426 // interner), an exception which is demonstrated by "static" and "self".
427 macro_rules! declare_special_idents_and_keywords {(
428     // So now, in these rules, why is each definition parenthesised?
429     // Answer: otherwise we get a spurious local ambiguity bug on the "}"
430     pub mod special_idents {
431         $( ($si_name:expr, $si_static:ident, $si_str:expr); )*
432     }
433
434     pub mod keywords {
435         'strict:
436         $( ($sk_name:expr, $sk_variant:ident, $sk_str:expr); )*
437         'reserved:
438         $( ($rk_name:expr, $rk_variant:ident, $rk_str:expr); )*
439     }
440 ) => {
441     const STRICT_KEYWORD_START: ast::Name = first!($( ast::Name($sk_name), )*);
442     const STRICT_KEYWORD_FINAL: ast::Name = last!($( ast::Name($sk_name), )*);
443     const RESERVED_KEYWORD_START: ast::Name = first!($( ast::Name($rk_name), )*);
444     const RESERVED_KEYWORD_FINAL: ast::Name = last!($( ast::Name($rk_name), )*);
445
446     pub mod special_idents {
447         use ast;
448         $(
449             #[allow(non_upper_case_globals)]
450             pub const $si_static: ast::Ident = ast::Ident {
451                 name: ast::Name($si_name),
452                 ctxt: 0,
453             };
454          )*
455     }
456
457     pub mod special_names {
458         use ast;
459         $(
460             #[allow(non_upper_case_globals)]
461             pub const $si_static: ast::Name =  ast::Name($si_name);
462         )*
463     }
464
465     /// All the valid words that have meaning in the Rust language.
466     ///
467     /// Rust keywords are either 'strict' or 'reserved'.  Strict keywords may not
468     /// appear as identifiers at all. Reserved keywords are not used anywhere in
469     /// the language and may not appear as identifiers.
470     pub mod keywords {
471         pub use self::Keyword::*;
472         use ast;
473
474         #[derive(Copy, Clone, PartialEq, Eq)]
475         pub enum Keyword {
476             $( $sk_variant, )*
477             $( $rk_variant, )*
478         }
479
480         impl Keyword {
481             pub fn to_name(&self) -> ast::Name {
482                 match *self {
483                     $( $sk_variant => ast::Name($sk_name), )*
484                     $( $rk_variant => ast::Name($rk_name), )*
485                 }
486             }
487         }
488     }
489
490     fn mk_fresh_ident_interner() -> IdentInterner {
491         // The indices here must correspond to the numbers in
492         // special_idents, in Keyword to_name(), and in static
493         // constants below.
494         let mut init_vec = Vec::new();
495         $(init_vec.push($si_str);)*
496         $(init_vec.push($sk_str);)*
497         $(init_vec.push($rk_str);)*
498         interner::StrInterner::prefill(&init_vec[..])
499     }
500 }}
501
502 // If the special idents get renumbered, remember to modify these two as appropriate
503 pub const SELF_KEYWORD_NAME: ast::Name = ast::Name(SELF_KEYWORD_NAME_NUM);
504 const STATIC_KEYWORD_NAME: ast::Name = ast::Name(STATIC_KEYWORD_NAME_NUM);
505 const SUPER_KEYWORD_NAME: ast::Name = ast::Name(SUPER_KEYWORD_NAME_NUM);
506 const SELF_TYPE_KEYWORD_NAME: ast::Name = ast::Name(SELF_TYPE_KEYWORD_NAME_NUM);
507
508 pub const SELF_KEYWORD_NAME_NUM: u32 = 1;
509 const STATIC_KEYWORD_NAME_NUM: u32 = 2;
510 const SUPER_KEYWORD_NAME_NUM: u32 = 3;
511 const SELF_TYPE_KEYWORD_NAME_NUM: u32 = 10;
512
513 // NB: leaving holes in the ident table is bad! a different ident will get
514 // interned with the id from the hole, but it will be between the min and max
515 // of the reserved words, and thus tagged as "reserved".
516
517 declare_special_idents_and_keywords! {
518     pub mod special_idents {
519         // These ones are statics
520         (0,                          invalid,                "");
521         (super::SELF_KEYWORD_NAME_NUM,   self_,              "self");
522         (super::STATIC_KEYWORD_NAME_NUM, statik,             "static");
523         (super::SUPER_KEYWORD_NAME_NUM, super_,              "super");
524         (4,                          static_lifetime,        "'static");
525
526         // for matcher NTs
527         (5,                          tt,                     "tt");
528         (6,                          matchers,               "matchers");
529
530         // outside of libsyntax
531         (7,                          clownshoe_abi,          "__rust_abi");
532         (8,                          opaque,                 "<opaque>");
533         (9,                          unnamed_field,          "<unnamed_field>");
534         (super::SELF_TYPE_KEYWORD_NAME_NUM, type_self,       "Self");
535         (11,                         prelude_import,         "prelude_import");
536     }
537
538     pub mod keywords {
539         // These ones are variants of the Keyword enum
540
541         'strict:
542         (12,                         As,         "as");
543         (13,                         Break,      "break");
544         (14,                         Crate,      "crate");
545         (15,                         Else,       "else");
546         (16,                         Enum,       "enum");
547         (17,                         Extern,     "extern");
548         (18,                         False,      "false");
549         (19,                         Fn,         "fn");
550         (20,                         For,        "for");
551         (21,                         If,         "if");
552         (22,                         Impl,       "impl");
553         (23,                         In,         "in");
554         (24,                         Let,        "let");
555         (25,                         Loop,       "loop");
556         (26,                         Match,      "match");
557         (27,                         Mod,        "mod");
558         (28,                         Move,       "move");
559         (29,                         Mut,        "mut");
560         (30,                         Pub,        "pub");
561         (31,                         Ref,        "ref");
562         (32,                         Return,     "return");
563         // Static and Self are also special idents (prefill de-dupes)
564         (super::STATIC_KEYWORD_NAME_NUM, Static, "static");
565         (super::SELF_KEYWORD_NAME_NUM, SelfValue, "self");
566         (super::SELF_TYPE_KEYWORD_NAME_NUM, SelfType, "Self");
567         (33,                         Struct,     "struct");
568         (super::SUPER_KEYWORD_NAME_NUM, Super,   "super");
569         (34,                         True,       "true");
570         (35,                         Trait,      "trait");
571         (36,                         Type,       "type");
572         (37,                         Unsafe,     "unsafe");
573         (38,                         Use,        "use");
574         (39,                         Virtual,    "virtual");
575         (40,                         While,      "while");
576         (41,                         Continue,   "continue");
577         (42,                         Box,        "box");
578         (43,                         Const,      "const");
579         (44,                         Where,      "where");
580         'reserved:
581         (45,                         Proc,       "proc");
582         (46,                         Alignof,    "alignof");
583         (47,                         Become,     "become");
584         (48,                         Offsetof,   "offsetof");
585         (49,                         Priv,       "priv");
586         (50,                         Pure,       "pure");
587         (51,                         Sizeof,     "sizeof");
588         (52,                         Typeof,     "typeof");
589         (53,                         Unsized,    "unsized");
590         (54,                         Yield,      "yield");
591         (55,                         Do,         "do");
592         (56,                         Abstract,   "abstract");
593         (57,                         Final,      "final");
594         (58,                         Override,   "override");
595         (59,                         Macro,      "macro");
596     }
597 }
598
599 // looks like we can get rid of this completely...
600 pub type IdentInterner = StrInterner;
601
602 // if an interner exists in TLS, return it. Otherwise, prepare a
603 // fresh one.
604 // FIXME(eddyb) #8726 This should probably use a task-local reference.
605 pub fn get_ident_interner() -> Rc<IdentInterner> {
606     thread_local!(static KEY: Rc<::parse::token::IdentInterner> = {
607         Rc::new(mk_fresh_ident_interner())
608     });
609     KEY.with(|k| k.clone())
610 }
611
612 /// Reset the ident interner to its initial state.
613 pub fn reset_ident_interner() {
614     let interner = get_ident_interner();
615     interner.reset(mk_fresh_ident_interner());
616 }
617
618 /// Represents a string stored in the task-local interner. Because the
619 /// interner lives for the life of the task, this can be safely treated as an
620 /// immortal string, as long as it never crosses between tasks.
621 ///
622 /// FIXME(pcwalton): You must be careful about what you do in the destructors
623 /// of objects stored in TLS, because they may run after the interner is
624 /// destroyed. In particular, they must not access string contents. This can
625 /// be fixed in the future by just leaking all strings until task death
626 /// somehow.
627 #[derive(Clone, PartialEq, Hash, PartialOrd, Eq, Ord)]
628 pub struct InternedString {
629     string: RcStr,
630 }
631
632 impl InternedString {
633     #[inline]
634     pub fn new(string: &'static str) -> InternedString {
635         InternedString {
636             string: RcStr::new(string),
637         }
638     }
639
640     #[inline]
641     fn new_from_rc_str(string: RcStr) -> InternedString {
642         InternedString {
643             string: string,
644         }
645     }
646 }
647
648 impl Deref for InternedString {
649     type Target = str;
650
651     fn deref(&self) -> &str { &*self.string }
652 }
653
654 impl fmt::Debug for InternedString {
655     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
656         fmt::Debug::fmt(&self.string, f)
657     }
658 }
659
660 impl fmt::Display for InternedString {
661     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
662         fmt::Display::fmt(&self.string, f)
663     }
664 }
665
666 impl<'a> PartialEq<&'a str> for InternedString {
667     #[inline(always)]
668     fn eq(&self, other: & &'a str) -> bool {
669         PartialEq::eq(&self.string[..], *other)
670     }
671     #[inline(always)]
672     fn ne(&self, other: & &'a str) -> bool {
673         PartialEq::ne(&self.string[..], *other)
674     }
675 }
676
677 impl<'a> PartialEq<InternedString > for &'a str {
678     #[inline(always)]
679     fn eq(&self, other: &InternedString) -> bool {
680         PartialEq::eq(*self, &other.string[..])
681     }
682     #[inline(always)]
683     fn ne(&self, other: &InternedString) -> bool {
684         PartialEq::ne(*self, &other.string[..])
685     }
686 }
687
688 impl Decodable for InternedString {
689     fn decode<D: Decoder>(d: &mut D) -> Result<InternedString, D::Error> {
690         Ok(get_name(get_ident_interner().intern(&try!(d.read_str())[..])))
691     }
692 }
693
694 impl Encodable for InternedString {
695     fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
696         s.emit_str(&self.string)
697     }
698 }
699
700 /// Returns the string contents of a name, using the task-local interner.
701 #[inline]
702 pub fn get_name(name: ast::Name) -> InternedString {
703     let interner = get_ident_interner();
704     InternedString::new_from_rc_str(interner.get(name))
705 }
706
707 /// Returns the string contents of an identifier, using the task-local
708 /// interner.
709 #[inline]
710 pub fn get_ident(ident: ast::Ident) -> InternedString {
711     get_name(ident.name)
712 }
713
714 /// Interns and returns the string contents of an identifier, using the
715 /// task-local interner.
716 #[inline]
717 pub fn intern_and_get_ident(s: &str) -> InternedString {
718     get_name(intern(s))
719 }
720
721 /// Maps a string to its interned representation.
722 #[inline]
723 pub fn intern(s: &str) -> ast::Name {
724     get_ident_interner().intern(s)
725 }
726
727 /// gensym's a new usize, using the current interner.
728 #[inline]
729 pub fn gensym(s: &str) -> ast::Name {
730     get_ident_interner().gensym(s)
731 }
732
733 /// Maps a string to an identifier with an empty syntax context.
734 #[inline]
735 pub fn str_to_ident(s: &str) -> ast::Ident {
736     ast::Ident::new(intern(s))
737 }
738
739 /// Maps a string to a gensym'ed identifier.
740 #[inline]
741 pub fn gensym_ident(s: &str) -> ast::Ident {
742     ast::Ident::new(gensym(s))
743 }
744
745 // create a fresh name that maps to the same string as the old one.
746 // note that this guarantees that str_ptr_eq(ident_to_string(src),interner_get(fresh_name(src)));
747 // that is, that the new name and the old one are connected to ptr_eq strings.
748 pub fn fresh_name(src: &ast::Ident) -> ast::Name {
749     let interner = get_ident_interner();
750     interner.gensym_copy(src.name)
751     // following: debug version. Could work in final except that it's incompatible with
752     // good error messages and uses of struct names in ambiguous could-be-binding
753     // locations. Also definitely destroys the guarantee given above about ptr_eq.
754     /*let num = rand::thread_rng().gen_uint_range(0,0xffff);
755     gensym(format!("{}_{}",ident_to_string(src),num))*/
756 }
757
758 // create a fresh mark.
759 pub fn fresh_mark() -> ast::Mrk {
760     gensym("mark").usize() as u32
761 }
762
763 #[cfg(test)]
764 mod tests {
765     use super::*;
766     use ast;
767     use ext::mtwt;
768
769     fn mark_ident(id : ast::Ident, m : ast::Mrk) -> ast::Ident {
770         ast::Ident { name: id.name, ctxt:mtwt::apply_mark(m, id.ctxt) }
771     }
772
773     #[test] fn mtwt_token_eq_test() {
774         assert!(Gt.mtwt_eq(&Gt));
775         let a = str_to_ident("bac");
776         let a1 = mark_ident(a,92);
777         assert!(Ident(a, ModName).mtwt_eq(&Ident(a1, Plain)));
778     }
779 }