ed_txt.py
27.3 KB
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
825
826
827
828
829
830
831
832
833
834
835
836
###############################################################################
# Name: Cody Precord #
# Purpose: File abstraction layer and text utilities #
# Author: Cody Precord <cprecord@editra.org> #
# Copyright: (c) 2008 Cody Precord <staff@editra.org> #
# License: wxWindows License #
###############################################################################
"""
Text/Unicode handling functions and File wrapper class
"""
__author__ = "Cody Precord <cprecord@editra.org>"
__svnid__ = "$Id: ed_txt.py 72103 2012-07-15 15:02:42Z CJP $"
__revision__ = "$Revision: 72103 $"
#--------------------------------------------------------------------------#
# Imports
import sys
import re
import time
import wx
import codecs
import encodings as enclib
import locale
from StringIO import StringIO
# Local Imports
from util import Log
from profiler import Profile_Get
import ed_msg
import ebmlib
import ed_thread
#--------------------------------------------------------------------------#
# Globals
# The default fallback encoding
DEFAULT_ENCODING = locale.getpreferredencoding()
try:
codecs.lookup(DEFAULT_ENCODING)
except (LookupError, TypeError):
DEFAULT_ENCODING = 'utf-8'
# File Helper Functions
# NOTE: keep in synch with CheckBom function
BOM = { 'utf-8' : codecs.BOM_UTF8,
'utf-16' : codecs.BOM,
'utf-32' : codecs.BOM_UTF32 }
# Regex for extracting magic comments from source files
# i.e *-* coding: utf-8 *-*, encoding=utf-8, ect...
# The first group from this expression will be the encoding.
RE_MAGIC_COMMENT = re.compile("coding[:=]\s*\"*([-\w.]+)\"*")
# File Load States
FL_STATE_START = 0
FL_STATE_READING = 1
FL_STATE_PAUSED = 2
FL_STATE_END = 3
FL_STATE_ABORTED = 4
#--------------------------------------------------------------------------#
class ReadError(Exception):
"""Error happened while trying to read the file"""
pass
class WriteError(Exception):
"""Error happened while trying to write the file"""
pass
#--------------------------------------------------------------------------#
class EdFile(ebmlib.FileObjectImpl):
"""Wrapper for representing a file object that stores data
about the file encoding and path.
"""
_Checker = ebmlib.FileTypeChecker()
def __init__(self, path=u'', modtime=0):
"""Create the file wrapper object
@keyword path: the absolute path to the file
@keyword modtime: file modification time
"""
super(EdFile, self).__init__(path, modtime)
# Attributes
self._magic = dict(comment=None, bad=False)
self.encoding = None
self.bom = None
self._mcallback = list()
self.__buffer = None
self._raw = False # Raw bytes?
self._fuzzy_enc = False
self._job = None # async file read job
def _SanitizeBOM(self, bstring):
"""Remove byte order marks that get automatically added by some codecs"""
for enc in ('utf-8', 'utf-32', 'utf-16'):
bmark = BOM.get(enc)
if bstring.startswith(bmark):
bstring = bstring.lstrip(bmark)
break
return bstring
def _HandleRawBytes(self, bytes_value):
"""Handle prepping raw bytes for return to the buffer
@param bytes_value: raw read bytes
@return: string
"""
Log("[ed_txt][info] HandleRawBytes called")
if self._magic['comment']:
self._magic['bad'] = True
# Return the raw bytes to put into the buffer
self._raw = True
return '\0'.join(bytes_value)+'\0'
def _ResetBuffer(self):
Log("[ed_txt][info] Resetting buffer")
if self.__buffer is not None:
self.__buffer.close()
del self.__buffer
self.__buffer = StringIO()
Encoding = property(lambda self: self.GetEncoding())
def AddModifiedCallback(self, callback):
"""Set modified callback method
@param callback: callable
"""
self._mcallback.append(callback)
def CleanUp(self):
"""Cleanup callback"""
pass
def Clone(self):
"""Clone the file object
@return: EdFile
"""
fileobj = EdFile(self.Path, self.ModTime)
fileobj.SetLastError(self.last_err)
fileobj.SetEncoding(self.encoding)
fileobj.bom = self.bom
fileobj._magic = dict(self._magic)
fileobj._fuzzy_enc = self._fuzzy_enc
for cback in self._mcallback:
fileobj.AddModifiedCallback(cback)
return fileobj
def DecodeText(self):
"""Decode the text in the buffer and return a unicode string.
@return: unicode or str
"""
assert self.__buffer is not None, "No buffer!"
assert self.encoding is not None, "Encoding Not Set!"
bytes_value = self.__buffer.getvalue()
ustr = u""
try:
if not self._fuzzy_enc or not EdFile._Checker.IsBinaryBytes(bytes_value):
if self.bom is not None:
Log("[ed_txt][info] Stripping %s BOM from text" % self.encoding)
bytes_value = bytes_value.replace(self.bom, '', 1)
Log("[ed_txt][info] Attempting to decode with: %s" % self.encoding)
ustr = bytes_value.decode(self.encoding)
# TODO: temporary...maybe
# Check for utf-16 encodings which use double bytes
# can result in NULLs in the string if decoded with
# other encodings.
if str('\0') in ustr:
Log("[ed_txt][info] NULL terminators found in decoded str")
Log("[ed_txt][info] Attempting UTF-16/32 detection...")
for utf_encoding in ('utf_16', 'utf_32'):
try:
tmpstr = bytes_value.decode(utf_encoding)
except UnicodeDecodeError:
pass
else:
self.encoding = utf_encoding
ustr = tmpstr
Log("[ed_txt][info] %s detected" % utf_encoding)
break
else:
Log("[ed_txt][info] No valid UTF-16/32 bytes detected")
else:
# Binary data was read
Log("[ed_txt][info] Binary bytes where read")
ustr = self._HandleRawBytes(bytes_value)
except (UnicodeDecodeError, LookupError), msg:
Log("[ed_txt][err] Error while reading with %s" % self.encoding)
Log("[ed_txt][err] %s" % msg)
self.SetLastError(unicode(msg))
self.Close()
# Decoding failed so convert to raw bytes for display
ustr = self._HandleRawBytes(bytes_value)
else:
# Log success
if not self._raw:
Log("[ed_txt][info] Decoded %s with %s" % \
(self.GetPath(), self.encoding))
# Scintilla bug, SetText will quit at first null found in the
# string. So join the raw bytes and stuff them in the buffer instead.
# TODO: are there other control characters that need to be checked
# for besides NUL?
if not self._raw and '\0' in ustr:
# Return the raw bytes to put into the buffer
Log("[ed_txt][info] DecodeText - joining nul terminators")
ustr = '\0'.join(bytes_value)+'\0'
self._raw = True
if self._raw:
# TODO: wx/Scintilla Bug?
# Replace \x05 with a space as it causes the buffer
# to crash when its inserted.
Log("[ed_txt][info] DecodeText - raw - set encoding to binary")
ustr = ustr.replace('\x05', ' ')
self.SetEncoding('binary')
self._raw = True
return ustr
def DetectEncoding(self):
"""Try to determine the files encoding
@precondition: File handle has been opened and is valid
@postcondition: encoding and bom attributes will be set
"""
if self.encoding != None:
msg = ("[ed_txt][info] DetectEncoding, skipping do to user set "
"encoding: %s") % self.encoding
Log(msg)
return
assert self.Handle is not None, "File handle not initialized"
lines = [ self.Handle.readline() for x in range(2) ]
self.Handle.seek(0)
enc = None
if len(lines):
# First check for a Byte Order Mark
enc = CheckBom(lines[0])
# If no byte-order mark check for an encoding comment
if enc is None:
Log("[ed_txt][info] DetectEncoding - Check magic comment")
self.bom = None
if not self._magic['bad']:
enc = CheckMagicComment(lines)
if enc:
self._magic['comment'] = enc
else:
Log("[ed_txt][info] File Has %s BOM" % enc)
self.bom = BOM.get(enc, None)
if enc is None:
Log("[ed_txt][info] Doing brute force encoding check")
enc = GuessEncoding(self.GetPath(), 4096)
if enc is None:
self._fuzzy_enc = True
enc = Profile_Get('ENCODING', default=DEFAULT_ENCODING)
Log("[ed_txt][info] DetectEncoding - Set Encoding to %s" % enc)
self.encoding = enc
def EncodeText(self):
"""Do a trial run of encoding all the text to ensure that we can
determine an encoding that will correctly be able to write the data
to disk.
@return: bool
"""
bOk = True
txt = self.__buffer.read(8)
self.__buffer.seek(0)
if not ebmlib.IsUnicode(txt):
# Already a string so nothing to do
return bOk
encs = GetEncodings()
if self.encoding is None:
self.encoding = Profile_Get('ENCODING', default=DEFAULT_ENCODING)
encs.insert(0, self.encoding)
cenc = self.encoding
readsize = min(self.__buffer.len, 4096)
for enc in encs:
self.__buffer.seek(0)
try:
tmpchars = self.__buffer.read(readsize)
while len(tmpchars):
tmpchars.encode(enc)
tmpchars = self.__buffer.read(readsize)
self.encoding = enc
self.__buffer.seek(0)
self.ClearLastError()
except LookupError, msg:
Log("[ed_txt][err] Invalid encoding: %s" % enc)
Log("[ed_txt][err] %s" % msg)
self.SetLastError(unicode(msg))
except UnicodeEncodeError, msg:
Log("[ed_txt][err] Failed to encode text with %s" % enc)
Log("[ed_txt][err] %s" % msg)
self.SetLastError(unicode(msg))
else:
break
else:
bOk = False
raise WriteError("Failed to encode text to byte string")
# Log if the encoding changed due to encoding errors
if self.encoding != cenc:
Log("[ed_txt][warn] Used encoding %s differs from original %s" %\
(self.encoding, cenc))
self.__buffer.seek(0)
return bOk
def FireModified(self):
"""Fire the modified callback(s)"""
remove = list()
for idx, mcallback in enumerate(self._mcallback):
try:
mcallback()
except:
remove.append(idx)
# Cleanup any bad callbacks
if len(remove):
remove.reverse()
for idx in remove:
self._mcallback.pop(idx)
def GetEncoding(self):
"""Get the encoding used by the file it may not be the
same as the encoding requested at construction time
@return: string encoding name
"""
if self.encoding is None:
# Guard against early entry
return Profile_Get('ENCODING', default=DEFAULT_ENCODING)
return self.encoding
def GetMagic(self):
"""Get the magic comment if one was present
@return: string or None
"""
return self._magic['comment']
def HasBom(self):
"""Return whether the file has a bom byte or not
@return: bool
"""
return self.bom is not None
def IsRawBytes(self):
"""Were only raw bytes read during the last read operation?
@return: bool
"""
return self._raw
def IsReadOnly(self):
"""Return as read only when file is read only or if raw bytes"""
return super(EdFile, self).IsReadOnly() or self.IsRawBytes()
def Read(self, chunk=512):
"""Get the contents of the file as a string, automatically handling
any decoding that may be needed.
@keyword chunk: read size
@return: unicode str
@throws: ReadError Failed to open file for reading
"""
if self.DoOpen('rb'):
self.DetectEncoding()
if self.encoding is None:
# fall back to user setting
self.encoding = Profile_Get('ENCODING', default=DEFAULT_ENCODING)
Log(("[ed_txt][warn] Failed to detect encoding "
"falling back to default: %s") % self.encoding)
self._ResetBuffer()
self._raw = False
Log("[ed_txt][info] Read - Start reading")
tmp = self.Handle.read(chunk)
while len(tmp):
self.__buffer.write(tmp)
tmp = self.Handle.read(chunk)
Log("[ed_txt][info] Read - End reading")
self.Close()
txt = self.DecodeText()
self.SetModTime(ebmlib.GetFileModTime(self.GetPath()))
self._ResetBuffer()
return txt
else:
Log("[ed_txt][err] Read Error: %s" % self.GetLastError())
raise ReadError, self.GetLastError()
def ReadAsync(self, control):
"""Read the file asynchronously on a separate thread
@param control: text control to send text to
"""
Log("[ed_txt][info] EdFile.ReadAsync()")
pid = control.GetTopLevelParent().Id
filesize = ebmlib.GetFileSize(self.GetPath())
ed_msg.PostMessage(ed_msg.EDMSG_PROGRESS_STATE, (pid, 1, filesize))
# Fork off async job to threadpool
self._job = FileReadJob(control, self.ReadGenerator, 4096)
ed_thread.EdThreadPool().QueueJob(self._job.run)
def ReadGenerator(self, chunk=512):
"""Get the contents of the file as a string, automatically handling
any decoding that may be needed.
@keyword chunk: read size
@return: unicode (generator)
@throws: ReadError Failed to open file for reading.
"""
if self.DoOpen('rb'):
# Throttle yielded text to reduce event over head
filesize = ebmlib.GetFileSize(self.Path)
throttle = max(chunk, filesize/100)
self.DetectEncoding()
try:
# Must use codec reader to ensure correct number of
# bytes are read in to be decoded.
reader = codecs.getreader(self.Encoding)(self.Handle)
buffered_data = StringIO()
while True:
tmp = reader.read(chunk)
if not len(tmp):
if buffered_data.len:
yield buffered_data.getvalue()
buffered_data.close()
break
buffered_data.write(tmp)
if buffered_data.len >= throttle:
yield buffered_data.getvalue()
buffered_data.close()
buffered_data = StringIO()
except Exception, msg:
Log("[ed_txt][err] Error while reading with %s" % self.Encoding)
Log("[ed_txt][err] %s" % msg)
self.SetLastError(unicode(msg))
self.Close()
if self._magic['comment']:
self._magic['bad'] = True
Log("[ed_txt][info] Decoded %s with %s" % (self.Path, self.Encoding))
self.SetModTime(ebmlib.GetFileModTime(self.Path))
else:
raise ReadError, self.GetLastError()
def RemoveModifiedCallback(self, callback):
"""Remove a registered callback
@param callback: callable to remove
"""
if callback in self._mcallback:
self._mcallback.remove(callback)
def ResetAll(self):
"""Reset all attributes of this file"""
super(EdFile, self).ResetAll()
self._ResetBuffer()
self._magic = dict(comment=None, bad=False)
self.encoding = Profile_Get('ENCODING', default=DEFAULT_ENCODING)
self.bom = None
def SetEncoding(self, enc):
"""Explicitly set/change the encoding of the file
@param enc: encoding to change to
"""
if enc is None:
enc = DEFAULT_ENCODING
self.encoding = enc
def ReadLines(self):
"""Get the contents of the file as a list of lines
@return: list of strings
"""
raise NotImplementedError
def Write(self, value):
"""Write the given value to the file
@param value: (Unicode) String of text to write to disk
@note: exceptions are allowed to be raised for the writing
@throws: WriteError Failed to open file for writing
@throws: UnicodeEncodeError Failed to encode text using set encoding
"""
ctime = time.time()
Log("[ed_txt][info] Write - Called: %s - Time: %d" % (self.Path, ctime))
# Check if a magic comment was added or changed
self._ResetBuffer()
self.__buffer.write(value)
self.__buffer.seek(0)
enc = CheckMagicComment([ self.__buffer.readline() for x in range(2) ])
self.__buffer.seek(0)
# Update encoding if necessary
if enc is not None:
Log("[ed_txt][info] Write: found magic comment: %s" % enc)
self.encoding = enc
# Encode to byte string
# Do before opening file so that encoding failures don't cause file
# data to get lost!
if self.EncodeText():
Log("[ed_txt][info] Write Successful test encode with %s" % self.Encoding)
# Open and write the file
if self.DoOpen('wb'):
Log("[ed_txt][info] Opened %s, writing as %s" % (self.Path, self.Encoding))
if self.HasBom():
Log("[ed_txt][info] Adding BOM back to text")
self.Handle.write(self.bom)
# Write the file to disk
chunk = min(self.__buffer.len, 4096)
buffer_read = self.__buffer.read
filewrite = self.Handle.write
fileflush = self.Handle.flush
sanitize = self._SanitizeBOM
tmp = buffer_read(chunk)
while len(tmp):
tmp_bytes = sanitize(tmp.encode(self.Encoding))
filewrite(tmp_bytes)
fileflush()
tmp = buffer_read(chunk)
self._ResetBuffer() # Free buffer
self.Close()
Log("[ed_txt][info] %s was written successfully" % self.Path)
else:
self._ResetBuffer()
raise WriteError, self.GetLastError()
Log("[ed_txt][info] Write - Complete: %s - Time: %d" %
(self.Path, time.time() - ctime))
#-----------------------------------------------------------------------------#
class FileReadJob(object):
"""Job for running an async file read in a background thread"""
def __init__(self, receiver, task, *args, **kwargs):
"""Create the thread
@param receiver: Window to receive events
@param task: generator method to call
@param *args: positional arguments to pass to task
@param **kwargs: keyword arguments to pass to task
"""
super(FileReadJob, self).__init__()
# Attributes
self.cancel = False
self._task = task
self.receiver = receiver
self._args = args
self._kwargs = kwargs
self.pid = receiver.TopLevelParent.Id
def run(self):
"""Read the text"""
evt = FileLoadEvent(edEVT_FILE_LOAD, wx.ID_ANY, None, FL_STATE_START)
wx.PostEvent(self.receiver, evt)
time.sleep(.75) # give ui a chance to get ready
count = 1
for txt in self._task(*self._args, **self._kwargs):
if self.cancel:
break
evt = FileLoadEvent(edEVT_FILE_LOAD, wx.ID_ANY, txt)
evt.SetProgress(count * self._args[0])
wx.PostEvent(self.receiver, evt)
count += 1
evt = FileLoadEvent(edEVT_FILE_LOAD, wx.ID_ANY, None, FL_STATE_END)
wx.PostEvent(self.receiver, evt)
def Cancel(self):
"""Cancel the running task"""
self.cancel = True
#-----------------------------------------------------------------------------#
edEVT_FILE_LOAD = wx.NewEventType()
EVT_FILE_LOAD = wx.PyEventBinder(edEVT_FILE_LOAD, 1)
class FileLoadEvent(wx.PyEvent):
"""Event to signal that a chunk of text haes been read"""
def __init__(self, etype, eid, value=None, state=FL_STATE_READING):
"""Creates the event object"""
super(FileLoadEvent, self).__init__(eid, etype)
# Attributes
self._state = state
self._value = value
self._prog = 0
def HasText(self):
"""Returns true if the event has text
@return: bool whether the event contains text
"""
return self._value is not None
def GetProgress(self):
"""Get the current progress of the load"""
return self._prog
def GetState(self):
"""Get the state of the file load action
@return: int (FL_STATE_FOO)
"""
return self._state
def GetValue(self):
"""Returns the value from the event.
@return: the value of this event
"""
return self._value
def SetProgress(self, progress):
"""Set the number of bytes that have been read
@param progress: int
"""
self._prog = progress
#-----------------------------------------------------------------------------#
# Utility Function
def CheckBom(line):
"""Try to look for a bom byte at the beginning of the given line
@param line: line (first line) of a file
@return: encoding or None
"""
Log("[ed_txt][info] CheckBom called")
has_bom = None
# NOTE: MUST check UTF-32 BEFORE utf-16
for enc in ('utf-8', 'utf-32', 'utf-16'):
bom = BOM[enc]
if line.startswith(bom):
has_bom = enc
break
return has_bom
def CheckMagicComment(lines):
"""Try to decode the given text on the basis of a magic
comment if one is present.
@param lines: list of lines to check for a magic comment
@return: encoding or None
"""
Log("[ed_txt][info] CheckMagicComment: %s" % str(lines))
enc = None
for line in lines:
match = RE_MAGIC_COMMENT.search(line)
if match:
enc = match.group(1)
try:
codecs.lookup(enc)
except LookupError:
enc = None
break
Log("[ed_txt][info] MagicComment is %s" % enc)
return enc
def DecodeString(string, encoding=None):
"""Decode the given string to Unicode using the provided
encoding or the DEFAULT_ENCODING if None is provided.
@param string: string to decode
@keyword encoding: encoding to decode string with
"""
if encoding is None:
encoding = DEFAULT_ENCODING
if not ebmlib.IsUnicode(string):
try:
rtxt = string.decode(encoding)
except Exception, msg:
Log("[ed_txt][err] DecodeString with %s failed" % encoding)
Log("[ed_txt][err] %s" % msg)
rtxt = string
return rtxt
else:
# The string is already unicode so just return it
return string
def EncodeString(string, encoding=None):
"""Try and encode a given unicode object to a string
with the provided encoding returning that string. The
default encoding will be used if None is given for the
encoding.
@param string: unicode object to encode into a string
@keyword encoding: encoding to use for conversion
"""
if not encoding:
encoding = DEFAULT_ENCODING
if ebmlib.IsUnicode(string):
try:
rtxt = string.encode(encoding)
except LookupError:
rtxt = string
return rtxt
else:
return string
def FallbackReader(fname):
"""Guess the encoding of a file by brute force by trying one
encoding after the next until something succeeds.
@param fname: file path to read from
@todo: deprecate this method
"""
txt = None
with open(fname, 'rb') as handle:
byte_str = handle.read()
for enc in GetEncodings():
try:
txt = byte_str.decode(enc)
except Exception, msg:
continue
else:
return (enc, txt)
return (None, None)
def GuessEncoding(fname, sample):
"""Attempt to guess an encoding
@param fname: filename
@param sample: pre-read amount
@return: encoding or None
"""
for enc in GetEncodings():
try:
with open(fname, 'rb') as handle:
with codecs.getreader(enc)(handle) as reader:
value = reader.read(sample)
if str('\0') in value:
continue
else:
return enc
except Exception, msg:
continue
return None
def GetEncodings():
"""Get a list of possible encodings to try from the locale information
@return: list of strings
"""
encodings = list()
encodings.append(Profile_Get('ENCODING', None))
try:
encodings.append(locale.getpreferredencoding())
except:
pass
encodings.append('utf-8')
try:
if hasattr(locale, 'nl_langinfo'):
encodings.append(locale.nl_langinfo(locale.CODESET))
except:
pass
try:
encodings.append(locale.getlocale()[1])
except:
pass
try:
encodings.append(locale.getdefaultlocale()[1])
except:
pass
encodings.append(sys.getfilesystemencoding())
encodings.append('utf-16')
encodings.append('utf-16-le') # for files without BOM...
encodings.append('latin-1')
# Normalize all names
normlist = [ enclib.normalize_encoding(enc) for enc in encodings if enc]
# Clean the list for duplicates and None values
rlist = list()
codec_list = list()
for enc in normlist:
if enc is not None and len(enc):
enc = enc.lower()
if enc not in rlist:
# Ascii is useless so ignore it (ascii, us_ascii, ...)
if 'ascii' in enc:
continue
try:
ctmp = codecs.lookup(enc)
if ctmp.name not in codec_list:
codec_list.append(ctmp.name)
rlist.append(enc)
except LookupError:
pass
return rlist