This file is indexed.

/usr/include/mapnik/value.hpp is in libmapnik2-dev 2.0.0+ds1-3build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
/*****************************************************************************
 * 
 * This file is part of Mapnik (c++ mapping toolkit)
 *
 * Copyright (C) 2006 Artem Pavlenko
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 *****************************************************************************/
//$Id$

#ifndef VALUE_HPP
#define VALUE_HPP

// mapnik
#include <mapnik/unicode.hpp>
#include <mapnik/config_error.hpp>
// boost
#include <boost/variant.hpp>
#include <boost/scoped_array.hpp>
#include <boost/concept_check.hpp>
#include <boost/lexical_cast.hpp>
// stl
#include <iostream>
#include <string>
#include <sstream>
#include <iomanip>
#include <cmath>
// uci
#include <unicode/unistr.h>
#include <unicode/ustring.h>


namespace mapnik  {

inline void to_utf8(UnicodeString const& input, std::string & target)
{
    if (input.length() == 0) return;
      
    const int32_t BUF_SIZE = 256;
    char  buf [BUF_SIZE];
    int32_t len;
      
    UErrorCode err = U_ZERO_ERROR;
    u_strToUTF8(buf, BUF_SIZE, &len, input.getBuffer(), input.length(), &err);
    if (err == U_BUFFER_OVERFLOW_ERROR || err == U_STRING_NOT_TERMINATED_WARNING ) 
    {
        boost::scoped_array<char> buf_ptr(new char [len+1]);
        err = U_ZERO_ERROR;
        u_strToUTF8(buf_ptr.get() , len + 1, &len, input.getBuffer(), input.length(), &err);
        target.assign(buf_ptr.get() , len);
    }
    else
    {
        target.assign(buf, len);
    }
}
   
struct value_null {};
   
typedef boost::variant<value_null,bool,int,double,UnicodeString> value_base;
   
namespace impl {
struct equals
    : public boost::static_visitor<bool>
{
    template <typename T, typename U>
    bool operator() (const T &, const U &) const
    {
        return false;
    }
        
    template <typename T>
    bool operator() (T lhs, T rhs) const
    {
        return lhs == rhs;
    }
            
    bool operator() (int lhs, double rhs) const
    {
        return  lhs == rhs;
    }
        
    bool operator() (double lhs, int rhs) const
    {
        return  (lhs == rhs)? true : false ;
    }
        
    bool operator() (UnicodeString const& lhs, 
                     UnicodeString const& rhs) const
    {
        return  (lhs == rhs) ? true: false;
    }

    bool operator() (value_null, value_null) const
    {
        // this changed from false to true - see http://trac.mapnik.org/ticket/794
        return true;
    }

};
      
struct not_equals
    : public boost::static_visitor<bool>
{
    template <typename T, typename U>
    bool operator() (const T &, const U &) const
    {
        return true;
    }
        
    template <typename T>
    bool operator() (T lhs, T rhs) const
    {
        return lhs != rhs;
    }
            
    bool operator() (int lhs, double rhs) const
    {
        return  lhs != rhs;
    }
        
    bool operator() (double lhs, int rhs) const
    {
        return  lhs != rhs;
    }
        
    bool operator() (UnicodeString const& lhs, 
                     UnicodeString const& rhs) const
    {
        return  (lhs != rhs)? true : false;
    }

    bool operator() (value_null, value_null) const
    {
        // TODO - needs review http://trac.mapnik.org/ticket/794
        return false;
    }

    template <typename T>
    bool operator() (value_null, const T &) const
    {
        // TODO - needs review http://trac.mapnik.org/ticket/794
        return false;
    }

    template <typename T>
    bool operator() (const T &, value_null) const
    {
        // TODO - needs review http://trac.mapnik.org/ticket/794
        return false;
    }
};

struct greater_than
    : public boost::static_visitor<bool>
{
    template <typename T, typename U>
    bool operator()(const T &, const U &) const
    {
        return false;
    }
        
    template <typename T>
    bool operator()(T lhs, T rhs) const
    {
        return lhs > rhs;
    }
        
    bool operator() (int lhs, double rhs) const
    {
        return  lhs > rhs;
    }
        
    bool operator() (double lhs, int rhs) const
    {
        return  lhs > rhs;
    }
        
    bool operator() (UnicodeString const& lhs, UnicodeString const& rhs) const
    {
        return  (lhs > rhs) ? true : false ;
    }

    bool operator() (value_null, value_null) const
    {
        return false;
    }
};
    
struct greater_or_equal
    : public boost::static_visitor<bool>
{       
    template <typename T, typename U>
    bool operator()(const T &, const U &) const
    {
        return false;
    }
        
    template <typename T>
    bool operator() (T lhs, T rhs) const
    {
        return lhs >= rhs;
    }
      
    bool operator() (int lhs, double rhs) const
    {
        return  lhs >= rhs;
    }
        
    bool operator() (double lhs, int rhs) const
    {
        return  lhs >= rhs;
    }
        
    bool operator() (UnicodeString const& lhs, UnicodeString const& rhs) const
    {
        return ( lhs >= rhs ) ? true : false ;
    }

    bool operator() (value_null, value_null) const
    {
        return false;
    }
};
    
struct less_than
    : public boost::static_visitor<bool>
{       
    template <typename T, typename U>
    bool operator()(const T &, const U &) const
    {
        return false;
    }
        
    template <typename T>
    bool operator()(T lhs, T rhs) const
    {
        return lhs < rhs;
    }
        
    bool operator() (int lhs, double rhs) const
    {
        return  lhs < rhs;
    }
           
    bool operator() (double lhs, int rhs) const
    {
        return  lhs < rhs;
    }
        
    bool operator()(UnicodeString const& lhs, 
                    UnicodeString const& rhs ) const
    {
        return (lhs < rhs) ? true : false ;
    }

    bool operator() (value_null, value_null) const
    {
        return false;
    }
};

struct less_or_equal
    : public boost::static_visitor<bool>
{       
    template <typename T, typename U>
    bool operator()(const T &, const U &) const
    {
        return false;
    }
        
    template <typename T>
    bool operator()(T lhs, T rhs) const
    {
        return lhs <= rhs;
    }
            
    bool operator() (int lhs, double rhs) const
    {
        return  lhs <= rhs;
    }
        
    bool operator() (double lhs, int rhs) const
    {
        return  lhs <= rhs;
    }
        
    bool operator()(UnicodeString const& lhs, 
                    UnicodeString const& rhs ) const
    {
        return (lhs <= rhs) ? true : false ;
    }

    bool operator() (value_null, value_null) const
    {
        return false;
    }
};
    
template <typename V>
struct add : public boost::static_visitor<V>
{ 
    typedef V value_type;
    
    template <typename T>
    value_type operator() (T lhs, T rhs) const
    {
        return lhs + rhs ;
    }
        
    value_type operator() (UnicodeString const& lhs , 
                           UnicodeString const& rhs ) const
    {
        return lhs + rhs;
    }
        
    value_type operator() (double lhs, int rhs) const
    {
        return lhs + rhs;
    }
        
    value_type operator() (int lhs, double rhs) const
    {
        return lhs + rhs;
    }

    template <typename R>
    value_type operator() (UnicodeString const& lhs, R const& rhs) const
    {
        std::basic_ostringstream<char> out;
        out << rhs;
        return lhs + UnicodeString(out.str().c_str());
    }

    template <typename L>
    value_type operator() (L const& lhs , UnicodeString const& rhs) const
    {
        std::basic_ostringstream<char> out;
        out << lhs;
        return UnicodeString(out.str().c_str()) + rhs;
    }
     
    template <typename T1, typename T2>
    value_type operator() (T1 const& lhs, T2 const&) const
    {
        return lhs;
    }
};

template <typename V>
struct sub : public boost::static_visitor<V>
{ 
    typedef V value_type;
    template <typename T1, typename T2>
    value_type operator() (T1 const& lhs, T2 const&) const
    {
        return lhs;
    }

    template <typename T>
    value_type operator() (T  lhs, T rhs) const
    {
        return lhs - rhs ;
    }

    value_type operator() (UnicodeString const& lhs,
                           UnicodeString const& ) const
    {
        return lhs;
    }
                
    value_type operator() (double lhs, int rhs) const
    {
        return lhs - rhs;
    }
        
    value_type operator() (int lhs, double rhs) const
    {
        return lhs - rhs;
    }
};
    
template <typename V>
struct mult : public boost::static_visitor<V>
{ 
    typedef V value_type;
    template <typename T1, typename T2>
    value_type operator() (T1 const& lhs , T2 const& ) const
    {
        return lhs;
    }
    template <typename T>
    value_type operator() (T lhs, T rhs) const
    {
        return lhs * rhs;
    }
        
    value_type operator() (UnicodeString const& lhs,
                           UnicodeString const& ) const
    {
        return lhs;
    }   
        
    value_type operator() (double lhs, int rhs) const
    {
        return lhs * rhs;
    }
        
    value_type operator() (int lhs, double rhs) const
    {
        return lhs * rhs;
    }
};

template <typename V>
struct div: public boost::static_visitor<V>
{ 
    typedef V value_type;
    template <typename T1, typename T2>
    value_type operator() (T1 const& lhs, T2 const&) const
    {
        return lhs;
    }
            
    template <typename T>
    value_type operator() (T lhs, T rhs) const
    {
        return lhs / rhs;
    }
        
    value_type operator() (bool lhs, bool rhs ) const
    {
        boost::ignore_unused_variable_warning(lhs);
        boost::ignore_unused_variable_warning(rhs);
        return false;
    }
   
    value_type operator() (UnicodeString const& lhs,
                           UnicodeString const&) const
    {
        return lhs;
    }
        
    value_type operator() (double lhs, int rhs) const
    {
        return lhs / rhs;
    }
        
    value_type operator() (int lhs, double rhs) const
    {
        return lhs / rhs;
    }
};

template <typename V>
struct mod: public boost::static_visitor<V>
{ 
    typedef V value_type;
    template <typename T1, typename T2>
    value_type operator() (T1 const& lhs, T2 const&) const
    {
        return lhs;
    }
            
    template <typename T>
    value_type operator() (T lhs, T rhs) const
    {
        return lhs % rhs;
    }
        
    value_type operator() (UnicodeString const& lhs,
                           UnicodeString const&) const
    {
        return lhs;
    }
        
    value_type operator() (bool lhs,
                           bool rhs) const
    {
        boost::ignore_unused_variable_warning(lhs);
        boost::ignore_unused_variable_warning(rhs);
        return false;
    }
        
    value_type operator() (double lhs, int rhs) const
    {
        return std::fmod(lhs, rhs);
    }
        
    value_type operator() (int lhs, double rhs) const
    {
        return std::fmod(lhs, rhs);
    }
        
    value_type operator() (double lhs, double rhs) const
    {
        return std::fmod(lhs, rhs);
    }
};
        
struct to_bool : public boost::static_visitor<bool>
{
    bool operator() (bool val) const
    {
        return val;
    }
 
    bool operator() (UnicodeString const& ustr) const
    {
        boost::ignore_unused_variable_warning(ustr);
        return true;
    }
    
    bool operator() (value_null const& val) const
    {
        boost::ignore_unused_variable_warning(val);
        return false;
    }

    template <typename T>
    bool operator() (T val) const
    {
        return bool(val);
    }
};

struct to_string : public boost::static_visitor<std::string>
{
                
    template <typename T>
    std::string operator() (T val) const
    {
        std::stringstream ss;
        ss << val;
        return ss.str();
    }
    // specializations 
    std::string operator() (UnicodeString const& val) const
    {
        std::string utf8;
        to_utf8(val,utf8);
        return utf8;
    }
            
    std::string operator() (double val) const
    {
        std::stringstream ss;
        ss << std::setprecision(16) << val;
        return ss.str();
    }
            
    std::string operator() (value_null const& val) const
    {
        boost::ignore_unused_variable_warning(val);
        return "";
    }
};

struct to_unicode : public boost::static_visitor<UnicodeString>
{
                
    template <typename T>
    UnicodeString operator() (T val) const
    {
        std::basic_ostringstream<char> out;
        out << val;
        return UnicodeString(out.str().c_str());
    }

    // specializations 
    UnicodeString const& operator() (UnicodeString const& val) const
    {
        return val;
    }

    UnicodeString operator() (double val) const
    {
        std::basic_ostringstream<char> out;
        out << std::setprecision(16) << val;
        return UnicodeString(out.str().c_str());
    }
            
    UnicodeString operator() (value_null const& val) const
    {
        boost::ignore_unused_variable_warning(val);
        return UnicodeString("");
    }
};
      
struct to_expression_string : public boost::static_visitor<std::string>
{
    std::string operator() (UnicodeString const& val) const
    {
        std::string utf8;
        to_utf8(val,utf8);
        return "'" + utf8 + "'";
    } 
            
    std::string operator() (double val) const
    {
        std::stringstream ss;
        ss << std::setprecision(16) << val;
        return ss.str();
    }

    std::string operator() (bool val) const
    {
        return val ? "true":"false";
    }

    std::string operator() (value_null const& val) const
    {
        boost::ignore_unused_variable_warning(val);
        return "null";
    }
          
    template <typename T>
    std::string operator() (T val) const
    {
        std::stringstream ss;
        ss << val;
        return ss.str();
    }
};

struct to_double : public boost::static_visitor<double>
{
    double operator() (int val) const
    {
        return static_cast<double>(val);
    }

    double operator() (double val) const
    {
        return val;
    }

    double operator() (std::string const& val) const
    {
        return boost::lexical_cast<double>(val);
    } 
    double operator() (UnicodeString const& val) const
    {
        std::string utf8;
        to_utf8(val,utf8);
        return boost::lexical_cast<double>(utf8);
    } 
            
    double operator() (value_null const& val) const
    {
        boost::ignore_unused_variable_warning(val);
        return 0.0;
    }
};

struct to_int : public boost::static_visitor<double>
{
    int operator() (int val) const
    {
        return val;
    }

    int operator() (double val) const
    {
        return rint(val);
    }

    int operator() (std::string const& val) const
    {
        return boost::lexical_cast<int>(val);
    } 
    int operator() (UnicodeString const& val) const
    {
        std::string utf8;
        to_utf8(val,utf8);
        return boost::lexical_cast<int>(utf8);
    } 
            
    int operator() (value_null const& val) const
    {
        boost::ignore_unused_variable_warning(val);
        return 0;
    }
};

}

class value
{
    value_base base_;
    friend const value operator+(value const&,value const&);
    friend const value operator-(value const&,value const&);
    friend const value operator*(value const&,value const&);
    friend const value operator/(value const&,value const&);
    friend const value operator%(value const&,value const&);
        
public:
    value ()
        : base_(value_null()) {}
        
    template <typename T> value(T _val_)
        : base_(_val_) {}

    bool operator==(value const& other) const
    {
        return boost::apply_visitor(impl::equals(),base_,other.base_);
    }

    bool operator!=(value const& other) const
    {
        return boost::apply_visitor(impl::not_equals(),base_,other.base_);
    }
        
    bool operator>(value const& other) const
    {
        return boost::apply_visitor(impl::greater_than(),base_,other.base_);
    }

    bool operator>=(value const& other) const
    {
        return boost::apply_visitor(impl::greater_or_equal(),base_,other.base_);
    }

    bool operator<(value const& other) const
    {
        return boost::apply_visitor(impl::less_than(),base_,other.base_);
    }

    bool operator<=(value const& other) const
    {
        return boost::apply_visitor(impl::less_or_equal(),base_,other.base_);
    }
         
    value_base const& base() const
    {
        return base_;
    }

    bool to_bool() const
    {
        return boost::apply_visitor(impl::to_bool(),base_);
    }

    std::string to_expression_string() const
    {
        return boost::apply_visitor(impl::to_expression_string(),base_);
    }

    std::string to_string() const
    {
        return boost::apply_visitor(impl::to_string(),base_);
    }
         
    UnicodeString to_unicode() const
    {
        return boost::apply_visitor(impl::to_unicode(),base_);
    }

    double to_double() const
    {
        return boost::apply_visitor(impl::to_double(),base_);
    }

    double to_int() const
    {
        return boost::apply_visitor(impl::to_int(),base_);
    }

};
   
inline const value operator+(value const& p1,value const& p2)
{

    return value(boost::apply_visitor(impl::add<value>(),p1.base_, p2.base_));
}

inline const value operator-(value const& p1,value const& p2)
{

    return value(boost::apply_visitor(impl::sub<value>(),p1.base_, p2.base_));
}

inline const value operator*(value const& p1,value const& p2)
{

    return value(boost::apply_visitor(impl::mult<value>(),p1.base_, p2.base_));
}

inline const value operator/(value const& p1,value const& p2)
{

    return value(boost::apply_visitor(impl::div<value>(),p1.base_, p2.base_));
}

inline const value operator%(value const& p1,value const& p2)
{

    return value(boost::apply_visitor(impl::mod<value>(),p1.base_, p2.base_));
}

template <typename charT, typename traits>
inline std::basic_ostream<charT,traits>& 
operator << (std::basic_ostream<charT,traits>& out,
             value const& v)
{
    out << v.to_string();
    return out; 
}
}

#endif //VALUE_HPP