summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.2.374
blob: 50d3e74d2347321a30b3b9a6b592ffe449de22f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
To: vim-dev@vim.org
Subject: Patch 7.2.374
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 7.2.374
Problem:    Ruby eval() doesn't understand Vim types.
Solution:   Add the vim_to_ruby() function.  (George Gensure)
Files:	    src/eval.c, src/if_ruby.c


*** ../vim-7.2.373/src/eval.c	2010-01-19 15:51:29.000000000 +0100
--- src/eval.c	2010-02-24 15:36:40.000000000 +0100
***************
*** 5872,5878 ****
      return item1 == NULL && item2 == NULL;
  }
  
! #if defined(FEAT_PYTHON) || defined(FEAT_MZSCHEME) || defined(PROTO)
  /*
   * Return the dictitem that an entry in a hashtable points to.
   */
--- 5872,5879 ----
      return item1 == NULL && item2 == NULL;
  }
  
! #if defined(FEAT_RUBY) || defined(FEAT_PYTHON) || defined(FEAT_MZSCHEME) \
! 	|| defined(PROTO)
  /*
   * Return the dictitem that an entry in a hashtable points to.
   */
*** ../vim-7.2.373/src/if_ruby.c	2010-02-18 15:51:25.000000000 +0100
--- src/if_ruby.c	2010-02-24 15:45:15.000000000 +0100
***************
*** 660,679 ****
      return Qnil;
  }
  
  static VALUE vim_evaluate(VALUE self UNUSED, VALUE str)
  {
  #ifdef FEAT_EVAL
!     char_u *value = eval_to_string((char_u *)StringValuePtr(str), NULL, TRUE);
  
!     if (value != NULL)
      {
! 	VALUE val = rb_str_new2((char *)value);
! 	vim_free(value);
! 	return val;
      }
!     else
  #endif
- 	return Qnil;
  }
  
  static VALUE buffer_new(buf_T *buf)
--- 660,747 ----
      return Qnil;
  }
  
+ #ifdef FEAT_EVAL
+ static VALUE vim_to_ruby(typval_T *tv)
+ {
+     VALUE result = Qnil;
+ 
+     if (tv->v_type == VAR_STRING)
+     {
+         result = rb_str_new2((char *)tv->vval.v_string);
+     }
+     else if (tv->v_type == VAR_NUMBER)
+     {
+         result = INT2NUM(tv->vval.v_number);
+     }
+ # ifdef FEAT_FLOAT
+     else if (tv->v_type == VAR_FLOAT)
+     {
+         result = rb_float_new(tv->vval.v_float);
+     }
+ # endif
+     else if (tv->v_type == VAR_LIST)
+     {
+         list_T      *list = tv->vval.v_list;
+         listitem_T  *curr;
+ 
+         result = rb_ary_new();
+ 
+         if (list != NULL)
+         {
+             for (curr = list->lv_first; curr != NULL; curr = curr->li_next)
+             {
+                 rb_ary_push(result, vim_to_ruby(&curr->li_tv));
+             }
+         }
+     }
+     else if (tv->v_type == VAR_DICT)
+     {
+         result = rb_hash_new();
+ 
+         if (tv->vval.v_dict != NULL)
+         {
+             hashtab_T   *ht = &tv->vval.v_dict->dv_hashtab;
+             long_u      todo = ht->ht_used;
+             hashitem_T  *hi;
+             dictitem_T  *di;
+ 
+             for (hi = ht->ht_array; todo > 0; ++hi)
+             {
+                 if (!HASHITEM_EMPTY(hi))
+                 {
+                     --todo;
+ 
+                     di = dict_lookup(hi);
+                     rb_hash_aset(result, rb_str_new2((char *)hi->hi_key),
+ 						     vim_to_ruby(&di->di_tv));
+                 }
+             }
+         }
+     } /* else return Qnil; */
+ 
+     return result;
+ }
+ #endif
+ 
  static VALUE vim_evaluate(VALUE self UNUSED, VALUE str)
  {
  #ifdef FEAT_EVAL
!     typval_T    *tv;
!     VALUE       result;
  
!     tv = eval_expr((char_u *)StringValuePtr(str), NULL);
!     if (tv == NULL)
      {
!         return Qnil;
      }
!     result = vim_to_ruby(tv);
! 
!     free_tv(tv);
! 
!     return result;
! #else
!     return Qnil;
  #endif
  }
  
  static VALUE buffer_new(buf_T *buf)
*** ../vim-7.2.373/src/version.c	2010-02-24 15:25:13.000000000 +0100
--- src/version.c	2010-02-24 15:46:57.000000000 +0100
***************
*** 683,684 ****
--- 683,686 ----
  {   /* Add new patch number below this line */
+ /**/
+     374,
  /**/

-- 
ARTHUR: (as the MAN next to him is squashed by a sheep) Knights!  Run away!
   Midst echoing shouts of "run away" the KNIGHTS retreat to cover with the odd
   cow or goose hitting them still.  The KNIGHTS crouch down under cover.
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\        download, build and distribute -- http://www.A-A-P.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///