Class ImporterAsync
Normally this one would be called Importer and the other LegacyImporter, but backwards compatibility :(
Importer class without any legacy code. Include the legacy support in the Importer class, use that in legacy clients (and hopefully we'll be able remove that one at some point).
Use this class everywhere else.
Inheritance
ImporterAsync
Namespace: SdlSdl.CoreSdl.Core.TMImportExport
Assembly: Sdl.Core.TM.ImportExport.dll
Syntax
public class ImporterAsync
Constructors
Initializes a new instance of the Importer class.
Declaration
public ImporterAsync(ICultureMetadataManager cultureMetadataManager, Func<ImportStatistics, ImportResults, Task<bool>> batchImportedAsync = null)
Parameters
Declaration
public ImporterAsync(IImportDestinationAsync importDestinationAsync, ICultureMetadataManager cultureMetadataManager, Func<ImportStatistics, ImportResults, Task<bool>> batchImportedAsync = null)
Parameters
Fields
BadTuCount
Declaration
Field Value
Buffer
Declaration
protected readonly List<TranslationUnit> Buffer
Field Value
DefaultTranslationUnitChunkSize
Defines the default size for a chunk of translation units to be processed in one round-trip through the import/export process.
The default chunk size is 25.
Declaration
public const int DefaultTranslationUnitChunkSize = 200
Field Value
ErrorOutput
Declaration
protected TMXWriter ErrorOutput
Field Value
MaxTranslationUnitChunkSize
Defines the maximum allowed chunk size.
The maximum allowed chunk size is 200.
Declaration
public const int MaxTranslationUnitChunkSize = 200
Field Value
MinTranslationUnitChunkSize
Defines the minimum allowed chunk size.
The minimum allowed chunk size is 2.
Declaration
public const int MinTranslationUnitChunkSize = 2
Field Value
_batchImportedAsync
Declaration
protected readonly Func<ImportStatistics, ImportResults, Task<bool>> _batchImportedAsync
Field Value
Properties
CanChangeImportFile
Flag set to true if the imported file can/should be changed
Declaration
public bool CanChangeImportFile { get; set; }
Property Value
ChunkSize
Gets or sets the size of the translation unit chunk size
Declaration
public int ChunkSize { get; set; }
Property Value
Type |
Description |
int |
The size of the chunk.
|
Exclusive
If true, indicates this Importer is the only flow making
changes to the destination TM, in which case optimisations are used. Do not
set true if other flows/users may be updating the TM during the import.
Declaration
public bool Exclusive { get; set; }
Property Value
FileTypeManager
Gets or sets the file type manager. This is only needed when imported bilingual documents; it is not required when
imported TMX files.
Declaration
public IFileTypeManager FileTypeManager { get; set; }
Property Value
ImportSettings
Gets or sets the import settings.
Declaration
public ImportSettings ImportSettings { get; set; }
Property Value
InvalidTranslationUnitsExportPath
Gets or sets the invalid translation units export path.
Declaration
public string InvalidTranslationUnitsExportPath { get; set; }
Property Value
Type |
Description |
string |
The invalid translation units export path.
|
Statistics
Declaration
public ImportStatistics Statistics { get; set; }
Property Value
TranslationMemoryUserIdSetting
Gets or sets the user id used to import TUs.
Declaration
public string TranslationMemoryUserIdSetting { get; set; }
Property Value
Methods
Flushes the content of the internal translation unit buffer into the translation memory immediately.
Declaration
protected Task<bool> Flush(ImportStatistics stats, IImportDestinationAsync importDestination)
Parameters
Returns
Type |
Description |
Taskbool |
Response.Cancel if there is an event listener that has signaled it wants to stop the import,
otherwise Response.Continue.
|
GetDefaultFileTypeManager()
Returns the default file type manager.
Declaration
public IFileTypeManager GetDefaultFileTypeManager()
Returns
ImportAsync(string, IImportDestinationAsync)
Starts the import from the specified file.
Declaration
public Task<bool> ImportAsync(string fileName, IImportDestinationAsync importDestination)
Parameters
Returns
Declaration
protected virtual Task<bool> OnBatchImportedAsync(ImportStatistics overallResults, ImportResults batchResults)
Parameters
Returns
Declaration
protected Task OutputErrorTuAsync(TranslationUnit tu, ImportResult result)
Parameters
Returns