smartfile/ts/smartfile.classes.smartfile.ts

128 lines
2.1 KiB
TypeScript
Raw Normal View History

import * as plugins from './smartfile.plugins'
export interface ISmartfileConstructorOptions {
path?: string
2017-04-29 15:20:09 +00:00
contentString?: string
contentBuffer?: Buffer
2017-04-30 16:13:17 +00:00
base?: string
}
2016-09-20 15:56:49 +00:00
2017-04-27 14:48:08 +00:00
/**
* class Smartfile
* -> is vinyl file compatible
*/
export class Smartfile {
2017-04-27 14:48:08 +00:00
/**
* the full path of the file on disk
*/
path: string
2017-04-27 14:48:08 +00:00
2017-04-29 15:20:09 +00:00
/**
* the content of the file as Buffer
*/
contentBuffer: Buffer
2017-04-27 14:48:08 +00:00
/**
* The current working directory of the file
*/
2017-04-30 16:13:17 +00:00
base: string
2017-04-27 14:48:08 +00:00
/**
* sync the file with disk
*/
sync: boolean
/**
* the constructor of Smartfile
* @param optionsArg
*/
constructor (optionsArg: ISmartfileConstructorOptions) {
if (optionsArg.contentBuffer) {
2017-04-29 15:20:09 +00:00
this.contentBuffer = optionsArg.contentBuffer
} else if (optionsArg.contentString) {
2017-04-30 16:13:17 +00:00
this.setContentsFromString(optionsArg.contentString)
2017-04-29 15:20:09 +00:00
} else {
console.log('created empty Smartfile?')
2016-09-20 15:56:49 +00:00
}
this.path = optionsArg.path
2017-04-30 16:13:17 +00:00
this.base = optionsArg.base
2017-04-27 14:48:08 +00:00
}
/**
* set contents from string
* @param contentString
*/
2017-04-27 14:48:08 +00:00
setContentsFromString(contentString: string) {
this.contents = new Buffer(contentString)
}
2017-04-27 14:48:08 +00:00
/**
* write file to disk
*/
async write () {
}
/**
* read file from disk
*/
async read () {
}
2017-04-30 16:13:17 +00:00
// -----------------------------------------------
// vinyl compatibility
// -----------------------------------------------
/**
* vinyl-compatibility: alias of this.contentBuffer
*/
get contents (): Buffer {
return this.contentBuffer
}
set contents (contentsArg) {
this.contentBuffer = contentsArg
}
/**
* vinyl-compatibility
*/
get cwd () {
return this.base
}
/**
* return relative path of file
*/
get relative (): string {
return this.path
}
/**
* return truw when the file has content
*/
isNull (): boolean {
if (!this.contentBuffer) {
return true
}
return false
}
/**
* return true if contents are Buffer
*/
isBuffer (): boolean {
if (this.contents instanceof Buffer) {
return true
}
return false
}
isDirectory () {
return false
}
isStream () {
return false
}
2016-09-20 15:56:49 +00:00
}