parent
f698d24472
commit
f42b034344
@ -1 +1 @@ |
||||
Subproject commit 10d1399e9c9e020136a9925f15407864bad2ccea |
||||
Subproject commit 0b82c85ce1126f9429266998f5ce07f6964265a5 |
@ -1 +1 @@ |
||||
Subproject commit d03d37f97bb2b27def1230a5539fd8c3d0aaeff3 |
||||
Subproject commit 50eb62e77992ee6a874d423ff6e1b6119d9d7475 |
@ -0,0 +1,11 @@ |
||||
{ |
||||
"sourceMaps": true, |
||||
"presets": [ |
||||
["@babel/preset-env", { |
||||
"targets": { |
||||
"node": "current" |
||||
} |
||||
}] |
||||
], |
||||
"ignore": [] |
||||
} |
@ -0,0 +1,48 @@ |
||||
# Logs |
||||
logs |
||||
*.log |
||||
npm-debug.log* |
||||
|
||||
# Runtime data |
||||
pids |
||||
*.pid |
||||
*.seed |
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover |
||||
lib-cov |
||||
|
||||
# Coverage directory used by tools like istanbul |
||||
coverage |
||||
|
||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
||||
.grunt |
||||
|
||||
# node-waf configuration |
||||
.lock-wscript |
||||
|
||||
# Optional npm cache directory |
||||
.npm |
||||
|
||||
# Optional REPL history |
||||
.node_repl_history |
||||
|
||||
# Compiled binary addons (http://nodejs.org/api/addons.html) |
||||
build/Release |
||||
|
||||
|
||||
# Visual Studio files |
||||
/.vs/ |
||||
|
||||
# VS Code cache files |
||||
/.vscode/.browse.VC* |
||||
|
||||
# Dependency directory |
||||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git |
||||
/node_modules/ |
||||
|
||||
# Bin directory |
||||
/bin/ |
||||
/bin.esm/ |
||||
|
||||
# NPM files |
||||
.npmrc |
@ -0,0 +1,39 @@ |
||||
image: node:12 |
||||
|
||||
before_script: |
||||
- npm ci |
||||
|
||||
#cache: |
||||
# paths: |
||||
# - node_modules/ |
||||
|
||||
test:lint: |
||||
script: |
||||
- npm run lint |
||||
|
||||
test:node:15: |
||||
image: node:15 |
||||
script: |
||||
- npm run build |
||||
- npm test |
||||
|
||||
# LTS |
||||
test:node:14: |
||||
image: node:14 |
||||
script: |
||||
- npm run build |
||||
- npm test |
||||
|
||||
# LTS |
||||
test:node:12: |
||||
script: |
||||
- npm run build |
||||
- npm test |
||||
|
||||
# LTS |
||||
test:node:10: |
||||
image: node:10 |
||||
script: |
||||
- npm run build |
||||
- npm test |
||||
|
@ -0,0 +1,61 @@ |
||||
# Logs |
||||
logs |
||||
*.log |
||||
npm-debug.log* |
||||
|
||||
# Runtime data |
||||
pids |
||||
*.pid |
||||
*.seed |
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover |
||||
lib-cov |
||||
|
||||
# Coverage directory used by tools like istanbul |
||||
coverage |
||||
|
||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
||||
.grunt |
||||
|
||||
# node-waf configuration |
||||
.lock-wscript |
||||
|
||||
# Optional npm cache directory |
||||
.npm |
||||
|
||||
# Optional REPL history |
||||
.node_repl_history |
||||
|
||||
# Compiled binary addons (http://nodejs.org/api/addons.html) |
||||
build/Release |
||||
|
||||
|
||||
# Visual Studio files |
||||
/.vs/ |
||||
|
||||
# VS Code cache files |
||||
/.vscode/.browse.VC* |
||||
|
||||
# Dependency directory |
||||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git |
||||
/node_modules/ |
||||
|
||||
# Bin directory |
||||
# /bin/ |
||||
# /bin.esm/ |
||||
|
||||
# NPM files |
||||
.npmrc |
||||
|
||||
|
||||
|
||||
################### |
||||
#### npmignore #### |
||||
|
||||
/.vscode/ |
||||
/spec/ |
||||
.babelrc |
||||
.travis.yml |
||||
tsconfig.json |
||||
tslint.json |
||||
webpack.config.js |
@ -0,0 +1,17 @@ |
||||
language: node_js |
||||
node_js: |
||||
- "10" |
||||
- "12" |
||||
- "14" |
||||
- "15" |
||||
|
||||
#branches: |
||||
# only: |
||||
# - master |
||||
|
||||
sudo: false |
||||
|
||||
before_script: |
||||
- npm run lint |
||||
- npm run build |
||||
- npm test |
@ -0,0 +1,14 @@ |
||||
{ |
||||
"version": "0.2.0", |
||||
"configurations": [ |
||||
{ |
||||
"type": "node", |
||||
"request": "launch", |
||||
"name": "Launch Program", |
||||
"program": "${workspaceRoot}/src/index.ts", |
||||
"outFiles": [ |
||||
"${workspaceRoot}/bin/index.js" |
||||
] |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,13 @@ |
||||
# ISC License (ISC) |
||||
|
||||
### Copyright (c) 2018, Shellyl_N and Authors |
||||
#### https://github.com/shellyln |
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby |
||||
granted, provided that the above copyright notice and this permission notice appear in all copies. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING |
||||
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, |
||||
DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, |
||||
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE |
||||
OR PERFORMANCE OF THIS SOFTWARE. |
@ -0,0 +1,120 @@ |
||||
# Chart.js server side rendering example on the node.js environment. |
||||
|
||||
**Render various charts using Chart.js into the SVG format.** |
||||
|
||||
Chart.js uses the HTML5 Canvas API. |
||||
However, the node.js environment does not have the Canvas API by default. |
||||
With [red-agate-svg-canvas](https://www.npmjs.com/package/red-agate-svg-canvas), |
||||
you can render the charts on the server side. |
||||
|
||||
**This example uses no native modules, so it can be easily installed on various platforms.** |
||||
|
||||
## Get started |
||||
|
||||
```bash |
||||
$ git clone https://github.com/shellyln/chart.js-node-ssr-example.git |
||||
$ cd chart.js-node-ssr-example |
||||
$ rm -rf ./.git |
||||
|
||||
$ npm install |
||||
$ npm run build |
||||
$ npm start # run webpacked |
||||
$ npm run start:v12 # run non-webpacked ES Modules (Node.js >= 12.0.0) |
||||
$ npm run start:v14 # run non-webpacked ES Modules (Node.js >= 13.0.0) |
||||
``` |
||||
|
||||
|
||||
## Example |
||||
|
||||
```ts |
||||
import { SvgCanvas, |
||||
Rect2D, |
||||
SvgCanvas2DGradient } from 'red-agate-svg-canvas/modules'; |
||||
|
||||
// NOTE: hack bad .d.ts definition for ESM. |
||||
// import * as ChartJs from 'chart.js'; // <- This is fine if you only use webpack. |
||||
import * as ChartJs_ from 'chart.js'; |
||||
const ChartJs: typeof ChartJs_ = (ChartJs_ as any).default || ChartJs_; |
||||
|
||||
|
||||
// Get the global scope. |
||||
// If running on a node, "g" points to a "global" object. |
||||
// When running on the browser, "g" points to the "window" object. |
||||
const g = Function('return this')(); |
||||
|
||||
// Chart options |
||||
// https://www.chartjs.org/docs/latest/getting-started/usage.html |
||||
const opts: any = { ... }; |
||||
|
||||
|
||||
function main() { |
||||
// SvgCanvas has a "CanvasRenderingContext2D"-compatible interface. |
||||
const ctx = new SvgCanvas(); |
||||
|
||||
// SvgCanvas lacks the canvas property. |
||||
(ctx as any).canvas = { |
||||
width: 800, |
||||
height: 400, |
||||
style: { |
||||
width: '800px', |
||||
height: '400px', |
||||
}, |
||||
}; |
||||
|
||||
// SvgCanvas does not have font glyph information, |
||||
// so manually set the ratio of (font height / font width). |
||||
ctx.fontHeightRatio = 2; |
||||
|
||||
// Chart.js needs a "HTMLCanvasElement"-like interface that has "getContext()" method. |
||||
// "getContext()" should returns a "CanvasRenderingContext2D"-compatible interface. |
||||
const el = { getContext: () => ctx }; |
||||
|
||||
// If "devicePixelRatio" is not set, Chart.js get the devicePixelRatio from "window" object. |
||||
// node.js environment has no window object. |
||||
opts.options.devicePixelRatio = 1; |
||||
|
||||
// Disable animations. |
||||
opts.options.animation = false; |
||||
opts.options.events = []; |
||||
opts.options.responsive = false; |
||||
|
||||
// Chart.js needs the "CanvasGradient" in the global scope. |
||||
const savedGradient = g.CanvasGradient; |
||||
g.CanvasGradient = SvgCanvas2DGradient; |
||||
try { |
||||
const chart = new ChartJs.Chart(el as any, opts); |
||||
} finally { |
||||
if (savedGradient) { |
||||
g.CanvasGradient = savedGradient; |
||||
} |
||||
} |
||||
|
||||
// Render as SVG. |
||||
const svgString = ctx.render(new Rect2D(0, 0 , 800, 400), 'px'); |
||||
console.log(svgString); |
||||
} |
||||
``` |
||||
|
||||
|
||||
## Rendering results |
||||
|
||||
### [Bar](https://www.chartjs.org/docs/latest/getting-started/usage.html) |
||||
![1](https://raw.githubusercontent.com/shellyln/chart.js-node-ssr-example/master/results/1.svg?sanitize=true) |
||||
|
||||
### [Donut](http://www.chartjs.org/samples/latest/charts/pie.html) |
||||
![2](https://raw.githubusercontent.com/shellyln/chart.js-node-ssr-example/master/results/2.svg?sanitize=true) |
||||
|
||||
### [Line](http://www.chartjs.org/samples/latest/charts/line/point-sizes.html) |
||||
![3](https://raw.githubusercontent.com/shellyln/chart.js-node-ssr-example/master/results/3.svg?sanitize=true) |
||||
|
||||
### [Area](http://www.chartjs.org/samples/latest/charts/area/line-stacked.html) |
||||
![4](https://raw.githubusercontent.com/shellyln/chart.js-node-ssr-example/master/results/4.svg?sanitize=true) |
||||
|
||||
|
||||
## Notes |
||||
|
||||
To import the [red-agate-svg-canvas](https://www.npmjs.com/package/red-agate-svg-canvas), ~~you need to use `babel` + `webpack`.~~ |
||||
(We have used the `import` statements for doing the [tree-shaking](https://webpack.js.org/guides/tree-shaking/). ~~The `import` statements in the `.js` not the `.mjs` files cannot import from the vanilla node.js.~~) |
||||
|
||||
`red-agate-svg-canvas/modules` directory has a `package.json` file and determines that the source files are `ES Modules`. |
||||
See [Node.js Documentation - ECMAScript Modules](https://nodejs.org/api/modules.html). |
@ -0,0 +1,3 @@ |
||||
{ |
||||
"type": "module" |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,57 @@ |
||||
{ |
||||
"name": "chart.js-node-ssr-example", |
||||
"private": false, |
||||
"version": "1.0.9", |
||||
"description": "Chart.js server side rendering example. (pure JavaScript; no native modules)", |
||||
"main": "bin/index.js", |
||||
"scripts": { |
||||
"clean": "rm -rf ./bin ./bin.esm", |
||||
"build": "npm run build:wp:prod && npm run build:esm", |
||||
"build:wp:prod": "webpack-cli --mode=production --config webpack.config.js", |
||||
"build:wp:dev": "webpack-cli --mode=development --config webpack.config.js", |
||||
"build:esm": "npm run build:esm:1 && npm run build:esm:2", |
||||
"build:esm:1": "tsc --outDir bin.esm", |
||||
"build:esm:2": "cp ./build-scripts/pkg.json ./bin.esm/package.json", |
||||
"start": "npm run start:wp", |
||||
"start:wp": "node bin/index.js", |
||||
"start:v12": "node --no-warnings --experimental-modules --es-module-specifier-resolution=node --experimental-json-modules ./bin.esm/index", |
||||
"start:v14": "node --no-warnings --es-module-specifier-resolution=node --experimental-json-modules ./bin.esm/index", |
||||
"test": "echo test", |
||||
"lint": "tslint ./src/**/*.ts -t verbose" |
||||
}, |
||||
"keywords": [ |
||||
"Chart.js", |
||||
"SSR", |
||||
"SVG", |
||||
"Canvas", |
||||
"html5" |
||||
], |
||||
"engines": { |
||||
"node": ">=12.13.0" |
||||
}, |
||||
"dependencies": { |
||||
"chart.js": "^2.9.4", |
||||
"red-agate-svg-canvas": "^0.5.0", |
||||
"red-agate-util": "^0.5.0" |
||||
}, |
||||
"devDependencies": { |
||||
"@babel/cli": "^7.12.10", |
||||
"@babel/core": "^7.12.10", |
||||
"@babel/preset-env": "^7.12.11", |
||||
"@types/chart.js": "^2.9.29", |
||||
"@types/node": "^14.14.16", |
||||
"babel-loader": "^8.2.2", |
||||
"source-map-loader": "^2.0.0", |
||||
"ts-loader": "^8.0.12", |
||||
"tslint": "^6.1.3", |
||||
"typescript": "^4.1.3", |
||||
"webpack": "^5.11.1", |
||||
"webpack-cli": "^4.3.0" |
||||
}, |
||||
"author": "shellyln", |
||||
"license": "ISC", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "https://github.com/shellyln/chart.js-node-ssr-example.git" |
||||
} |
||||
} |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 36 KiB |
@ -0,0 +1,115 @@ |
||||
// Copyright (c) 2018, Shellyl_N and Authors
|
||||
// license: ISC
|
||||
// https://github.com/shellyln
|
||||
|
||||
|
||||
import { SvgCanvas, |
||||
Rect2D, |
||||
SvgCanvas2DGradient } from 'red-agate-svg-canvas/modules'; |
||||
|
||||
// NOTE: hack bad .d.ts definition for ESM.
|
||||
// import * as ChartJs from 'chart.js'; // <- This is fine if you only use webpack.
|
||||
import * as ChartJs_ from 'chart.js'; |
||||
const ChartJs: typeof ChartJs_ = (ChartJs_ as any).default || ChartJs_; |
||||
|
||||
|
||||
|
||||
// Get the global scope.
|
||||
// If running on a node, "g" points to a "global" object.
|
||||
// When running on the browser, "g" points to the "window" object.
|
||||
|
||||
// tslint:disable-next-line:function-constructor
|
||||
const g = Function('return this')(); |
||||
|
||||
|
||||
|
||||
// Chart options
|
||||
// https://www.chartjs.org/docs/latest/getting-started/usage.html
|
||||
const opts: any = { |
||||
type: 'bar', |
||||
data: { |
||||
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'], |
||||
datasets: [{ |
||||
label: '# of Votes', |
||||
data: [12, 19, 3, 5, 2, 3], |
||||
backgroundColor: [ |
||||
'rgba(255, 99, 132, 0.2)', |
||||
'rgba(54, 162, 235, 0.2)', |
||||
'rgba(255, 206, 86, 0.2)', |
||||
'rgba(75, 192, 192, 0.2)', |
||||
'rgba(153, 102, 255, 0.2)', |
||||
'rgba(255, 159, 64, 0.2)' |
||||
], |
||||
borderColor: [ |
||||
'rgba(255,99,132,1)', |
||||
'rgba(54, 162, 235, 1)', |
||||
'rgba(255, 206, 86, 1)', |
||||
'rgba(75, 192, 192, 1)', |
||||
'rgba(153, 102, 255, 1)', |
||||
'rgba(255, 159, 64, 1)' |
||||
], |
||||
borderWidth: 1 |
||||
}] |
||||
}, |
||||
options: { |
||||
scales: { |
||||
yAxes: [{ |
||||
ticks: { |
||||
beginAtZero: true |
||||
} |
||||
}] |
||||
} |
||||
} |
||||
}; |
||||
|
||||
|
||||
|
||||
function main() { |
||||
// SvgCanvas has a "CanvasRenderingContext2D"-compatible interface.
|
||||
const ctx = new SvgCanvas(); |
||||
|
||||
// SvgCanvas lacks the canvas property.
|
||||
(ctx as any).canvas = { |
||||
width: 800, |
||||
height: 400, |
||||
style: { |
||||
width: '800px', |
||||
height: '400px', |
||||
}, |
||||
}; |
||||
|
||||
// SvgCanvas does not have font glyph information,
|
||||
// so manually set the ratio of (font height / font width).
|
||||
ctx.fontHeightRatio = 2; |
||||
|
||||
// Chart.js needs a "HTMLCanvasElement"-like interface that has "getContext()" method.
|
||||
// "getContext()" should returns a "CanvasRenderingContext2D"-compatible interface.
|
||||
const el = { getContext: () => ctx }; |
||||
|
||||
// If "devicePixelRatio" is not set, Chart.js get the devicePixelRatio from "window" object.
|
||||
// node.js environment has no window object.
|
||||
opts.options.devicePixelRatio = 1; |
||||
|
||||
// Disable animations.
|
||||
opts.options.animation = false; |
||||
opts.options.events = []; |
||||
opts.options.responsive = false; |
||||
|
||||
// Chart.js needs the "CanvasGradient" in the global scope.
|
||||
const savedGradient = g.CanvasGradient; |
||||
g.CanvasGradient = SvgCanvas2DGradient; |
||||
try { |
||||
const chart = new ChartJs.Chart(el as any, opts); |
||||
} finally { |
||||
if (savedGradient) { |
||||
g.CanvasGradient = savedGradient; |
||||
} |
||||
} |
||||
|
||||
// Render as SVG.
|
||||
const svgString = ctx.render(new Rect2D(0, 0 , 800, 400), 'px'); |
||||
console.log(svgString); |
||||
} |
||||
|
||||
|
||||
main(); |
@ -0,0 +1,34 @@ |
||||
{ |
||||
"compilerOptions": { |
||||
"moduleResolution": "node", |
||||
"module": "es2015", |
||||
"target": "es2015", |
||||
"lib": ["dom", "es6", "es2015", "es2016", "es2017", "scripthost"], |
||||
"sourceMap": true, |
||||
// "declaration": true, |
||||
// "declarationDir": "./declarations", |
||||
"noEmitOnError": true, |
||||
"noImplicitAny": true, |
||||
"suppressImplicitAnyIndexErrors": true, |
||||
"noImplicitReturns": true, |
||||
"noImplicitThis": true, |
||||
"strictNullChecks": true, |
||||
// "noUnusedParameters": true, |
||||
// "noUnusedLocals": true, |
||||
// "noFallthroughCasesInSwitch": true, |
||||
"experimentalDecorators": true, |
||||
"emitDecoratorMetadata": true, |
||||
"baseUrl": ".", |
||||
"paths": { |
||||
}, |
||||
// "traceResolution": true, |
||||
"types": ["node"], |
||||
}, |
||||
"include": [ |
||||
"src/**/*" |
||||
], |
||||
"exclude": [ |
||||
"dist", |
||||
"node_modules", |
||||
] |
||||
} |
@ -0,0 +1,30 @@ |
||||
{ |
||||
"extends": ["tslint:latest"], |
||||
"rules": { |
||||
"no-reference": false, |
||||
"no-consecutive-blank-lines": false, |
||||
"no-console": false, |
||||
"only-arrow-functions": false, |
||||
"interface-name": false, |
||||
"object-literal-sort-keys": false, |
||||
"trailing-comma": false, |
||||
"one-variable-per-declaration": false, |
||||
"ordered-imports": false, |
||||
"import-spacing": false, |
||||
"max-classes-per-file": false, |
||||
"max-line-length": [true, 240], |
||||
"prefer-object-spread": false, |
||||
"no-empty": false, |
||||
"curly": false, |
||||
"member-ordering": false, |
||||
"no-bitwise": false, |
||||
"one-line": false, |
||||
"no-empty-interface": false, |
||||
"arrow-parens": false, |
||||
"prefer-conditional-expression": false, |
||||
"prefer-for-of": false, |
||||
"space-within-parens": false, |
||||
"quotemark": false, |
||||
"no-submodule-imports": false |
||||
} |
||||
} |
@ -0,0 +1,57 @@ |
||||
var path = require('path'); |
||||
var webpack = require('webpack'); |
||||
|
||||
|
||||
|
||||
module.exports = function (env) { |
||||
return [{ |
||||
target: 'node', |
||||
entry: { |
||||
index: [ |
||||
path.resolve(__dirname, 'src/index.ts') |
||||
] |
||||
}, |
||||
output: { |
||||
library: 'example', |
||||
|
||||
libraryTarget: 'commonjs2', |
||||
filename: 'index.js', |
||||
path: path.resolve(__dirname, 'bin'), |
||||
devtoolModuleFilenameTemplate: '../[resource-path]', |
||||
}, |
||||
module: { |
||||
rules: [{ |
||||
test: /\.ts$/, |
||||
use: [ |
||||
'babel-loader', |
||||
'ts-loader', |
||||
], |
||||
}, { |
||||
test: /\.js$/, |
||||
use: ['babel-loader'], |
||||
resolve: { |
||||
fullySpecified: false, |
||||
}, |
||||
}, { |
||||
test: /\.m?js/, |
||||
resolve: { |
||||
fullySpecified: false, |
||||
}, |
||||
}, { |
||||
enforce: 'pre', |
||||
test: /\.[tj]s$/, |
||||
use: { |
||||
loader: 'source-map-loader', |
||||
options: { |
||||
} |
||||
}, |
||||
}] |
||||
}, |
||||
plugins: [], |
||||
resolve: { |
||||
extensions: ['.ts', '.js'] |
||||
}, |
||||
devtool: 'source-map' |
||||
}, |
||||
|
||||
]} |
@ -0,0 +1,14 @@ |
||||
function draw() { |
||||
var Canvas = require('canvas'), |
||||
Image = Canvas.Image, |
||||
canvas = new Canvas(200, 200), |
||||
ctx = canvas.getContext('2d'); |
||||
|
||||
ctx.font = '30px Impact'; |
||||
ctx.rotate(0.1); |
||||
ctx.fillText('Awesome!', 50, 100); |
||||
|
||||
return canvas; |
||||
} |
||||
|
||||
module.exports = draw; |
After Width: | Height: | Size: 1.2 MiB |
@ -0,0 +1 @@ |
||||
../detect-libc/bin/detect-libc.js |
@ -0,0 +1 @@ |
||||
../node-pre-gyp/bin/node-pre-gyp |
@ -0,0 +1 @@ |
||||
../rc/cli.js |
@ -0,0 +1,4 @@ |
||||
'use strict'; |
||||
module.exports = function () { |
||||
return /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]/g; |
||||
}; |
@ -0,0 +1,21 @@ |
||||
The MIT License (MIT) |
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
@ -0,0 +1,108 @@ |
||||
{ |
||||
"_from": "ansi-regex@^2.0.0", |
||||
"_id": "ansi-regex@2.1.1", |
||||
"_inBundle": false, |
||||
"_integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", |
||||
"_location": "/ansi-regex", |
||||
"_phantomChildren": {}, |
||||
"_requested": { |
||||
"type": "range", |
||||
"registry": true, |
||||
"raw": "ansi-regex@^2.0.0", |
||||
"name": "ansi-regex", |
||||
"escapedName": "ansi-regex", |
||||
"rawSpec": "^2.0.0", |
||||
"saveSpec": null, |
||||
"fetchSpec": "^2.0.0" |
||||
}, |
||||
"_requiredBy": [ |
||||
"/strip-ansi" |
||||
], |
||||
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", |
||||
"_shasum": "c3b33ab5ee360d86e0e628f0468ae7ef27d654df", |
||||
"_spec": "ansi-regex@^2.0.0", |
||||
"_where": "/home/sigonasr2/divar/server/node_modules/strip-ansi", |
||||
"author": { |
||||
"name": "Sindre Sorhus", |
||||
"email": "sindresorhus@gmail.com", |
||||
"url": "sindresorhus.com" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/chalk/ansi-regex/issues" |
||||
}, |
||||
"bundleDependencies": false, |
||||
"deprecated": false, |
||||
"description": "Regular expression for matching ANSI escape codes", |
||||
"devDependencies": { |
||||
"ava": "0.17.0", |
||||
"xo": "0.16.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">=0.10.0" |
||||
}, |
||||
"files": [ |
||||
"index.js" |
||||
], |
||||
"homepage": "https://github.com/chalk/ansi-regex#readme", |
||||
"keywords": [ |
||||
"ansi", |
||||
"styles", |
||||
"color", |
||||
"colour", |
||||
"colors", |
||||
"terminal", |
||||
"console", |
||||
"cli", |
||||
"string", |
||||
"tty", |
||||
"escape", |
||||
"formatting", |
||||
"rgb", |
||||
"256", |
||||
"shell", |
||||
"xterm", |
||||
"command-line", |
||||
"text", |
||||
"regex", |
||||
"regexp", |
||||
"re", |
||||
"match", |
||||
"test", |
||||
"find", |
||||
"pattern" |
||||
], |
||||
"license": "MIT", |
||||
"maintainers": [ |
||||
{ |
||||
"name": "Sindre Sorhus", |
||||
"email": "sindresorhus@gmail.com", |
||||
"url": "sindresorhus.com" |
||||
}, |
||||
{ |
||||
"name": "Joshua Appelman", |
||||
"email": "jappelman@xebia.com", |
||||
"url": "jbnicolai.com" |
||||
}, |
||||
{ |
||||
"name": "JD Ballard", |
||||
"email": "i.am.qix@gmail.com", |
||||
"url": "github.com/qix-" |
||||
} |
||||
], |
||||
"name": "ansi-regex", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git+https://github.com/chalk/ansi-regex.git" |
||||
}, |
||||
"scripts": { |
||||
"test": "xo && ava --verbose", |
||||
"view-supported": "node fixtures/view-codes.js" |
||||
}, |
||||
"version": "2.1.1", |
||||
"xo": { |
||||
"rules": { |
||||
"guard-for-in": 0, |
||||
"no-loop-func": 0 |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,39 @@ |
||||
# ansi-regex [![Build Status](https://travis-ci.org/chalk/ansi-regex.svg?branch=master)](https://travis-ci.org/chalk/ansi-regex) |
||||
|
||||
> Regular expression for matching [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code) |
||||
|
||||
|
||||
## Install |
||||
|
||||
``` |
||||
$ npm install --save ansi-regex |
||||
``` |
||||
|
||||
|
||||
## Usage |
||||
|
||||
```js |
||||
const ansiRegex = require('ansi-regex'); |
||||
|
||||
ansiRegex().test('\u001b[4mcake\u001b[0m'); |
||||
//=> true |
||||
|
||||
ansiRegex().test('cake'); |
||||
//=> false |
||||
|
||||
'\u001b[4mcake\u001b[0m'.match(ansiRegex()); |
||||
//=> ['\u001b[4m', '\u001b[0m'] |
||||
``` |
||||
|
||||
## FAQ |
||||
|
||||
### Why do you test for codes not in the ECMA 48 standard? |
||||
|
||||
Some of the codes we run as a test are codes that we acquired finding various lists of non-standard or manufacturer specific codes. If I recall correctly, we test for both standard and non-standard codes, as most of them follow the same or similar format and can be safely matched in strings without the risk of removing actual string content. There are a few non-standard control codes that do not follow the traditional format (i.e. they end in numbers) thus forcing us to exclude them from the test because we cannot reliably match them. |
||||
|
||||
On the historical side, those ECMA standards were established in the early 90's whereas the VT100, for example, was designed in the mid/late 70's. At that point in time, control codes were still pretty ungoverned and engineers used them for a multitude of things, namely to activate hardware ports that may have been proprietary. Somewhere else you see a similar 'anarchy' of codes is in the x86 architecture for processors; there are a ton of "interrupts" that can mean different things on certain brands of processors, most of which have been phased out. |
||||
|
||||
|
||||
## License |
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com) |
@ -0,0 +1,14 @@ |
||||
Copyright (c) 2015, Rebecca Turner <me@re-becca.org> |
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any |
||||
purpose with or without fee is hereby granted, provided that the above |
||||
copyright notice and this permission notice appear in all copies. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
||||
|
@ -0,0 +1,94 @@ |
||||
aproba |
||||
====== |
||||
|
||||
A ridiculously light-weight function argument validator |
||||
|
||||
``` |
||||
var validate = require("aproba") |
||||
|
||||
function myfunc(a, b, c) { |
||||
// `a` must be a string, `b` a number, `c` a function |
||||
validate('SNF', arguments) // [a,b,c] is also valid |
||||
} |
||||
|
||||
myfunc('test', 23, function () {}) // ok |
||||
myfunc(123, 23, function () {}) // type error |
||||
myfunc('test', 23) // missing arg error |
||||
myfunc('test', 23, function () {}, true) // too many args error |
||||
|
||||
``` |
||||
|
||||
Valid types are: |
||||
|
||||
| type | description |
||||
| :--: | :---------- |
||||
| * | matches any type |
||||
| A | `Array.isArray` OR an `arguments` object |
||||
| S | typeof == string |
||||
| N | typeof == number |
||||
| F | typeof == function |
||||
| O | typeof == object and not type A and not type E |
||||
| B | typeof == boolean |
||||
| E | `instanceof Error` OR `null` **(special: see below)** |
||||
| Z | == `null` |
||||
|
||||
Validation failures throw one of three exception types, distinguished by a |
||||
`code` property of `EMISSINGARG`, `EINVALIDTYPE` or `ETOOMANYARGS`. |
||||
|
||||
If you pass in an invalid type then it will throw with a code of |
||||
`EUNKNOWNTYPE`. |
||||
|
||||
If an **error** argument is found and is not null then the remaining |
||||
arguments are optional. That is, if you say `ESO` then that's like using a |
||||
non-magical `E` in: `E|ESO|ZSO`. |
||||
|
||||
### But I have optional arguments?! |
||||
|
||||
You can provide more than one signature by separating them with pipes `|`. |
||||
If any signature matches the arguments then they'll be considered valid. |
||||
|
||||
So for example, say you wanted to write a signature for |
||||
`fs.createWriteStream`. The docs for it describe it thusly: |
||||
|
||||
``` |
||||
fs.createWriteStream(path[, options]) |
||||
``` |
||||
|
||||
This would be a signature of `SO|S`. That is, a string and and object, or |
||||
just a string. |
||||
|
||||
Now, if you read the full `fs` docs, you'll see that actually path can ALSO |
||||
be a buffer. And options can be a string, that is: |
||||
``` |
||||
path <String> | <Buffer> |
||||
options <String> | <Object> |
||||
``` |
||||
|
||||
To reproduce this you have to fully enumerate all of the possible |
||||
combinations and that implies a signature of `SO|SS|OO|OS|S|O`. The |
||||
awkwardness is a feature: It reminds you of the complexity you're adding to |
||||
your API when you do this sort of thing. |
||||
|
||||
|
||||
### Browser support |
||||
|
||||
This has no dependencies and should work in browsers, though you'll have |
||||
noisier stack traces. |
||||
|
||||
### Why this exists |
||||
|
||||
I wanted a very simple argument validator. It needed to do two things: |
||||
|
||||
1. Be more concise and easier to use than assertions |
||||
|
||||
2. Not encourage an infinite bikeshed of DSLs |
||||
|
||||
This is why types are specified by a single character and there's no such |
||||
thing as an optional argument. |
||||
|
||||
This is not intended to validate user data. This is specifically about |
||||
asserting the interface of your functions. |
||||
|
||||
If you need greater validation, I encourage you to write them by hand or |
||||
look elsewhere. |
||||
|
@ -0,0 +1,105 @@ |
||||
'use strict' |
||||
|
||||
function isArguments (thingy) { |
||||
return thingy != null && typeof thingy === 'object' && thingy.hasOwnProperty('callee') |
||||
} |
||||
|
||||
var types = { |
||||
'*': {label: 'any', check: function () { return true }}, |
||||
A: {label: 'array', check: function (thingy) { return Array.isArray(thingy) || isArguments(thingy) }}, |
||||
S: {label: 'string', check: function (thingy) { return typeof thingy === 'string' }}, |
||||
N: {label: 'number', check: function (thingy) { return typeof thingy === 'number' }}, |
||||
F: {label: 'function', check: function (thingy) { return typeof thingy === 'function' }}, |
||||
O: {label: 'object', check: function (thingy) { return typeof thingy === 'object' && thingy != null && !types.A.check(thingy) && !types.E.check(thingy) }}, |
||||
B: {label: 'boolean', check: function (thingy) { return typeof thingy === 'boolean' }}, |
||||
E: {label: 'error', check: function (thingy) { return thingy instanceof Error }}, |
||||
Z: {label: 'null', check: function (thingy) { return thingy == null }} |
||||
} |
||||
|
||||
function addSchema (schema, arity) { |
||||
var group = arity[schema.length] = arity[schema.length] || [] |
||||
if (group.indexOf(schema) === -1) group.push(schema) |
||||
} |
||||
|
||||
var validate = module.exports = function (rawSchemas, args) { |
||||
if (arguments.length !== 2) throw wrongNumberOfArgs(['SA'], arguments.length) |
||||
if (!rawSchemas) throw missingRequiredArg(0, 'rawSchemas') |
||||
if (!args) throw missingRequiredArg(1, 'args') |
||||
if (!types.S.check(rawSchemas)) throw invalidType(0, ['string'], rawSchemas) |
||||
if (!types.A.check(args)) throw invalidType(1, ['array'], args) |
||||
var schemas = rawSchemas.split('|') |
||||
var arity = {} |
||||
|
||||
schemas.forEach(function (schema) { |
||||
for (var ii = 0; ii < schema.length; ++ii) { |
||||
var type = schema[ii] |
||||
if (!types[type]) throw unknownType(ii, type) |
||||
} |
||||
if (/E.*E/.test(schema)) throw moreThanOneError(schema) |
||||
addSchema(schema, arity) |
||||
if (/E/.test(schema)) { |
||||
addSchema(schema.replace(/E.*$/, 'E'), arity) |
||||
addSchema(schema.replace(/E/, 'Z'), arity) |
||||
if (schema.length === 1) addSchema('', arity) |
||||
} |
||||
}) |
||||
var matching = arity[args.length] |
||||
if (!matching) { |
||||
throw wrongNumberOfArgs(Object.keys(arity), args.length) |
||||
} |
||||
for (var ii = 0; ii < args.length; ++ii) { |
||||
var newMatching = matching.filter(function (schema) { |
||||
var type = schema[ii] |
||||
var typeCheck = types[type].check |
||||
return typeCheck(args[ii]) |
||||
}) |
||||
if (!newMatching.length) { |
||||
var labels = matching.map(function (schema) { |
||||
return types[schema[ii]].label |
||||
}).filter(function (schema) { return schema != null }) |
||||
throw invalidType(ii, labels, args[ii]) |
||||
} |
||||
matching = newMatching |
||||
} |
||||
} |
||||
|
||||
function missingRequiredArg (num) { |
||||
return newException('EMISSINGARG', 'Missing required argument #' + (num + 1)) |
||||
} |
||||
|
||||
function unknownType (num, type) { |
||||
return newException('EUNKNOWNTYPE', 'Unknown type ' + type + ' in argument #' + (num + 1)) |
||||
} |
||||
|
||||
function invalidType (num, expectedTypes, value) { |
||||
var valueType |
||||
Object.keys(types).forEach(function (typeCode) { |
||||
if (types[typeCode].check(value)) valueType = types[typeCode].label |
||||
}) |
||||
return newException('EINVALIDTYPE', 'Argument #' + (num + 1) + ': Expected ' + |
||||
englishList(expectedTypes) + ' but got ' + valueType) |
||||
} |
||||
|
||||
function englishList (list) { |
||||
return list.join(', ').replace(/, ([^,]+)$/, ' or $1') |
||||
} |
||||
|
||||
function wrongNumberOfArgs (expected, got) { |
||||
var english = englishList(expected) |
||||
var args = expected.every(function (ex) { return ex.length === 1 }) |
||||
? 'argument' |
||||
: 'arguments' |
||||
return newException('EWRONGARGCOUNT', 'Expected ' + english + ' ' + args + ' but got ' + got) |
||||
} |
||||
|
||||
function moreThanOneError (schema) { |
||||
return newException('ETOOMANYERRORTYPES', |
||||
'Only one error type per argument signature is allowed, more than one found in "' + schema + '"') |
||||
} |
||||
|
||||
function newException (code, msg) { |
||||
var e = new Error(msg) |
||||
e.code = code |
||||
if (Error.captureStackTrace) Error.captureStackTrace(e, validate) |
||||
return e |
||||
} |
@ -0,0 +1,62 @@ |
||||
{ |
||||
"_from": "aproba@^1.0.3", |
||||
"_id": "aproba@1.2.0", |
||||
"_inBundle": false, |
||||
"_integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", |
||||
"_location": "/aproba", |
||||
"_phantomChildren": {}, |
||||
"_requested": { |
||||
"type": "range", |
||||
"registry": true, |
||||
"raw": "aproba@^1.0.3", |
||||
"name": "aproba", |
||||
"escapedName": "aproba", |
||||
"rawSpec": "^1.0.3", |
||||
"saveSpec": null, |
||||
"fetchSpec": "^1.0.3" |
||||
}, |
||||
"_requiredBy": [ |
||||
"/gauge" |
||||
], |
||||
"_resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", |
||||
"_shasum": "6802e6264efd18c790a1b0d517f0f2627bf2c94a", |
||||
"_spec": "aproba@^1.0.3", |
||||
"_where": "/home/sigonasr2/divar/server/node_modules/gauge", |
||||
"author": { |
||||
"name": "Rebecca Turner", |
||||
"email": "me@re-becca.org" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/iarna/aproba/issues" |
||||
}, |
||||
"bundleDependencies": false, |
||||
"dependencies": {}, |
||||
"deprecated": false, |
||||
"description": "A ridiculously light-weight argument validator (now browser friendly)", |
||||
"devDependencies": { |
||||
"standard": "^10.0.3", |
||||
"tap": "^10.0.2" |
||||
}, |
||||
"directories": { |
||||
"test": "test" |
||||
}, |
||||
"files": [ |
||||
"index.js" |
||||
], |
||||
"homepage": "https://github.com/iarna/aproba", |
||||
"keywords": [ |
||||
"argument", |
||||
"validate" |
||||
], |
||||
"license": "ISC", |
||||
"main": "index.js", |
||||
"name": "aproba", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git+https://github.com/iarna/aproba.git" |
||||
}, |
||||
"scripts": { |
||||
"test": "standard && tap -j3 test/*.js" |
||||
}, |
||||
"version": "1.2.0" |
||||
} |
@ -0,0 +1,5 @@ |
||||
Copyright (c) 2015, Rebecca Turner |
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
@ -0,0 +1,195 @@ |
||||
are-we-there-yet |
||||
---------------- |
||||
|
||||
Track complex hiearchies of asynchronous task completion statuses. This is |
||||
intended to give you a way of recording and reporting the progress of the big |
||||
recursive fan-out and gather type workflows that are so common in async. |
||||
|
||||
What you do with this completion data is up to you, but the most common use case is to |
||||
feed it to one of the many progress bar modules. |
||||
|
||||
Most progress bar modules include a rudamentary version of this, but my |
||||
needs were more complex. |
||||
|
||||
Usage |
||||
===== |
||||
|
||||
```javascript |
||||
var TrackerGroup = require("are-we-there-yet").TrackerGroup |
||||
|
||||
var top = new TrackerGroup("program") |
||||
|
||||
var single = top.newItem("one thing", 100) |
||||
single.completeWork(20) |
||||
|
||||
console.log(top.completed()) // 0.2 |
||||
|
||||
fs.stat("file", function(er, stat) { |
||||
if (er) throw er |
||||
var stream = top.newStream("file", stat.size) |
||||
console.log(top.completed()) // now 0.1 as single is 50% of the job and is 20% complete |
||||
// and 50% * 20% == 10% |
||||
fs.createReadStream("file").pipe(stream).on("data", function (chunk) { |
||||
// do stuff with chunk |
||||
}) |
||||
top.on("change", function (name) { |
||||
// called each time a chunk is read from "file" |
||||
// top.completed() will start at 0.1 and fill up to 0.6 as the file is read |
||||
}) |
||||
}) |
||||
``` |
||||
|
||||
Shared Methods |
||||
============== |
||||
|
||||
* var completed = tracker.completed() |
||||
|
||||
Implemented in: `Tracker`, `TrackerGroup`, `TrackerStream` |
||||
|
||||
Returns the ratio of completed work to work to be done. Range of 0 to 1. |
||||
|
||||
* tracker.finish() |
||||
|
||||
Implemented in: `Tracker`, `TrackerGroup` |
||||
|
||||
Marks the tracker as completed. With a TrackerGroup this marks all of its |
||||
components as completed. |
||||
|
||||
Marks all of the components of this tracker as finished, which in turn means |
||||
that `tracker.completed()` for this will now be 1. |
||||
|
||||
This will result in one or more `change` events being emitted. |
||||
|
||||
Events |
||||
====== |
||||
|
||||
All tracker objects emit `change` events with the following arguments: |
||||
|
||||
``` |
||||
function (name, completed, tracker) |
||||
``` |
||||
|
||||
`name` is the name of the tracker that originally emitted the event, |
||||
or if it didn't have one, the first containing tracker group that had one. |
||||
|
||||
`completed` is the percent complete (as returned by `tracker.completed()` method). |
||||
|
||||
`tracker` is the tracker object that you are listening for events on. |
||||
|
||||
TrackerGroup |
||||
============ |
||||
|
||||
* var tracker = new TrackerGroup(**name**) |
||||
|
||||
* **name** *(optional)* - The name of this tracker group, used in change |
||||
notifications if the component updating didn't have a name. Defaults to undefined. |
||||
|
||||
Creates a new empty tracker aggregation group. These are trackers whose |
||||
completion status is determined by the completion status of other trackers. |
||||
|
||||
* tracker.addUnit(**otherTracker**, **weight**) |
||||
|
||||
* **otherTracker** - Any of the other are-we-there-yet tracker objects |
||||
* **weight** *(optional)* - The weight to give the tracker, defaults to 1. |
||||
|
||||
Adds the **otherTracker** to this aggregation group. The weight determines |
||||
how long you expect this tracker to take to complete in proportion to other |
||||
units. So for instance, if you add one tracker with a weight of 1 and |
||||
another with a weight of 2, you're saying the second will take twice as long |
||||
to complete as the first. As such, the first will account for 33% of the |
||||
completion of this tracker and the second will account for the other 67%. |
||||
|
||||
Returns **otherTracker**. |
||||
|
||||
* var subGroup = tracker.newGroup(**name**, **weight**) |
||||
|
||||
The above is exactly equivalent to: |
||||
|
||||
```javascript |
||||
var subGroup = tracker.addUnit(new TrackerGroup(name), weight) |
||||
``` |
||||
|
||||
* var subItem = tracker.newItem(**name**, **todo**, **weight**) |
||||
|
||||
The above is exactly equivalent to: |
||||
|
||||
```javascript |
||||
var subItem = tracker.addUnit(new Tracker(name, todo), weight) |
||||
``` |
||||
|
||||
* var subStream = tracker.newStream(**name**, **todo**, **weight**) |
||||
|
||||
The above is exactly equivalent to: |
||||
|
||||
```javascript |
||||
var subStream = tracker.addUnit(new TrackerStream(name, todo), weight) |
||||
``` |
||||
|
||||
* console.log( tracker.debug() ) |
||||
|
||||
Returns a tree showing the completion of this tracker group and all of its |
||||
children, including recursively entering all of the children. |
||||
|
||||
Tracker |
||||
======= |
||||
|
||||
* var tracker = new Tracker(**name**, **todo**) |
||||
|
||||
* **name** *(optional)* The name of this counter to report in change |
||||
events. Defaults to undefined. |
||||
* **todo** *(optional)* The amount of work todo (a number). Defaults to 0. |
||||
|
||||
Ordinarily these are constructed as a part of a tracker group (via |
||||
`newItem`). |
||||
|
||||
* var completed = tracker.completed() |
||||
|
||||
Returns the ratio of completed work to work to be done. Range of 0 to 1. If |
||||
total work to be done is 0 then it will return 0. |
||||
|
||||
* tracker.addWork(**todo**) |
||||
|
||||
* **todo** A number to add to the amount of work to be done. |
||||
|
||||
Increases the amount of work to be done, thus decreasing the completion |
||||
percentage. Triggers a `change` event. |
||||
|
||||
* tracker.completeWork(**completed**) |
||||
|
||||
* **completed** A number to add to the work complete |
||||
|
||||
Increase the amount of work complete, thus increasing the completion percentage. |
||||
Will never increase the work completed past the amount of work todo. That is, |
||||
percentages > 100% are not allowed. Triggers a `change` event. |
||||
|
||||
* tracker.finish() |
||||
|
||||
Marks this tracker as finished, tracker.completed() will now be 1. Triggers |
||||
a `change` event. |
||||
|
||||
TrackerStream |
||||
============= |
||||
|
||||
* var tracker = new TrackerStream(**name**, **size**, **options**) |
||||
|
||||
* **name** *(optional)* The name of this counter to report in change |
||||
events. Defaults to undefined. |
||||
* **size** *(optional)* The number of bytes being sent through this stream. |
||||
* **options** *(optional)* A hash of stream options |
||||
|
||||
The tracker stream object is a pass through stream that updates an internal |
||||
tracker object each time a block passes through. It's intended to track |
||||
downloads, file extraction and other related activities. You use it by piping |
||||
your data source into it and then using it as your data source. |
||||
|
||||
If your data has a length attribute then that's used as the amount of work |
||||
completed when the chunk is passed through. If it does not (eg, object |
||||
streams) then each chunk counts as completing 1 unit of work, so your size |
||||
should be the total number of objects being streamed. |
||||
|
||||
* tracker.addWork(**todo**) |
||||
|
||||
* **todo** Increase the expected overall size by **todo** bytes. |
||||
|
||||
Increases the amount of work to be done, thus decreasing the completion |
||||
percentage. Triggers a `change` event. |
@ -0,0 +1,4 @@ |
||||
'use strict' |
||||
exports.TrackerGroup = require('./tracker-group.js') |
||||
exports.Tracker = require('./tracker.js') |
||||
exports.TrackerStream = require('./tracker-stream.js') |
@ -0,0 +1 @@ |
||||
node_modules |
@ -0,0 +1,4 @@ |
||||
language: node_js |
||||
node_js: |
||||
- "0.8" |
||||
- "0.10" |
@ -0,0 +1,6 @@ |
||||
|
||||
test: |
||||
@node_modules/.bin/tape test.js
|
||||
|
||||
.PHONY: test |
||||
|
@ -0,0 +1,60 @@ |
||||
|
||||
# isarray |
||||
|
||||
`Array#isArray` for older browsers. |
||||
|
||||
[![build status](https://secure.travis-ci.org/juliangruber/isarray.svg)](http://travis-ci.org/juliangruber/isarray) |
||||
[![downloads](https://img.shields.io/npm/dm/isarray.svg)](https://www.npmjs.org/package/isarray) |
||||
|
||||
[![browser support](https://ci.testling.com/juliangruber/isarray.png) |
||||
](https://ci.testling.com/juliangruber/isarray) |
||||
|
||||
## Usage |
||||
|
||||
```js |
||||
var isArray = require('isarray'); |
||||
|
||||
console.log(isArray([])); // => true |
||||
console.log(isArray({})); // => false |
||||
``` |
||||
|
||||
## Installation |
||||
|
||||
With [npm](http://npmjs.org) do |
||||
|
||||
```bash |
||||
$ npm install isarray |
||||
``` |
||||
|
||||
Then bundle for the browser with |
||||
[browserify](https://github.com/substack/browserify). |
||||
|
||||
With [component](http://component.io) do |
||||
|
||||
```bash |
||||
$ component install juliangruber/isarray |
||||
``` |
||||
|
||||
## License |
||||
|
||||
(MIT) |
||||
|
||||
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of |
||||
this software and associated documentation files (the "Software"), to deal in |
||||
the Software without restriction, including without limitation the rights to |
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
||||
of the Software, and to permit persons to whom the Software is furnished to do |
||||
so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in all |
||||
copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
SOFTWARE. |
@ -0,0 +1,19 @@ |
||||
{ |
||||
"name" : "isarray", |
||||
"description" : "Array#isArray for older browsers", |
||||
"version" : "0.0.1", |
||||
"repository" : "juliangruber/isarray", |
||||
"homepage": "https://github.com/juliangruber/isarray", |
||||
"main" : "index.js", |
||||
"scripts" : [ |
||||
"index.js" |
||||
], |
||||
"dependencies" : {}, |
||||
"keywords": ["browser","isarray","array"], |
||||
"author": { |
||||
"name": "Julian Gruber", |
||||
"email": "mail@juliangruber.com", |
||||
"url": "http://juliangruber.com" |
||||
}, |
||||
"license": "MIT" |
||||
} |
@ -0,0 +1,5 @@ |
||||
var toString = {}.toString; |
||||
|
||||
module.exports = Array.isArray || function (arr) { |
||||
return toString.call(arr) == '[object Array]'; |
||||
}; |
@ -0,0 +1,73 @@ |
||||
{ |
||||
"_from": "isarray@~1.0.0", |
||||
"_id": "isarray@1.0.0", |
||||
"_inBundle": false, |
||||
"_integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", |
||||
"_location": "/are-we-there-yet/isarray", |
||||
"_phantomChildren": {}, |
||||
"_requested": { |
||||
"type": "range", |
||||
"registry": true, |
||||
"raw": "isarray@~1.0.0", |
||||
"name": "isarray", |
||||
"escapedName": "isarray", |
||||
"rawSpec": "~1.0.0", |
||||
"saveSpec": null, |
||||
"fetchSpec": "~1.0.0" |
||||
}, |
||||
"_requiredBy": [ |
||||
"/are-we-there-yet/readable-stream" |
||||
], |
||||
"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", |
||||
"_shasum": "bb935d48582cba168c06834957a54a3e07124f11", |
||||
"_spec": "isarray@~1.0.0", |
||||
"_where": "/home/sigonasr2/divar/server/node_modules/are-we-there-yet/node_modules/readable-stream", |
||||
"author": { |
||||
"name": "Julian Gruber", |
||||
"email": "mail@juliangruber.com", |
||||
"url": "http://juliangruber.com" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/juliangruber/isarray/issues" |
||||
}, |
||||
"bundleDependencies": false, |
||||
"dependencies": {}, |
||||
"deprecated": false, |
||||
"description": "Array#isArray for older browsers", |
||||
"devDependencies": { |
||||
"tape": "~2.13.4" |
||||
}, |
||||
"homepage": "https://github.com/juliangruber/isarray", |
||||
"keywords": [ |
||||
"browser", |
||||
"isarray", |
||||
"array" |
||||
], |
||||
"license": "MIT", |
||||
"main": "index.js", |
||||
"name": "isarray", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git://github.com/juliangruber/isarray.git" |
||||
}, |
||||
"scripts": { |
||||
"test": "tape test.js" |
||||
}, |
||||
"testling": { |
||||
"files": "test.js", |
||||
"browsers": [ |
||||
"ie/8..latest", |
||||
"firefox/17..latest", |
||||
"firefox/nightly", |
||||
"chrome/22..latest", |
||||
"chrome/canary", |
||||
"opera/12..latest", |
||||
"opera/next", |
||||
"safari/5.1..latest", |
||||
"ipad/6.0..latest", |
||||
"iphone/6.0..latest", |
||||
"android-browser/4.2..latest" |
||||
] |
||||
}, |
||||
"version": "1.0.0" |
||||
} |
@ -0,0 +1,20 @@ |
||||
var isArray = require('./'); |
||||
var test = require('tape'); |
||||
|
||||
test('is array', function(t){ |
||||
t.ok(isArray([])); |
||||
t.notOk(isArray({})); |
||||
t.notOk(isArray(null)); |
||||
t.notOk(isArray(false)); |
||||
|
||||
var obj = {}; |
||||
obj[0] = true; |
||||
t.notOk(isArray(obj)); |
||||
|
||||
var arr = []; |
||||
arr.foo = 'bar'; |
||||
t.ok(isArray(arr)); |
||||
|
||||
t.end(); |
||||
}); |
||||
|
@ -0,0 +1,34 @@ |
||||
sudo: false |
||||
language: node_js |
||||
before_install: |
||||
- (test $NPM_LEGACY && npm install -g npm@2 && npm install -g npm@3) || true |
||||
notifications: |
||||
email: false |
||||
matrix: |
||||
fast_finish: true |
||||
include: |
||||
- node_js: '0.8' |
||||
env: NPM_LEGACY=true |
||||
- node_js: '0.10' |
||||
env: NPM_LEGACY=true |
||||
- node_js: '0.11' |
||||
env: NPM_LEGACY=true |
||||
- node_js: '0.12' |
||||
env: NPM_LEGACY=true |
||||
- node_js: 1 |
||||
env: NPM_LEGACY=true |
||||
- node_js: 2 |
||||
env: NPM_LEGACY=true |
||||
- node_js: 3 |
||||
env: NPM_LEGACY=true |
||||
- node_js: 4 |
||||
- node_js: 5 |
||||
- node_js: 6 |
||||
- node_js: 7 |
||||
- node_js: 8 |
||||
- node_js: 9 |
||||
script: "npm run test" |
||||
env: |
||||
global: |
||||
- secure: rE2Vvo7vnjabYNULNyLFxOyt98BoJexDqsiOnfiD6kLYYsiQGfr/sbZkPMOFm9qfQG7pjqx+zZWZjGSswhTt+626C0t/njXqug7Yps4c3dFblzGfreQHp7wNX5TFsvrxd6dAowVasMp61sJcRnB2w8cUzoe3RAYUDHyiHktwqMc= |
||||
- secure: g9YINaKAdMatsJ28G9jCGbSaguXCyxSTy+pBO6Ch0Cf57ZLOTka3HqDj8p3nV28LUIHZ3ut5WO43CeYKwt4AUtLpBS3a0dndHdY6D83uY6b2qh5hXlrcbeQTq2cvw2y95F7hm4D1kwrgZ7ViqaKggRcEupAL69YbJnxeUDKWEdI= |
38
server/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md
generated
vendored
38
server/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md
generated
vendored
@ -0,0 +1,38 @@ |
||||
# Developer's Certificate of Origin 1.1 |
||||
|
||||
By making a contribution to this project, I certify that: |
||||
|
||||
* (a) The contribution was created in whole or in part by me and I |
||||
have the right to submit it under the open source license |
||||
indicated in the file; or |
||||
|
||||
* (b) The contribution is based upon previous work that, to the best |
||||
of my knowledge, is covered under an appropriate open source |
||||
license and I have the right under that license to submit that |
||||
work with modifications, whether created in whole or in part |
||||
by me, under the same open source license (unless I am |
||||
permitted to submit under a different license), as indicated |
||||
in the file; or |
||||
|
||||
* (c) The contribution was provided directly to me by some other |
||||
person who certified (a), (b) or (c) and I have not modified |
||||
it. |
||||
|
||||
* (d) I understand and agree that this project and the contribution |
||||
are public and that a record of the contribution (including all |
||||
personal information I submit with it, including my sign-off) is |
||||
maintained indefinitely and may be redistributed consistent with |
||||
this project or the open source license(s) involved. |
||||
|
||||
## Moderation Policy |
||||
|
||||
The [Node.js Moderation Policy] applies to this WG. |
||||
|
||||
## Code of Conduct |
||||
|
||||
The [Node.js Code of Conduct][] applies to this WG. |
||||
|
||||
[Node.js Code of Conduct]: |
||||
https://github.com/nodejs/node/blob/master/CODE_OF_CONDUCT.md |
||||
[Node.js Moderation Policy]: |
||||
https://github.com/nodejs/TSC/blob/master/Moderation-Policy.md |
136
server/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md
generated
vendored
136
server/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md
generated
vendored
@ -0,0 +1,136 @@ |
||||
### Streams Working Group |
||||
|
||||
The Node.js Streams is jointly governed by a Working Group |
||||
(WG) |
||||
that is responsible for high-level guidance of the project. |
||||
|
||||
The WG has final authority over this project including: |
||||
|
||||
* Technical direction |
||||
* Project governance and process (including this policy) |
||||
* Contribution policy |
||||
* GitHub repository hosting |
||||
* Conduct guidelines |
||||
* Maintaining the list of additional Collaborators |
||||
|
||||
For the current list of WG members, see the project |
||||
[README.md](./README.md#current-project-team-members). |
||||
|
||||
### Collaborators |
||||
|
||||
The readable-stream GitHub repository is |
||||
maintained by the WG and additional Collaborators who are added by the |
||||
WG on an ongoing basis. |
||||
|
||||
Individuals making significant and valuable contributions are made |
||||
Collaborators and given commit-access to the project. These |
||||
individuals are identified by the WG and their addition as |
||||
Collaborators is discussed during the WG meeting. |
||||
|
||||
_Note:_ If you make a significant contribution and are not considered |
||||
for commit-access log an issue or contact a WG member directly and it |
||||
will be brought up in the next WG meeting. |
||||
|
||||
Modifications of the contents of the readable-stream repository are |
||||
made on |
||||
a collaborative basis. Anybody with a GitHub account may propose a |
||||
modification via pull request and it will be considered by the project |
||||
Collaborators. All pull requests must be reviewed and accepted by a |
||||
Collaborator with sufficient expertise who is able to take full |
||||
responsibility for the change. In the case of pull requests proposed |
||||
by an existing Collaborator, an additional Collaborator is required |
||||
for sign-off. Consensus should be sought if additional Collaborators |
||||
participate and there is disagreement around a particular |
||||
modification. See _Consensus Seeking Process_ below for further detail |
||||
on the consensus model used for governance. |
||||
|
||||
Collaborators may opt to elevate significant or controversial |
||||
modifications, or modifications that have not found consensus to the |
||||
WG for discussion by assigning the ***WG-agenda*** tag to a pull |
||||
request or issue. The WG should serve as the final arbiter where |
||||
required. |
||||
|
||||
For the current list of Collaborators, see the project |
||||
[README.md](./README.md#members). |
||||
|
||||
### WG Membership |
||||
|
||||
WG seats are not time-limited. There is no fixed size of the WG. |
||||
However, the expected target is between 6 and 12, to ensure adequate |
||||
coverage of important areas of expertise, balanced with the ability to |
||||
make decisions efficiently. |
||||
|
||||
There is no specific set of requirements or qualifications for WG |
||||
membership beyond these rules. |
||||
|
||||
The WG may add additional members to the WG by unanimous consensus. |
||||
|
||||
A WG member may be removed from the WG by voluntary resignation, or by |
||||
unanimous consensus of all other WG members. |
||||
|
||||
Changes to WG membership should be posted in the agenda, and may be |
||||
suggested as any other agenda item (see "WG Meetings" below). |
||||
|
||||
If an addition or removal is proposed during a meeting, and the full |
||||
WG is not in attendance to participate, then the addition or removal |
||||
is added to the agenda for the subsequent meeting. This is to ensure |
||||
that all members are given the opportunity to participate in all |
||||
membership decisions. If a WG member is unable to attend a meeting |
||||
where a planned membership decision is being made, then their consent |
||||
is assumed. |
||||
|
||||
No more than 1/3 of the WG members may be affiliated with the same |
||||
employer. If removal or resignation of a WG member, or a change of |
||||
employment by a WG member, creates a situation where more than 1/3 of |
||||
the WG membership shares an employer, then the situation must be |
||||
immediately remedied by the resignation or removal of one or more WG |
||||
members affiliated with the over-represented employer(s). |
||||
|
||||
### WG Meetings |
||||
|
||||
The WG meets occasionally on a Google Hangout On Air. A designated moderator |
||||
approved by the WG runs the meeting. Each meeting should be |
||||
published to YouTube. |
||||
|
||||
Items are added to the WG agenda that are considered contentious or |
||||
are modifications of governance, contribution policy, WG membership, |
||||
or release process. |
||||
|
||||
The intention of the agenda is not to approve or review all patches; |
||||
that should happen continuously on GitHub and be handled by the larger |
||||
group of Collaborators. |
||||
|
||||
Any community member or contributor can ask that something be added to |
||||
the next meeting's agenda by logging a GitHub Issue. Any Collaborator, |
||||
WG member or the moderator can add the item to the agenda by adding |
||||
the ***WG-agenda*** tag to the issue. |
||||
|
||||
Prior to each WG meeting the moderator will share the Agenda with |
||||
members of the WG. WG members can add any items they like to the |
||||
agenda at the beginning of each meeting. The moderator and the WG |
||||
cannot veto or remove items. |
||||
|
||||
The WG may invite persons or representatives from certain projects to |
||||
participate in a non-voting capacity. |
||||
|
||||
The moderator is responsible for summarizing the discussion of each |
||||
agenda item and sends it as a pull request after the meeting. |
||||
|
||||
### Consensus Seeking Process |
||||
|
||||
The WG follows a |
||||
[Consensus |
||||
Seeking](http://en.wikipedia.org/wiki/Consensus-seeking_decision-making) |
||||
decision-making model. |
||||
|
||||
When an agenda item has appeared to reach a consensus the moderator |
||||
will ask "Does anyone object?" as a final call for dissent from the |
||||
consensus. |
||||
|
||||
If an agenda item cannot reach a consensus a WG member can call for |
||||
either a closing vote or a vote to table the issue to the next |
||||
meeting. The call for a vote must be seconded by a majority of the WG |
||||
or else the discussion will continue. Simple majority wins. |
||||
|
||||
Note that changes to WG membership require a majority consensus. See |
||||
"WG Membership" above. |
@ -0,0 +1,47 @@ |
||||
Node.js is licensed for use as follows: |
||||
|
||||
""" |
||||
Copyright Node.js contributors. All rights reserved. |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to |
||||
deal in the Software without restriction, including without limitation the |
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
||||
sell copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
||||
IN THE SOFTWARE. |
||||
""" |
||||
|
||||
This license applies to parts of Node.js originating from the |
||||
https://github.com/joyent/node repository: |
||||
|
||||
""" |
||||
Copyright Joyent, Inc. and other Node contributors. All rights reserved. |
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to |
||||
deal in the Software without restriction, including without limitation the |
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
||||
sell copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
||||
IN THE SOFTWARE. |
||||
""" |
@ -0,0 +1,58 @@ |
||||
# readable-stream |
||||
|
||||
***Node-core v8.11.1 streams for userland*** [![Build Status](https://travis-ci.org/nodejs/readable-stream.svg?branch=master)](https://travis-ci.org/nodejs/readable-stream) |
||||
|
||||
|
||||
[![NPM](https://nodei.co/npm/readable-stream.png?downloads=true&downloadRank=true)](https://nodei.co/npm/readable-stream/) |
||||
[![NPM](https://nodei.co/npm-dl/readable-stream.png?&months=6&height=3)](https://nodei.co/npm/readable-stream/) |
||||
|
||||
|
||||
[![Sauce Test Status](https://saucelabs.com/browser-matrix/readable-stream.svg)](https://saucelabs.com/u/readable-stream) |
||||
|
||||
```bash |
||||
npm install --save readable-stream |
||||
``` |
||||
|
||||
***Node-core streams for userland*** |
||||
|
||||
This package is a mirror of the Streams2 and Streams3 implementations in |
||||
Node-core. |
||||
|
||||
Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v8.11.1/docs/api/stream.html). |
||||
|
||||
If you want to guarantee a stable streams base, regardless of what version of |
||||
Node you, or the users of your libraries are using, use **readable-stream** *only* and avoid the *"stream"* module in Node-core, for background see [this blogpost](http://r.va.gg/2014/06/why-i-dont-use-nodes-core-stream-module.html). |
||||
|
||||
As of version 2.0.0 **readable-stream** uses semantic versioning. |
||||
|
||||
# Streams Working Group |
||||
|
||||
`readable-stream` is maintained by the Streams Working Group, which |
||||
oversees the development and maintenance of the Streams API within |
||||
Node.js. The responsibilities of the Streams Working Group include: |
||||
|
||||
* Addressing stream issues on the Node.js issue tracker. |
||||
* Authoring and editing stream documentation within the Node.js project. |
||||
* Reviewing changes to stream subclasses within the Node.js project. |
||||
* Redirecting changes to streams from the Node.js project to this |
||||
project. |
||||
* Assisting in the implementation of stream providers within Node.js. |
||||
* Recommending versions of `readable-stream` to be included in Node.js. |
||||
* Messaging about the future of streams to give the community advance |
||||
notice of changes. |
||||
|
||||
<a name="members"></a> |
||||
## Team Members |
||||
|
||||
* **Chris Dickinson** ([@chrisdickinson](https://github.com/chrisdickinson)) <christopher.s.dickinson@gmail.com> |
||||
- Release GPG key: 9554F04D7259F04124DE6B476D5A82AC7E37093B |
||||
* **Calvin Metcalf** ([@calvinmetcalf](https://github.com/calvinmetcalf)) <calvin.metcalf@gmail.com> |
||||
- Release GPG key: F3EF5F62A87FC27A22E643F714CE4FF5015AA242 |
||||
* **Rod Vagg** ([@rvagg](https://github.com/rvagg)) <rod@vagg.org> |
||||
- Release GPG key: DD8F2338BAE7501E3DD5AC78C273792F7D83545D |
||||
* **Sam Newman** ([@sonewman](https://github.com/sonewman)) <newmansam@outlook.com> |
||||
* **Mathias Buus** ([@mafintosh](https://github.com/mafintosh)) <mathiasbuus@gmail.com> |
||||
* **Domenic Denicola** ([@domenic](https://github.com/domenic)) <d@domenic.me> |
||||
* **Matteo Collina** ([@mcollina](https://github.com/mcollina)) <matteo.collina@gmail.com> |
||||
- Release GPG key: 3ABC01543F22DD2239285CDD818674489FBC127E |
||||
* **Irina Shestak** ([@lrlna](https://github.com/lrlna)) <shestak.irina@gmail.com> |
@ -0,0 +1,60 @@ |
||||
# streams WG Meeting 2015-01-30 |
||||
|
||||
## Links |
||||
|
||||
* **Google Hangouts Video**: http://www.youtube.com/watch?v=I9nDOSGfwZg |
||||
* **GitHub Issue**: https://github.com/iojs/readable-stream/issues/106 |
||||
* **Original Minutes Google Doc**: https://docs.google.com/document/d/17aTgLnjMXIrfjgNaTUnHQO7m3xgzHR2VXBTmi03Qii4/ |
||||
|
||||
## Agenda |
||||
|
||||
Extracted from https://github.com/iojs/readable-stream/labels/wg-agenda prior to meeting. |
||||
|
||||
* adopt a charter [#105](https://github.com/iojs/readable-stream/issues/105) |
||||
* release and versioning strategy [#101](https://github.com/iojs/readable-stream/issues/101) |
||||
* simpler stream creation [#102](https://github.com/iojs/readable-stream/issues/102) |
||||
* proposal: deprecate implicit flowing of streams [#99](https://github.com/iojs/readable-stream/issues/99) |
||||
|
||||
## Minutes |
||||
|
||||
### adopt a charter |
||||
|
||||
* group: +1's all around |
||||
|
||||
### What versioning scheme should be adopted? |
||||
* group: +1’s 3.0.0 |
||||
* domenic+group: pulling in patches from other sources where appropriate |
||||
* mikeal: version independently, suggesting versions for io.js |
||||
* mikeal+domenic: work with TC to notify in advance of changes |
||||
simpler stream creation |
||||
|
||||
### streamline creation of streams |
||||
* sam: streamline creation of streams |
||||
* domenic: nice simple solution posted |
||||
but, we lose the opportunity to change the model |
||||
may not be backwards incompatible (double check keys) |
||||
|
||||
**action item:** domenic will check |
||||
|
||||
### remove implicit flowing of streams on(‘data’) |
||||
* add isFlowing / isPaused |
||||
* mikeal: worrying that we’re documenting polyfill methods – confuses users |
||||
* domenic: more reflective API is probably good, with warning labels for users |
||||
* new section for mad scientists (reflective stream access) |
||||
* calvin: name the “third state” |
||||
* mikeal: maybe borrow the name from whatwg? |
||||
* domenic: we’re missing the “third state” |
||||
* consensus: kind of difficult to name the third state |
||||
* mikeal: figure out differences in states / compat |
||||
* mathias: always flow on data – eliminates third state |
||||
* explore what it breaks |
||||
|
||||
**action items:** |
||||
* ask isaac for ability to list packages by what public io.js APIs they use (esp. Stream) |
||||
* ask rod/build for infrastructure |
||||
* **chris**: explore the “flow on data” approach |
||||
* add isPaused/isFlowing |
||||
* add new docs section |
||||
* move isPaused to that section |
||||
|
||||
|
1
server/node_modules/are-we-there-yet/node_modules/readable-stream/duplex-browser.js
generated
vendored
1
server/node_modules/are-we-there-yet/node_modules/readable-stream/duplex-browser.js
generated
vendored
@ -0,0 +1 @@ |
||||
module.exports = require('./lib/_stream_duplex.js'); |
@ -0,0 +1 @@ |
||||
module.exports = require('./readable').Duplex |
131
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js
generated
vendored
131
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js
generated
vendored
@ -0,0 +1,131 @@ |
||||
// Copyright Joyent, Inc. and other Node contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
// persons to whom the Software is furnished to do so, subject to the
|
||||
// following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included
|
||||
// in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// a duplex stream is just a stream that is both readable and writable.
|
||||
// Since JS doesn't have multiple prototypal inheritance, this class
|
||||
// prototypally inherits from Readable, and then parasitically from
|
||||
// Writable.
|
||||
|
||||
'use strict'; |
||||
|
||||
/*<replacement>*/ |
||||
|
||||
var pna = require('process-nextick-args'); |
||||
/*</replacement>*/ |
||||
|
||||
/*<replacement>*/ |
||||
var objectKeys = Object.keys || function (obj) { |
||||
var keys = []; |
||||
for (var key in obj) { |
||||
keys.push(key); |
||||
}return keys; |
||||
}; |
||||
/*</replacement>*/ |
||||
|
||||
module.exports = Duplex; |
||||
|
||||
/*<replacement>*/ |
||||
var util = Object.create(require('core-util-is')); |
||||
util.inherits = require('inherits'); |
||||
/*</replacement>*/ |
||||
|
||||
var Readable = require('./_stream_readable'); |
||||
var Writable = require('./_stream_writable'); |
||||
|
||||
util.inherits(Duplex, Readable); |
||||
|
||||
{ |
||||
// avoid scope creep, the keys array can then be collected
|
||||
var keys = objectKeys(Writable.prototype); |
||||
for (var v = 0; v < keys.length; v++) { |
||||
var method = keys[v]; |
||||
if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method]; |
||||
} |
||||
} |
||||
|
||||
function Duplex(options) { |
||||
if (!(this instanceof Duplex)) return new Duplex(options); |
||||
|
||||
Readable.call(this, options); |
||||
Writable.call(this, options); |
||||
|
||||
if (options && options.readable === false) this.readable = false; |
||||
|
||||
if (options && options.writable === false) this.writable = false; |
||||
|
||||
this.allowHalfOpen = true; |
||||
if (options && options.allowHalfOpen === false) this.allowHalfOpen = false; |
||||
|
||||
this.once('end', onend); |
||||
} |
||||
|
||||
Object.defineProperty(Duplex.prototype, 'writableHighWaterMark', { |
||||
// making it explicit this property is not enumerable
|
||||
// because otherwise some prototype manipulation in
|
||||
// userland will fail
|
||||
enumerable: false, |
||||
get: function () { |
||||
return this._writableState.highWaterMark; |
||||
} |
||||
}); |
||||
|
||||
// the no-half-open enforcer
|
||||
function onend() { |
||||
// if we allow half-open state, or if the writable side ended,
|
||||
// then we're ok.
|
||||
if (this.allowHalfOpen || this._writableState.ended) return; |
||||
|
||||
// no more data can be written.
|
||||
// But allow more writes to happen in this tick.
|
||||
pna.nextTick(onEndNT, this); |
||||
} |
||||
|
||||
function onEndNT(self) { |
||||
self.end(); |
||||
} |
||||
|
||||
Object.defineProperty(Duplex.prototype, 'destroyed', { |
||||
get: function () { |
||||
if (this._readableState === undefined || this._writableState === undefined) { |
||||
return false; |
||||
} |
||||
return this._readableState.destroyed && this._writableState.destroyed; |
||||
}, |
||||
set: function (value) { |
||||
// we ignore the value if the stream
|
||||
// has not been initialized yet
|
||||
if (this._readableState === undefined || this._writableState === undefined) { |
||||
return; |
||||
} |
||||
|
||||
// backward compatibility, the user is explicitly
|
||||
// managing destroyed
|
||||
this._readableState.destroyed = value; |
||||
this._writableState.destroyed = value; |
||||
} |
||||
}); |
||||
|
||||
Duplex.prototype._destroy = function (err, cb) { |
||||
this.push(null); |
||||
this.end(); |
||||
|
||||
pna.nextTick(cb, err); |
||||
}; |
@ -0,0 +1,47 @@ |
||||
// Copyright Joyent, Inc. and other Node contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
// persons to whom the Software is furnished to do so, subject to the
|
||||
// following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included
|
||||
// in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// a passthrough stream.
|
||||
// basically just the most minimal sort of Transform stream.
|
||||
// Every written chunk gets output as-is.
|
||||
|
||||
'use strict'; |
||||
|
||||
module.exports = PassThrough; |
||||
|
||||
var Transform = require('./_stream_transform'); |
||||
|
||||
/*<replacement>*/ |
||||
var util = Object.create(require('core-util-is')); |
||||
util.inherits = require('inherits'); |
||||
/*</replacement>*/ |
||||
|
||||
util.inherits(PassThrough, Transform); |
||||
|
||||
function PassThrough(options) { |
||||
if (!(this instanceof PassThrough)) return new PassThrough(options); |
||||
|
||||
Transform.call(this, options); |
||||
} |
||||
|
||||
PassThrough.prototype._transform = function (chunk, encoding, cb) { |
||||
cb(null, chunk); |
||||
}; |
1019
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js
generated
vendored
1019
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js
generated
vendored
File diff suppressed because it is too large
Load Diff
214
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js
generated
vendored
214
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js
generated
vendored
@ -0,0 +1,214 @@ |
||||
// Copyright Joyent, Inc. and other Node contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
// persons to whom the Software is furnished to do so, subject to the
|
||||
// following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included
|
||||
// in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// a transform stream is a readable/writable stream where you do
|
||||
// something with the data. Sometimes it's called a "filter",
|
||||
// but that's not a great name for it, since that implies a thing where
|
||||
// some bits pass through, and others are simply ignored. (That would
|
||||
// be a valid example of a transform, of course.)
|
||||
//
|
||||
// While the output is causally related to the input, it's not a
|
||||
// necessarily symmetric or synchronous transformation. For example,
|
||||
// a zlib stream might take multiple plain-text writes(), and then
|
||||
// emit a single compressed chunk some time in the future.
|
||||
//
|
||||
// Here's how this works:
|
||||
//
|
||||
// The Transform stream has all the aspects of the readable and writable
|
||||
// stream classes. When you write(chunk), that calls _write(chunk,cb)
|
||||
// internally, and returns false if there's a lot of pending writes
|
||||
// buffered up. When you call read(), that calls _read(n) until
|
||||
// there's enough pending readable data buffered up.
|
||||
//
|
||||
// In a transform stream, the written data is placed in a buffer. When
|
||||
// _read(n) is called, it transforms the queued up data, calling the
|
||||
// buffered _write cb's as it consumes chunks. If consuming a single
|
||||
// written chunk would result in multiple output chunks, then the first
|
||||
// outputted bit calls the readcb, and subsequent chunks just go into
|
||||
// the read buffer, and will cause it to emit 'readable' if necessary.
|
||||
//
|
||||
// This way, back-pressure is actually determined by the reading side,
|
||||
// since _read has to be called to start processing a new chunk. However,
|
||||
// a pathological inflate type of transform can cause excessive buffering
|
||||
// here. For example, imagine a stream where every byte of input is
|
||||
// interpreted as an integer from 0-255, and then results in that many
|
||||
// bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in
|
||||
// 1kb of data being output. In this case, you could write a very small
|
||||
// amount of input, and end up with a very large amount of output. In
|
||||
// such a pathological inflating mechanism, there'd be no way to tell
|
||||
// the system to stop doing the transform. A single 4MB write could
|
||||
// cause the system to run out of memory.
|
||||
//
|
||||
// However, even in such a pathological case, only a single written chunk
|
||||
// would be consumed, and then the rest would wait (un-transformed) until
|
||||
// the results of the previous transformed chunk were consumed.
|
||||
|
||||
'use strict'; |
||||
|
||||
module.exports = Transform; |
||||
|
||||
var Duplex = require('./_stream_duplex'); |
||||
|
||||
/*<replacement>*/ |
||||
var util = Object.create(require('core-util-is')); |
||||
util.inherits = require('inherits'); |
||||
/*</replacement>*/ |
||||
|
||||
util.inherits(Transform, Duplex); |
||||
|
||||
function afterTransform(er, data) { |
||||
var ts = this._transformState; |
||||
ts.transforming = false; |
||||
|
||||
var cb = ts.writecb; |
||||
|
||||
if (!cb) { |
||||
return this.emit('error', new Error('write callback called multiple times')); |
||||
} |
||||
|
||||
ts.writechunk = null; |
||||
ts.writecb = null; |
||||
|
||||
if (data != null) // single equals check for both `null` and `undefined`
|
||||
this.push(data); |
||||
|
||||
cb(er); |
||||
|
||||
var rs = this._readableState; |
||||
rs.reading = false; |
||||
if (rs.needReadable || rs.length < rs.highWaterMark) { |
||||
this._read(rs.highWaterMark); |
||||
} |
||||
} |
||||
|
||||
function Transform(options) { |
||||
if (!(this instanceof Transform)) return new Transform(options); |
||||
|
||||
Duplex.call(this, options); |
||||
|
||||
this._transformState = { |
||||
afterTransform: afterTransform.bind(this), |
||||
needTransform: false, |
||||
transforming: false, |
||||
writecb: null, |
||||
writechunk: null, |
||||
writeencoding: null |
||||
}; |
||||
|
||||
// start out asking for a readable event once data is transformed.
|
||||
this._readableState.needReadable = true; |
||||
|
||||
// we have implemented the _read method, and done the other things
|
||||
// that Readable wants before the first _read call, so unset the
|
||||
// sync guard flag.
|
||||
this._readableState.sync = false; |
||||
|
||||
if (options) { |
||||
if (typeof options.transform === 'function') this._transform = options.transform; |
||||
|
||||
if (typeof options.flush === 'function') this._flush = options.flush; |
||||
} |
||||
|
||||
// When the writable side finishes, then flush out anything remaining.
|
||||
this.on('prefinish', prefinish); |
||||
} |
||||
|
||||
function prefinish() { |
||||
var _this = this; |
||||
|
||||
if (typeof this._flush === 'function') { |
||||
this._flush(function (er, data) { |
||||
done(_this, er, data); |
||||
}); |
||||
} else { |
||||
done(this, null, null); |
||||
} |
||||
} |
||||
|
||||
Transform.prototype.push = function (chunk, encoding) { |
||||
this._transformState.needTransform = false; |
||||
return Duplex.prototype.push.call(this, chunk, encoding); |
||||
}; |
||||
|
||||
// This is the part where you do stuff!
|
||||
// override this function in implementation classes.
|
||||
// 'chunk' is an input chunk.
|
||||
//
|
||||
// Call `push(newChunk)` to pass along transformed output
|
||||
// to the readable side. You may call 'push' zero or more times.
|
||||
//
|
||||
// Call `cb(err)` when you are done with this chunk. If you pass
|
||||
// an error, then that'll put the hurt on the whole operation. If you
|
||||
// never call cb(), then you'll never get another chunk.
|
||||
Transform.prototype._transform = function (chunk, encoding, cb) { |
||||
throw new Error('_transform() is not implemented'); |
||||
}; |
||||
|
||||
Transform.prototype._write = function (chunk, encoding, cb) { |
||||
var ts = this._transformState; |
||||
ts.writecb = cb; |
||||
ts.writechunk = chunk; |
||||
ts.writeencoding = encoding; |
||||
if (!ts.transforming) { |
||||
var rs = this._readableState; |
||||
if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark); |
||||
} |
||||
}; |
||||
|
||||
// Doesn't matter what the args are here.
|
||||
// _transform does all the work.
|
||||
// That we got here means that the readable side wants more data.
|
||||
Transform.prototype._read = function (n) { |
||||
var ts = this._transformState; |
||||
|
||||
if (ts.writechunk !== null && ts.writecb && !ts.transforming) { |
||||
ts.transforming = true; |
||||
this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform); |
||||
} else { |
||||
// mark that we need a transform, so that any data that comes in
|
||||
// will get processed, now that we've asked for it.
|
||||
ts.needTransform = true; |
||||
} |
||||
}; |
||||
|
||||
Transform.prototype._destroy = function (err, cb) { |
||||
var _this2 = this; |
||||
|
||||
Duplex.prototype._destroy.call(this, err, function (err2) { |
||||
cb(err2); |
||||
_this2.emit('close'); |
||||
}); |
||||
}; |
||||
|
||||
function done(stream, er, data) { |
||||
if (er) return stream.emit('error', er); |
||||
|
||||
if (data != null) // single equals check for both `null` and `undefined`
|
||||
stream.push(data); |
||||
|
||||
// if there's nothing in the write buffer, then that means
|
||||
// that nothing more will ever be provided
|
||||
if (stream._writableState.length) throw new Error('Calling transform done when ws.length != 0'); |
||||
|
||||
if (stream._transformState.transforming) throw new Error('Calling transform done when still transforming'); |
||||
|
||||
return stream.push(null); |
||||
} |
687
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js
generated
vendored
687
server/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js
generated
vendored
@ -0,0 +1,687 @@ |
||||
// Copyright Joyent, Inc. and other Node contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
// persons to whom the Software is furnished to do so, subject to the
|
||||
// following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included
|
||||
// in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// A bit simpler than readable streams.
|
||||
// Implement an async ._write(chunk, encoding, cb), and it'll handle all
|
||||
// the drain event emission and buffering.
|
||||
|
||||
'use strict'; |
||||
|
||||
/*<replacement>*/ |
||||
|
||||
var pna = require('process-nextick-args'); |
||||
/*</replacement>*/ |
||||
|
||||
module.exports = Writable; |
||||
|
||||
/* <replacement> */ |
||||
function WriteReq(chunk, encoding, cb) { |
||||
this.chunk = chunk; |
||||
this.encoding = encoding; |
||||
this.callback = cb; |
||||
this.next = null; |
||||
} |
||||
|
||||
// It seems a linked list but it is not
|
||||
// there will be only 2 of these for each stream
|
||||
function CorkedRequest(state) { |
||||
var _this = this; |
||||
|
||||
this.next = null; |
||||
this.entry = null; |
||||
this.finish = function () { |
||||
onCorkedFinish(_this, state); |
||||
}; |
||||
} |
||||
/* </replacement> */ |
||||
|
||||
/*<replacement>*/ |
||||
var asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : pna.nextTick; |
||||
/*</replacement>*/ |
||||
|
||||
/*<replacement>*/ |
||||
var Duplex; |
||||
/*</replacement>*/ |
||||
|
||||
Writable.WritableState = WritableState; |
||||
|
||||
/*<replacement>*/ |
||||
var util = Object.create(require('core-util-is')); |
||||
util.inherits = require('inherits'); |
||||
/*</replacement>*/ |
||||
|
||||
/*<replacement>*/ |
||||
var internalUtil = { |
||||
deprecate: require('util-deprecate') |
||||
}; |
||||
/*</replacement>*/ |
||||
|
||||
/*<replacement>*/ |
||||
var Stream = require('./internal/streams/stream'); |
||||
/*</replacement>*/ |
||||
|
||||
/*<replacement>*/ |
||||
|
||||
var Buffer = require('safe-buffer').Buffer; |
||||
var OurUint8Array = global.Uint8Array || function () {}; |
||||
function _uint8ArrayToBuffer(chunk) { |
||||
return Buffer.from(chunk); |
||||
} |
||||
function _isUint8Array(obj) { |
||||
return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; |
||||
} |
||||
|
||||
/*</replacement>*/ |
||||
|
||||
var destroyImpl = require('./internal/streams/destroy'); |
||||
|
||||
util.inherits(Writable, Stream); |
||||
|
||||
function nop() {} |
||||
|
||||
function WritableState(options, stream) { |
||||
Duplex = Duplex || require('./_stream_duplex'); |
||||
|
||||
options = options || {}; |
||||
|
||||
// Duplex streams are both readable and writable, but share
|
||||
// the same options object.
|
||||
// However, some cases require setting options to different
|
||||
// values for the readable and the writable sides of the duplex stream.
|
||||
// These options can be provided separately as readableXXX and writableXXX.
|
||||
var isDuplex = stream instanceof Duplex; |
||||
|
||||
// object stream flag to indicate whether or not this stream
|
||||
// contains buffers or objects.
|
||||
this.objectMode = !!options.objectMode; |
||||
|
||||
if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode; |
||||
|
||||
// the point at which write() starts returning false
|
||||
// Note: 0 is a valid value, means that we always return false if
|
||||
// the entire buffer is not flushed immediately on write()
|
||||
var hwm = options.highWaterMark; |
||||
var writableHwm = options.writableHighWaterMark; |
||||
var defaultHwm = this.objectMode ? 16 : 16 * 1024; |
||||
|
||||
if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (writableHwm || writableHwm === 0)) this.highWaterMark = writableHwm;else this.highWaterMark = defaultHwm; |
||||
|
||||
// cast to ints.
|
||||
this.highWaterMark = Math.floor(this.highWaterMark); |
||||
|
||||
// if _final has been called
|
||||
this.finalCalled = false; |
||||
|
||||
// drain event flag.
|
||||
this.needDrain = false; |
||||
// at the start of calling end()
|
||||
this.ending = false; |
||||
// when end() has been called, and returned
|
||||
this.ended = false; |
||||
// when 'finish' is emitted
|
||||
this.finished = false; |
||||
|
||||
// has it been destroyed
|
||||
this.destroyed = false; |
||||
|
||||
// should we decode strings into buffers before passing to _write?
|
||||
// this is here so that some node-core streams can optimize string
|
||||
// handling at a lower level.
|
||||
var noDecode = options.decodeStrings === false; |
||||
this.decodeStrings = !noDecode; |
||||
|
||||
// Crypto is kind of old and crusty. Historically, its default string
|
||||
// encoding is 'binary' so we have to make this configurable.
|
||||
// Everything else in the universe uses 'utf8', though.
|
||||
this.defaultEncoding = options.defaultEncoding || 'utf8'; |
||||
|
||||
// not an actual buffer we keep track of, but a measurement
|
||||
// of how much we're waiting to get pushed to some underlying
|
||||
// socket or file.
|
||||
this.length = 0; |
||||
|
||||
// a flag to see when we're in the middle of a write.
|
||||
this.writing = false; |
||||
|
||||
// when true all writes will be buffered until .uncork() call
|
||||
this.corked = 0; |
||||
|
||||
// a flag to be able to tell if the onwrite cb is called immediately,
|
||||
// or on a later tick. We set this to true at first, because any
|
||||
// actions that shouldn't happen until "later" should generally also
|
||||
// not happen before the first write call.
|
||||
this.sync = true; |
||||
|
||||
// a flag to know if we're processing previously buffered items, which
|
||||
// may call the _write() callback in the same tick, so that we don't
|
||||
// end up in an overlapped onwrite situation.
|
||||
this.bufferProcessing = false; |
||||
|
||||
// the callback that's passed to _write(chunk,cb)
|
||||
this.onwrite = function (er) { |
||||
onwrite(stream, er); |
||||
}; |
||||
|
||||
// the callback that the user supplies to write(chunk,encoding,cb)
|
||||
this.writecb = null; |
||||
|
||||
// the amount that is being written when _write is called.
|
||||
this.writelen = 0; |
||||
|
||||
this.bufferedRequest = null; |
||||
this.lastBufferedRequest = null; |
||||
|
||||
// number of pending user-supplied write callbacks
|
||||
// this must be 0 before 'finish' can be emitted
|
||||
this.pendingcb = 0; |
||||
|
||||
// emit prefinish if the only thing we're waiting for is _write cbs
|
||||
// This is relevant for synchronous Transform streams
|
||||
this.prefinished = false; |
||||
|
||||
// True if the error was already emitted and should not be thrown again
|
||||
this.errorEmitted = false; |
||||
|
||||
// count buffered requests
|
||||
this.bufferedRequestCount = 0; |
||||
|
||||
// allocate the first CorkedRequest, there is always
|
||||
// one allocated and free to use, and we maintain at most two
|
||||
this.corkedRequestsFree = new CorkedRequest(this); |
||||
} |
||||
|
||||
WritableState.prototype.getBuffer = function getBuffer() { |
||||
var current = this.bufferedRequest; |
||||
var out = []; |
||||
while (current) { |
||||
out.push(current); |
||||
current = current.next; |
||||
} |
||||
return out; |
||||
}; |
||||
|
||||
(function () { |
||||
try { |
||||
Object.defineProperty(WritableState.prototype, 'buffer', { |
||||
get: internalUtil.deprecate(function () { |
||||
return this.getBuffer(); |
||||
}, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003') |
||||
}); |
||||
} catch (_) {} |
||||
})(); |
||||
|
||||
// Test _writableState for inheritance to account for Duplex streams,
|
||||
// whose prototype chain only points to Readable.
|
||||
var realHasInstance; |
||||
if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') { |
||||
realHasInstance = Function.prototype[Symbol.hasInstance]; |
||||
Object.defineProperty(Writable, Symbol.hasInstance, { |
||||
value: function (object) { |
||||
if (realHasInstance.call(this, object)) return true; |
||||
if (this !== Writable) return false; |
||||
|
||||
return object && object._writableState instanceof WritableState; |
||||
} |
||||
}); |
||||
} else { |
||||
realHasInstance = function (object) { |
||||
return object instanceof this; |
||||
}; |
||||
} |
||||
|
||||
function Writable(options) { |
||||
Duplex = Duplex || require('./_stream_duplex'); |
||||
|
||||
// Writable ctor is applied to Duplexes, too.
|
||||
// `realHasInstance` is necessary because using plain `instanceof`
|
||||
// would return false, as no `_writableState` property is attached.
|
||||
|
||||
// Trying to use the custom `instanceof` for Writable here will also break the
|
||||
// Node.js LazyTransform implementation, which has a non-trivial getter for
|
||||
// `_writableState` that would lead to infinite recursion.
|
||||
if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) { |
||||
return new Writable(options); |
||||
} |
||||
|
||||
this._writableState = new WritableState(options, this); |
||||
|
||||
// legacy.
|
||||
this.writable = true; |
||||
|
||||
if (options) { |
||||
if (typeof options.write === 'function') this._write = options.write; |
||||
|
||||
if (typeof options.writev === 'function') this._writev = options.writev; |
||||
|
||||
if (typeof options.destroy === 'function') this._destroy = options.destroy; |
||||
|
||||
if (typeof options.final === 'function') this._final = options.final; |
||||
} |
||||
|
||||
Stream.call(this); |
||||
} |
||||
|
||||
// Otherwise people can pipe Writable streams, which is just wrong.
|
||||
Writable.prototype.pipe = function () { |
||||
this.emit('error', new Error('Cannot pipe, not readable')); |
||||
}; |
||||
|
||||
function writeAfterEnd(stream, cb) { |
||||
var er = new Error('write after end'); |
||||
// TODO: defer error events consistently everywhere, not just the cb
|
||||
stream.emit('error', er); |
||||
pna.nextTick(cb, er); |
||||
} |
||||
|
||||
// Checks that a user-supplied chunk is valid, especially for the particular
|
||||
// mode the stream is in. Currently this means that `null` is never accepted
|
||||
// and undefined/non-string values are only allowed in object mode.
|
||||
function validChunk(stream, state, chunk, cb) { |
||||
var valid = true; |
||||
var er = false; |
||||
|
||||
if (chunk === null) { |
||||
er = new TypeError('May not write null values to stream'); |
||||
} else if (typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { |
||||
er = new TypeError('Invalid non-string/buffer chunk'); |
||||
} |
||||
if (er) { |
||||
stream.emit('error', er); |
||||
pna.nextTick(cb, er); |
||||
valid = false; |
||||
} |
||||
return valid; |
||||
} |
||||
|
||||
Writable.prototype.write = function (chunk, encoding, cb) { |
||||
var state = this._writableState; |
||||
var ret = false; |
||||
var isBuf = !state.objectMode && _isUint8Array(chunk); |
||||
|
||||
if (isBuf && !Buffer.isBuffer(chunk)) { |
||||
chunk = _uint8ArrayToBuffer(chunk); |
||||
} |
||||
|
||||
if (typeof encoding === 'function') { |
||||
cb = encoding; |
||||
encoding = null; |
||||
} |
||||
|
||||
if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; |
||||
|
||||
if (typeof cb !== 'function') cb = nop; |
||||
|
||||
if (state.ended) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) { |
||||
state.pendingcb++; |
||||
ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb); |
||||
} |
||||
|
||||
return ret; |
||||
}; |
||||
|
||||
Writable.prototype.cork = function () { |
||||
var state = this._writableState; |
||||
|
||||
state.corked++; |
||||
}; |
||||
|
||||
Writable.prototype.uncork = function () { |
||||
var state = this._writableState; |
||||
|
||||
if (state.corked) { |
||||
state.corked--; |
||||
|
||||
if (!state.writing && !state.corked && !state.finished && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state); |
||||
} |
||||
}; |
||||
|
||||
Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) { |
||||
// node::ParseEncoding() requires lower case.
|
||||
if (typeof encoding === 'string') encoding = encoding.toLowerCase(); |
||||
if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new TypeError('Unknown encoding: ' + encoding); |
||||
this._writableState.defaultEncoding = encoding; |
||||
return this; |
||||
}; |
||||
|
||||
function decodeChunk(state, chunk, encoding) { |
||||
if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') { |
||||
chunk = Buffer.from(chunk, encoding); |
||||
} |
||||
return chunk; |
||||
} |
||||
|
||||
Object.defineProperty(Writable.prototype, 'writableHighWaterMark', { |
||||
// making it explicit this property is not enumerable
|
||||
// because otherwise some prototype manipulation in
|
||||
// userland will fail
|
||||
enumerable: false, |
||||
get: function () { |
||||
return this._writableState.highWaterMark; |
||||
} |
||||
}); |
||||
|
||||
// if we're already writing something, then just put this
|
||||
// in the queue, and wait our turn. Otherwise, call _write
|
||||
// If we return false, then we need a drain event, so set that flag.
|
||||
function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { |
||||
if (!isBuf) { |
||||
var newChunk = decodeChunk(state, chunk, encoding); |
||||
if (chunk !== newChunk) { |
||||
isBuf = true; |
||||
encoding = 'buffer'; |
||||
chunk = newChunk; |
||||
} |
||||
} |
||||
var len = state.objectMode ? 1 : chunk.length; |
||||
|
||||
state.length += len; |
||||
|
||||
var ret = state.length < state.highWaterMark; |
||||
// we must ensure that previous needDrain will not be reset to false.
|
||||
if (!ret) state.needDrain = true; |
||||
|
||||
if (state.writing || state.corked) { |
||||
var last = state.lastBufferedRequest; |
||||
state.lastBufferedRequest = { |
||||
chunk: chunk, |
||||
encoding: encoding, |
||||
isBuf: isBuf, |
||||
callback: cb, |
||||
next: null |
||||
}; |
||||
if (last) { |
||||
last.next = state.lastBufferedRequest; |
||||
} else { |
||||
state.bufferedRequest = state.lastBufferedRequest; |
||||
} |
||||
state.bufferedRequestCount += 1; |
||||
} else { |
||||
doWrite(stream, state, false, len, chunk, encoding, cb); |
||||
} |
||||
|
||||
return ret; |
||||
} |
||||
|
||||
function doWrite(stream, state, writev, len, chunk, encoding, cb) { |
||||
state.writelen = len; |
||||
state.writecb = cb; |
||||
state.writing = true; |
||||
state.sync = true; |
||||
if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite); |
||||
state.sync = false; |
||||
} |
||||
|
||||
function onwriteError(stream, state, sync, er, cb) { |
||||
--state.pendingcb; |
||||
|
||||
if (sync) { |
||||
// defer the callback if we are being called synchronously
|
||||
// to avoid piling up things on the stack
|
||||
pna.nextTick(cb, er); |
||||
// this can emit finish, and it will always happen
|
||||
// after error
|
||||
pna.nextTick(finishMaybe, stream, state); |
||||
stream._writableState.errorEmitted = true; |
||||
stream.emit('error', er); |
||||
} else { |
||||
// the caller expect this to happen before if
|
||||
// it is async
|
||||
cb(er); |
||||
stream._writableState.errorEmitted = true; |
||||
stream.emit('error', er); |
||||
// this can emit finish, but finish must
|
||||
// always follow error
|
||||
finishMaybe(stream, state); |
||||
} |
||||
} |
||||
|
||||
function onwriteStateUpdate(state) { |
||||
state.writing = false; |
||||
state.writecb = null; |
||||
state.length -= state.writelen; |
||||
state.writelen = 0; |
||||
} |
||||
|
||||
function onwrite(stream, er) { |
||||
var state = stream._writableState; |
||||
var sync = state.sync; |
||||
var cb = state.writecb; |
||||
|
||||
onwriteStateUpdate(state); |
||||
|
||||
if (er) onwriteError(stream, state, sync, er, cb);else { |
||||
// Check if we're actually ready to finish, but don't emit yet
|
||||
var finished = needFinish(state); |
||||
|
||||
if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) { |
||||
clearBuffer(stream, state); |
||||
} |
||||
|
||||
if (sync) { |
||||
/*<replacement>*/ |
||||
asyncWrite(afterWrite, stream, state, finished, cb); |
||||
/*</replacement>*/ |
||||
} else { |
||||
afterWrite(stream, state, finished, cb); |
||||
} |
||||
} |
||||
} |
||||
|
||||
function afterWrite(stream, state, finished, cb) { |
||||
if (!finished) onwriteDrain(stream, state); |
||||
state.pendingcb--; |
||||
cb(); |
||||
finishMaybe(stream, state); |
||||
} |
||||
|
||||
// Must force callback to be called on nextTick, so that we don't
|
||||
// emit 'drain' before the write() consumer gets the 'false' return
|
||||
// value, and has a chance to attach a 'drain' listener.
|
||||
function onwriteDrain(stream, state) { |
||||
if (state.length === 0 && state.needDrain) { |
||||
state.needDrain = false; |
||||
stream.emit('drain'); |
||||
} |
||||
} |
||||
|
||||
// if there's something in the buffer waiting, then process it
|
||||
function clearBuffer(stream, state) { |
||||
state.bufferProcessing = true; |
||||
var entry = state.bufferedRequest; |
||||
|
||||
if (stream._writev && entry && entry.next) { |
||||
// Fast case, write everything using _writev()
|
||||
var l = state.bufferedRequestCount; |
||||
var buffer = new Array(l); |
||||
var holder = state.corkedRequestsFree; |
||||
holder.entry = entry; |
||||
|
||||
var count = 0; |
||||
var allBuffers = true; |
||||
while (entry) { |
||||
buffer[count] = entry; |
||||
if (!entry.isBuf) allBuffers = false; |
||||
entry = entry.next; |
||||
count += 1; |
||||
} |
||||
buffer.allBuffers = allBuffers; |
||||
|
||||
doWrite(stream, state, true, state.length, buffer, '', holder.finish); |
||||
|
||||
// doWrite is almost always async, defer these to save a bit of time
|
||||
// as the hot path ends with doWrite
|
||||
state.pendingcb++; |
||||
state.lastBufferedRequest = null; |
||||
if (holder.next) { |
||||
state.corkedRequestsFree = holder.next; |
||||
holder.next = null; |
||||
} else { |
||||
state.corkedRequestsFree = new CorkedRequest(state); |
||||
} |
||||
state.bufferedRequestCount = 0; |
||||
} else { |
||||
// Slow case, write chunks one-by-one
|
||||
while (entry) { |
||||
var chunk = entry.chunk; |
||||
var encoding = entry.encoding; |
||||
var cb = entry.callback; |
||||
var len = state.objectMode ? 1 : chunk.length; |
||||
|
||||
doWrite(stream, state, false, len, chunk, encoding, cb); |
||||
entry = entry.next; |
||||
state.bufferedRequestCount--; |
||||
// if we didn't call the onwrite immediately, then
|
||||
// it means that we need to wait until it does.
|
||||
// also, that means that the chunk and cb are currently
|
||||
// being processed, so move the buffer counter past them.
|
||||
if (state.writing) { |
||||
break; |
||||
} |
||||
} |
||||
|
||||
if (entry === null) state.lastBufferedRequest = null; |
||||
} |
||||
|
||||
state.bufferedRequest = entry; |
||||
state.bufferProcessing = false; |
||||
} |
||||
|
||||
Writable.prototype._write = function (chunk, encoding, cb) { |
||||
cb(new Error('_write() is not implemented')); |
||||
}; |
||||
|
||||
Writable.prototype._writev = null; |
||||
|
||||
Writable.prototype.end = function (chunk, encoding, cb) { |
||||
var state = this._writableState; |
||||
|
||||
if (typeof chunk === 'function') { |
||||
cb = chunk; |
||||
chunk = null; |
||||
encoding = null; |
||||
} else if (typeof encoding === 'function') { |
||||
cb = encoding; |
||||
encoding = null; |
||||
} |
||||
|
||||
if (chunk !== null && chunk !== undefined) this.write(chunk, encoding); |
||||
|
||||
// .end() fully uncorks
|
||||
if (state.corked) { |
||||
state.corked = 1; |
||||
this.uncork(); |
||||
} |
||||
|
||||
// ignore unnecessary end() calls.
|
||||
if (!state.ending && !state.finished) endWritable(this, state, cb); |
||||
}; |
||||
|
||||
function needFinish(state) { |
||||
return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing; |
||||
} |
||||
function callFinal(stream, state) { |
||||
stream._final(function (err) { |
||||
state.pendingcb--; |
||||
if (err) { |
||||
stream.emit('error', err); |
||||
} |
||||
state.prefinished = true; |
||||
stream.emit('prefinish'); |
||||
finishMaybe(stream, state); |
||||
}); |
||||
} |
||||
function prefinish(stream, state) { |
||||
if (!state.prefinished && !state.finalCalled) { |
||||
if (typeof stream._final === 'function') { |
||||
state.pendingcb++; |
||||
state.finalCalled = true; |
||||
pna.nextTick(callFinal, stream, state); |
||||
} else { |
||||
state.prefinished = true; |
||||
stream.emit('prefinish'); |
||||
} |
||||
} |
||||
} |
||||
|
||||
function finishMaybe(stream, state) { |
||||
var need = needFinish(state); |
||||
if (need) { |
||||
prefinish(stream, state); |
||||
if (state.pendingcb === 0) { |
||||
state.finished = true; |
||||
stream.emit('finish'); |
||||
} |
||||
} |
||||
return need; |
||||
} |
||||
|
||||
function endWritable(stream, state, cb) { |
||||
state.ending = true; |
||||
finishMaybe(stream, state); |
||||
if (cb) { |
||||
if (state.finished) pna.nextTick(cb);else stream.once('finish', cb); |
||||
} |
||||
state.ended = true; |
||||
stream.writable = false; |
||||
} |
||||
|
||||
function onCorkedFinish(corkReq, state, err) { |
||||
var entry = corkReq.entry; |
||||
corkReq.entry = null; |
||||
while (entry) { |
||||
var cb = entry.callback; |
||||
state.pendingcb--; |
||||
cb(err); |
||||
entry = entry.next; |
||||
} |
||||
if (state.corkedRequestsFree) { |
||||
state.corkedRequestsFree.next = corkReq; |
||||
} else { |
||||
state.corkedRequestsFree = corkReq; |
||||
} |
||||
} |
||||
|
||||
Object.defineProperty(Writable.prototype, 'destroyed', { |
||||
get: function () { |
||||
if (this._writableState === undefined) { |
||||
return false; |
||||
} |
||||
return this._writableState.destroyed; |
||||
}, |
||||
set: function (value) { |
||||
// we ignore the value if the stream
|
||||
// has not been initialized yet
|
||||
if (!this._writableState) { |
||||
return; |
||||
} |
||||
|
||||
// backward compatibility, the user is explicitly
|
||||
// managing destroyed
|
||||
this._writableState.destroyed = value; |
||||
} |
||||
}); |
||||
|
||||
Writable.prototype.destroy = destroyImpl.destroy; |
||||
Writable.prototype._undestroy = destroyImpl.undestroy; |
||||
Writable.prototype._destroy = function (err, cb) { |
||||
this.end(); |
||||
cb(err); |
||||
}; |
@ -0,0 +1,79 @@ |
||||
'use strict'; |
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } |
||||
|
||||
var Buffer = require('safe-buffer').Buffer; |
||||
var util = require('util'); |
||||
|
||||
function copyBuffer(src, target, offset) { |
||||
src.copy(target, offset); |
||||
} |
||||
|
||||
module.exports = function () { |
||||
function BufferList() { |
||||
_classCallCheck(this, BufferList); |
||||
|
||||
this.head = null; |
||||
this.tail = null; |
||||
this.length = 0; |
||||
} |
||||
|
||||
BufferList.prototype.push = function push(v) { |
||||
var entry = { data: v, next: null }; |
||||
if (this.length > 0) this.tail.next = entry;else this.head = entry; |
||||
this.tail = entry; |
||||
++this.length; |
||||
}; |
||||
|
||||
BufferList.prototype.unshift = function unshift(v) { |
||||
var entry = { data: v, next: this.head }; |
||||
if (this.length === 0) this.tail = entry; |
||||
this.head = entry; |
||||
++this.length; |
||||
}; |
||||
|
||||
BufferList.prototype.shift = function shift() { |
||||
if (this.length === 0) return; |
||||
var ret = this.head.data; |
||||
if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; |
||||
--this.length; |
||||
return ret; |
||||
}; |
||||
|
||||
BufferList.prototype.clear = function clear() { |
||||
this.head = this.tail = null; |
||||
this.length = 0; |
||||
}; |
||||
|
||||
BufferList.prototype.join = function join(s) { |
||||
if (this.length === 0) return ''; |
||||
var p = this.head; |
||||
var ret = '' + p.data; |
||||
while (p = p.next) { |
||||
ret += s + p.data; |
||||
}return ret; |
||||
}; |
||||
|
||||
BufferList.prototype.concat = function concat(n) { |
||||
if (this.length === 0) return Buffer.alloc(0); |
||||
if (this.length === 1) return this.head.data; |
||||
var ret = Buffer.allocUnsafe(n >>> 0); |
||||
var p = this.head; |
||||
var i = 0; |
||||
while (p) { |
||||
copyBuffer(p.data, ret, i); |
||||
i += p.data.length; |
||||
p = p.next; |
||||
} |
||||
return ret; |
||||
}; |
||||
|
||||
return BufferList; |
||||
}(); |
||||
|
||||
if (util && util.inspect && util.inspect.custom) { |
||||
module.exports.prototype[util.inspect.custom] = function () { |
||||
var obj = util.inspect({ length: this.length }); |
||||
return this.constructor.name + ' ' + obj; |
||||
}; |
||||
} |
@ -0,0 +1,74 @@ |
||||
'use strict'; |
||||
|
||||
/*<replacement>*/ |
||||
|
||||
var pna = require('process-nextick-args'); |
||||
/*</replacement>*/ |
||||
|
||||
// undocumented cb() API, needed for core, not for public API
|
||||
function destroy(err, cb) { |
||||
var _this = this; |
||||
|
||||
var readableDestroyed = this._readableState && this._readableState.destroyed; |
||||
var writableDestroyed = this._writableState && this._writableState.destroyed; |
||||
|
||||
if (readableDestroyed || writableDestroyed) { |
||||
if (cb) { |
||||
cb(err); |
||||
} else if (err && (!this._writableState || !this._writableState.errorEmitted)) { |
||||
pna.nextTick(emitErrorNT, this, err); |
||||
} |
||||
return this; |
||||
} |
||||
|
||||
// we set destroyed to true before firing error callbacks in order
|
||||
// to make it re-entrance safe in case destroy() is called within callbacks
|
||||
|
||||
if (this._readableState) { |
||||
this._readableState.destroyed = true; |
||||
} |
||||
|
||||
// if this is a duplex stream mark the writable part as destroyed as well
|
||||
if (this._writableState) { |
||||
this._writableState.destroyed = true; |
||||
} |
||||
|
||||
this._destroy(err || null, function (err) { |
||||
if (!cb && err) { |
||||
pna.nextTick(emitErrorNT, _this, err); |
||||
if (_this._writableState) { |
||||
_this._writableState.errorEmitted = true; |
||||
} |
||||
} else if (cb) { |
||||
cb(err); |
||||
} |
||||
}); |
||||
|
||||
return this; |
||||
} |
||||
|
||||
function undestroy() { |
||||
if (this._readableState) { |
||||
this._readableState.destroyed = false; |
||||
this._readableState.reading = false; |
||||
this._readableState.ended = false; |
||||
this._readableState.endEmitted = false; |
||||
} |
||||
|
||||
if (this._writableState) { |
||||
this._writableState.destroyed = false; |
||||
this._writableState.ended = false; |
||||
this._writableState.ending = false; |
||||
this._writableState.finished = false; |
||||
this._writableState.errorEmitted = false; |
||||
} |
||||
} |
||||
|
||||
function emitErrorNT(self, err) { |
||||
self.emit('error', err); |
||||
} |
||||
|
||||
module.exports = { |
||||
destroy: destroy, |
||||
undestroy: undestroy |
||||
}; |
@ -0,0 +1 @@ |
||||
module.exports = require('events').EventEmitter; |
@ -0,0 +1 @@ |
||||
module.exports = require('stream'); |
81
server/node_modules/are-we-there-yet/node_modules/readable-stream/package.json
generated
vendored
81
server/node_modules/are-we-there-yet/node_modules/readable-stream/package.json
generated
vendored
@ -0,0 +1,81 @@ |
||||
{ |
||||
"_from": "readable-stream@^2.0.6", |
||||
"_id": "readable-stream@2.3.7", |
||||
"_inBundle": false, |
||||
"_integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", |
||||
"_location": "/are-we-there-yet/readable-stream", |
||||
"_phantomChildren": {}, |
||||
"_requested": { |
||||
"type": "range", |
||||
"registry": true, |
||||
"raw": "readable-stream@^2.0.6", |
||||
"name": "readable-stream", |
||||
"escapedName": "readable-stream", |
||||
"rawSpec": "^2.0.6", |
||||
"saveSpec": null, |
||||
"fetchSpec": "^2.0.6" |
||||
}, |
||||
"_requiredBy": [ |
||||
"/are-we-there-yet" |
||||
], |
||||
"_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", |
||||
"_shasum": "1eca1cf711aef814c04f62252a36a62f6cb23b57", |
||||
"_spec": "readable-stream@^2.0.6", |
||||
"_where": "/home/sigonasr2/divar/server/node_modules/are-we-there-yet", |
||||
"browser": { |
||||
"util": false, |
||||
"./readable.js": "./readable-browser.js", |
||||
"./writable.js": "./writable-browser.js", |
||||
"./duplex.js": "./duplex-browser.js", |
||||
"./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/nodejs/readable-stream/issues" |
||||
}, |
||||
"bundleDependencies": false, |
||||
"dependencies": { |
||||
"core-util-is": "~1.0.0", |
||||
"inherits": "~2.0.3", |
||||
"isarray": "~1.0.0", |
||||
"process-nextick-args": "~2.0.0", |
||||
"safe-buffer": "~5.1.1", |
||||
"string_decoder": "~1.1.1", |
||||
"util-deprecate": "~1.0.1" |
||||
}, |
||||
"deprecated": false, |
||||
"description": "Streams3, a user-land copy of the stream library from Node.js", |
||||
"devDependencies": { |
||||
"assert": "^1.4.0", |
||||
"babel-polyfill": "^6.9.1", |
||||
"buffer": "^4.9.0", |
||||
"lolex": "^2.3.2", |
||||
"nyc": "^6.4.0", |
||||
"tap": "^0.7.0", |
||||
"tape": "^4.8.0" |
||||
}, |
||||
"homepage": "https://github.com/nodejs/readable-stream#readme", |
||||
"keywords": [ |
||||
"readable", |
||||
"stream", |
||||
"pipe" |
||||
], |
||||
"license": "MIT", |
||||
"main": "readable.js", |
||||
"name": "readable-stream", |
||||
"nyc": { |
||||
"include": [ |
||||
"lib/**.js" |
||||
] |
||||
}, |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git://github.com/nodejs/readable-stream.git" |
||||
}, |
||||
"scripts": { |
||||
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", |
||||
"cover": "nyc npm test", |
||||
"report": "nyc report --reporter=lcov", |
||||
"test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js" |
||||
}, |
||||
"version": "2.3.7" |
||||
} |
1
server/node_modules/are-we-there-yet/node_modules/readable-stream/passthrough.js
generated
vendored
1
server/node_modules/are-we-there-yet/node_modules/readable-stream/passthrough.js
generated
vendored
@ -0,0 +1 @@ |
||||
module.exports = require('./readable').PassThrough |
@ -0,0 +1,7 @@ |
||||
exports = module.exports = require('./lib/_stream_readable.js'); |
||||
exports.Stream = exports; |
||||
exports.Readable = exports; |
||||
exports.Writable = require('./lib/_stream_writable.js'); |
||||
exports.Duplex = require('./lib/_stream_duplex.js'); |
||||
exports.Transform = require('./lib/_stream_transform.js'); |
||||
exports.PassThrough = require('./lib/_stream_passthrough.js'); |
@ -0,0 +1,19 @@ |
||||
var Stream = require('stream'); |
||||
if (process.env.READABLE_STREAM === 'disable' && Stream) { |
||||
module.exports = Stream; |
||||
exports = module.exports = Stream.Readable; |
||||
exports.Readable = Stream.Readable; |
||||
exports.Writable = Stream.Writable; |
||||
exports.Duplex = Stream.Duplex; |
||||
exports.Transform = Stream.Transform; |
||||
exports.PassThrough = Stream.PassThrough; |
||||
exports.Stream = Stream; |
||||
} else { |
||||
exports = module.exports = require('./lib/_stream_readable.js'); |
||||
exports.Stream = Stream || exports; |
||||
exports.Readable = exports; |
||||
exports.Writable = require('./lib/_stream_writable.js'); |
||||
exports.Duplex = require('./lib/_stream_duplex.js'); |
||||
exports.Transform = require('./lib/_stream_transform.js'); |
||||
exports.PassThrough = require('./lib/_stream_passthrough.js'); |
||||
} |
@ -0,0 +1 @@ |
||||
module.exports = require('./readable').Transform |
@ -0,0 +1 @@ |
||||
module.exports = require('./lib/_stream_writable.js'); |
@ -0,0 +1,8 @@ |
||||
var Stream = require("stream") |
||||
var Writable = require("./lib/_stream_writable.js") |
||||
|
||||
if (process.env.READABLE_STREAM === 'disable') { |
||||
module.exports = Stream && Stream.Writable || Writable |
||||
} else { |
||||
module.exports = Writable |
||||
} |
@ -0,0 +1,50 @@ |
||||
sudo: false |
||||
language: node_js |
||||
before_install: |
||||
- npm install -g npm@2 |
||||
- test $NPM_LEGACY && npm install -g npm@latest-3 || npm install npm -g |
||||
notifications: |
||||
email: false |
||||
matrix: |
||||
fast_finish: true |
||||
include: |
||||
- node_js: '0.8' |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: '0.10' |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: '0.11' |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: '0.12' |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: 1 |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: 2 |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: 3 |
||||
env: |
||||
- TASK=test |
||||
- NPM_LEGACY=true |
||||
- node_js: 4 |
||||
env: TASK=test |
||||
- node_js: 5 |
||||
env: TASK=test |
||||
- node_js: 6 |
||||
env: TASK=test |
||||
- node_js: 7 |
||||
env: TASK=test |
||||
- node_js: 8 |
||||
env: TASK=test |
||||
- node_js: 9 |
||||
env: TASK=test |
@ -0,0 +1,48 @@ |
||||
Node.js is licensed for use as follows: |
||||
|
||||
""" |
||||
Copyright Node.js contributors. All rights reserved. |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to |
||||
deal in the Software without restriction, including without limitation the |
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
||||
sell copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
||||
IN THE SOFTWARE. |
||||
""" |
||||
|
||||
This license applies to parts of Node.js originating from the |
||||
https://github.com/joyent/node repository: |
||||
|
||||
""" |
||||
Copyright Joyent, Inc. and other Node contributors. All rights reserved. |
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to |
||||
deal in the Software without restriction, including without limitation the |
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
||||
sell copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
||||
IN THE SOFTWARE. |
||||
""" |
||||
|
@ -0,0 +1,47 @@ |
||||
# string_decoder |
||||
|
||||
***Node-core v8.9.4 string_decoder for userland*** |
||||
|
||||
|
||||
[![NPM](https://nodei.co/npm/string_decoder.png?downloads=true&downloadRank=true)](https://nodei.co/npm/string_decoder/) |
||||
[![NPM](https://nodei.co/npm-dl/string_decoder.png?&months=6&height=3)](https://nodei.co/npm/string_decoder/) |
||||
|
||||
|
||||
```bash |
||||
npm install --save string_decoder |
||||
``` |
||||
|
||||
***Node-core string_decoder for userland*** |
||||
|
||||
This package is a mirror of the string_decoder implementation in Node-core. |
||||
|
||||
Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v8.9.4/docs/api/). |
||||
|
||||
As of version 1.0.0 **string_decoder** uses semantic versioning. |
||||
|
||||
## Previous versions |
||||
|
||||
Previous version numbers match the versions found in Node core, e.g. 0.10.24 matches Node 0.10.24, likewise 0.11.10 matches Node 0.11.10. |
||||
|
||||
## Update |
||||
|
||||
The *build/* directory contains a build script that will scrape the source from the [nodejs/node](https://github.com/nodejs/node) repo given a specific Node version. |
||||
|
||||
## Streams Working Group |
||||
|
||||
`string_decoder` is maintained by the Streams Working Group, which |
||||
oversees the development and maintenance of the Streams API within |
||||
Node.js. The responsibilities of the Streams Working Group include: |
||||
|
||||
* Addressing stream issues on the Node.js issue tracker. |
||||
* Authoring and editing stream documentation within the Node.js project. |
||||
* Reviewing changes to stream subclasses within the Node.js project. |
||||
* Redirecting changes to streams from the Node.js project to this |
||||
project. |
||||
* Assisting in the implementation of stream providers within Node.js. |
||||
* Recommending versions of `readable-stream` to be included in Node.js. |
||||
* Messaging about the future of streams to give the community advance |
||||
notice of changes. |
||||
|
||||
See [readable-stream](https://github.com/nodejs/readable-stream) for |
||||
more details. |
296
server/node_modules/are-we-there-yet/node_modules/string_decoder/lib/string_decoder.js
generated
vendored
296
server/node_modules/are-we-there-yet/node_modules/string_decoder/lib/string_decoder.js
generated
vendored
@ -0,0 +1,296 @@ |
||||
// Copyright Joyent, Inc. and other Node contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
// persons to whom the Software is furnished to do so, subject to the
|
||||
// following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included
|
||||
// in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
'use strict'; |
||||
|
||||
/*<replacement>*/ |
||||
|
||||
var Buffer = require('safe-buffer').Buffer; |
||||
/*</replacement>*/ |
||||
|
||||
var isEncoding = Buffer.isEncoding || function (encoding) { |
||||
encoding = '' + encoding; |
||||
switch (encoding && encoding.toLowerCase()) { |
||||
case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw': |
||||
return true; |
||||
default: |
||||
return false; |
||||
} |
||||
}; |
||||
|
||||
function _normalizeEncoding(enc) { |
||||
if (!enc) return 'utf8'; |
||||
var retried; |
||||
while (true) { |
||||
switch (enc) { |
||||
case 'utf8': |
||||
case 'utf-8': |
||||
return 'utf8'; |
||||
case 'ucs2': |
||||
case 'ucs-2': |
||||
case 'utf16le': |
||||
case 'utf-16le': |
||||
return 'utf16le'; |
||||
case 'latin1': |
||||
case 'binary': |
||||
return 'latin1'; |
||||
case 'base64': |
||||
case 'ascii': |
||||
case 'hex': |
||||
return enc; |
||||
default: |
||||
if (retried) return; // undefined
|
||||
enc = ('' + enc).toLowerCase(); |
||||
retried = true; |
||||
} |
||||
} |
||||
}; |
||||
|
||||
// Do not cache `Buffer.isEncoding` when checking encoding names as some
|
||||
// modules monkey-patch it to support additional encodings
|
||||
function normalizeEncoding(enc) { |
||||
var nenc = _normalizeEncoding(enc); |
||||
if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc); |
||||
return nenc || enc; |
||||
} |
||||
|
||||
// StringDecoder provides an interface for efficiently splitting a series of
|
||||
// buffers into a series of JS strings without breaking apart multi-byte
|
||||
// characters.
|
||||
exports.StringDecoder = StringDecoder; |
||||
function StringDecoder(encoding) { |
||||
this.encoding = normalizeEncoding(encoding); |
||||
var nb; |
||||
switch (this.encoding) { |
||||
case 'utf16le': |
||||
this.text = utf16Text; |
||||
this.end = utf16End; |
||||
nb = 4; |
||||
break; |
||||
case 'utf8': |
||||
this.fillLast = utf8FillLast; |
||||
nb = 4; |
||||
break; |
||||
case 'base64': |
||||
this.text = base64Text; |
||||
this.end = base64End; |
||||
nb = 3; |
||||
break; |
||||
default: |
||||
this.write = simpleWrite; |
||||
this.end = simpleEnd; |
||||
return; |
||||
} |
||||
this.lastNeed = 0; |
||||
this.lastTotal = 0; |
||||
this.lastChar = Buffer.allocUnsafe(nb); |
||||
} |
||||
|
||||
StringDecoder.prototype.write = function (buf) { |
||||
if (buf.length === 0) return ''; |
||||
var r; |
||||
var i; |
||||
if (this.lastNeed) { |
||||
r = this.fillLast(buf); |
||||
if (r === undefined) return ''; |
||||
i = this.lastNeed; |
||||
this.lastNeed = 0; |
||||
} else { |
||||
i = 0; |
||||
} |
||||
if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i); |
||||
return r || ''; |
||||
}; |
||||
|
||||
StringDecoder.prototype.end = utf8End; |
||||
|
||||
// Returns only complete characters in a Buffer
|
||||
StringDecoder.prototype.text = utf8Text; |
||||
|
||||
// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer
|
||||
StringDecoder.prototype.fillLast = function (buf) { |
||||
if (this.lastNeed <= buf.length) { |
||||
buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed); |
||||
return this.lastChar.toString(this.encoding, 0, this.lastTotal); |
||||
} |
||||
buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length); |
||||
this.lastNeed -= buf.length; |
||||
}; |
||||
|
||||
// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a
|
||||
// continuation byte. If an invalid byte is detected, -2 is returned.
|
||||
function utf8CheckByte(byte) { |
||||
if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4; |
||||
return byte >> 6 === 0x02 ? -1 : -2; |
||||
} |
||||
|
||||
// Checks at most 3 bytes at the end of a Buffer in order to detect an
|
||||
// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)
|
||||
// needed to complete the UTF-8 character (if applicable) are returned.
|
||||
function utf8CheckIncomplete(self, buf, i) { |
||||
var j = buf.length - 1; |
||||
if (j < i) return 0; |
||||
var nb = utf8CheckByte(buf[j]); |
||||
if (nb >= 0) { |
||||
if (nb > 0) self.lastNeed = nb - 1; |
||||
return nb; |
||||
} |
||||
if (--j < i || nb === -2) return 0; |
||||
nb = utf8CheckByte(buf[j]); |
||||
if (nb >= 0) { |
||||
if (nb > 0) self.lastNeed = nb - 2; |
||||
return nb; |
||||
} |
||||
if (--j < i || nb === -2) return 0; |
||||
nb = utf8CheckByte(buf[j]); |
||||
if (nb >= 0) { |
||||
if (nb > 0) { |
||||
if (nb === 2) nb = 0;else self.lastNeed = nb - 3; |
||||
} |
||||
return nb; |
||||
} |
||||
return 0; |
||||
} |
||||
|
||||
// Validates as many continuation bytes for a multi-byte UTF-8 character as
|
||||
// needed or are available. If we see a non-continuation byte where we expect
|
||||
// one, we "replace" the validated continuation bytes we've seen so far with
|
||||
// a single UTF-8 replacement character ('\ufffd'), to match v8's UTF-8 decoding
|
||||
// behavior. The continuation byte check is included three times in the case
|
||||
// where all of the continuation bytes for a character exist in the same buffer.
|
||||
// It is also done this way as a slight performance increase instead of using a
|
||||
// loop.
|
||||
function utf8CheckExtraBytes(self, buf, p) { |
||||
if ((buf[0] & 0xC0) !== 0x80) { |
||||
self.lastNeed = 0; |
||||
return '\ufffd'; |
||||
} |
||||
if (self.lastNeed > 1 && buf.length > 1) { |
||||
if ((buf[1] & 0xC0) !== 0x80) { |
||||
self.lastNeed = 1; |
||||
return '\ufffd'; |
||||
} |
||||
if (self.lastNeed > 2 && buf.length > 2) { |
||||
if ((buf[2] & 0xC0) !== 0x80) { |
||||
self.lastNeed = 2; |
||||
return '\ufffd'; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.
|
||||
function utf8FillLast(buf) { |
||||
var p = this.lastTotal - this.lastNeed; |
||||
var r = utf8CheckExtraBytes(this, buf, p); |
||||
if (r !== undefined) return r; |
||||
if (this.lastNeed <= buf.length) { |
||||
buf.copy(this.lastChar, p, 0, this.lastNeed); |
||||
return this.lastChar.toString(this.encoding, 0, this.lastTotal); |
||||
} |
||||
buf.copy(this.lastChar, p, 0, buf.length); |
||||
this.lastNeed -= buf.length; |
||||
} |
||||
|
||||
// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a
|
||||
// partial character, the character's bytes are buffered until the required
|
||||
// number of bytes are available.
|
||||
function utf8Text(buf, i) { |
||||
var total = utf8CheckIncomplete(this, buf, i); |
||||
if (!this.lastNeed) return buf.toString('utf8', i); |
||||
this.lastTotal = total; |
||||
var end = buf.length - (total - this.lastNeed); |
||||
buf.copy(this.lastChar, 0, end); |
||||
return buf.toString('utf8', i, end); |
||||
} |
||||
|
||||
// For UTF-8, a replacement character is added when ending on a partial
|
||||
// character.
|
||||
function utf8End(buf) { |
||||
var r = buf && buf.length ? this.write(buf) : ''; |
||||
if (this.lastNeed) return r + '\ufffd'; |
||||
return r; |
||||
} |
||||
|
||||
// UTF-16LE typically needs two bytes per character, but even if we have an even
|
||||
// number of bytes available, we need to check if we end on a leading/high
|
||||
// surrogate. In that case, we need to wait for the next two bytes in order to
|
||||
// decode the last character properly.
|
||||
function utf16Text(buf, i) { |
||||
if ((buf.length - i) % 2 === 0) { |
||||
var r = buf.toString('utf16le', i); |
||||
if (r) { |
||||
var c = r.charCodeAt(r.length - 1); |
||||
if (c >= 0xD800 && c <= 0xDBFF) { |
||||
this.lastNeed = 2; |
||||
this.lastTotal = 4; |
||||
this.lastChar[0] = buf[buf.length - 2]; |
||||
this.lastChar[1] = buf[buf.length - 1]; |
||||
return r.slice(0, -1); |
||||
} |
||||
} |
||||
return r; |
||||
} |
||||
this.lastNeed = 1; |
||||
this.lastTotal = 2; |
||||
this.lastChar[0] = buf[buf.length - 1]; |
||||
return buf.toString('utf16le', i, buf.length - 1); |
||||
} |
||||
|
||||
// For UTF-16LE we do not explicitly append special replacement characters if we
|
||||
// end on a partial character, we simply let v8 handle that.
|
||||
function utf16End(buf) { |
||||
var r = buf && buf.length ? this.write(buf) : ''; |
||||
if (this.lastNeed) { |
||||
var end = this.lastTotal - this.lastNeed; |
||||
return r + this.lastChar.toString('utf16le', 0, end); |
||||
} |
||||
return r; |
||||
} |
||||
|
||||
function base64Text(buf, i) { |
||||
var n = (buf.length - i) % 3; |
||||
if (n === 0) return buf.toString('base64', i); |
||||
this.lastNeed = 3 - n; |
||||
this.lastTotal = 3; |
||||
if (n === 1) { |
||||
this.lastChar[0] = buf[buf.length - 1]; |
||||
} else { |
||||
this.lastChar[0] = buf[buf.length - 2]; |
||||
this.lastChar[1] = buf[buf.length - 1]; |
||||
} |
||||
return buf.toString('base64', i, buf.length - n); |
||||
} |
||||
|
||||
function base64End(buf) { |
||||
var r = buf && buf.length ? this.write(buf) : ''; |
||||
if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed); |
||||
return r; |
||||
} |
||||
|
||||
// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)
|
||||
function simpleWrite(buf) { |
||||
return buf.toString(this.encoding); |
||||
} |
||||
|
||||
function simpleEnd(buf) { |
||||
return buf && buf.length ? this.write(buf) : ''; |
||||
} |
@ -0,0 +1,59 @@ |
||||
{ |
||||
"_from": "string_decoder@~1.1.1", |
||||
"_id": "string_decoder@1.1.1", |
||||
"_inBundle": false, |
||||
"_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", |
||||
"_location": "/are-we-there-yet/string_decoder", |
||||
"_phantomChildren": {}, |
||||
"_requested": { |
||||
"type": "range", |
||||
"registry": true, |
||||
"raw": "string_decoder@~1.1.1", |
||||
"name": "string_decoder", |
||||
"escapedName": "string_decoder", |
||||
"rawSpec": "~1.1.1", |
||||
"saveSpec": null, |
||||
"fetchSpec": "~1.1.1" |
||||
}, |
||||
"_requiredBy": [ |
||||
"/are-we-there-yet/readable-stream" |
||||
], |
||||
"_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", |
||||
"_shasum": "9cf1611ba62685d7030ae9e4ba34149c3af03fc8", |
||||
"_spec": "string_decoder@~1.1.1", |
||||
"_where": "/home/sigonasr2/divar/server/node_modules/are-we-there-yet/node_modules/readable-stream", |
||||
"bugs": { |
||||
"url": "https://github.com/nodejs/string_decoder/issues" |
||||
}, |
||||
"bundleDependencies": false, |
||||
"dependencies": { |
||||
"safe-buffer": "~5.1.0" |
||||
}, |
||||
"deprecated": false, |
||||
"description": "The string_decoder module from Node core", |
||||
"devDependencies": { |
||||
"babel-polyfill": "^6.23.0", |
||||
"core-util-is": "^1.0.2", |
||||
"inherits": "^2.0.3", |
||||
"tap": "~0.4.8" |
||||
}, |
||||
"homepage": "https://github.com/nodejs/string_decoder", |
||||
"keywords": [ |
||||
"string", |
||||
"decoder", |
||||
"browser", |
||||
"browserify" |
||||
], |
||||
"license": "MIT", |
||||
"main": "lib/string_decoder.js", |
||||
"name": "string_decoder", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git://github.com/nodejs/string_decoder.git" |
||||
}, |
||||
"scripts": { |
||||
"ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", |
||||
"test": "tap test/parallel/*.js && node test/verify-dependencies" |
||||
}, |
||||
"version": "1.1.1" |
||||
} |
@ -0,0 +1,69 @@ |
||||
{ |
||||
"_from": "are-we-there-yet@~1.1.2", |
||||
"_id": "are-we-there-yet@1.1.5", |
||||
"_inBundle": false, |
||||
"_integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", |
||||
"_location": "/are-we-there-yet", |
||||
"_phantomChildren": { |
||||
"core-util-is": "1.0.2", |
||||
"inherits": "2.0.3", |
||||
"process-nextick-args": "2.0.1", |
||||
"safe-buffer": "5.1.2", |
||||
"util-deprecate": "1.0.2" |
||||
}, |
||||
"_requested": { |
||||
"type": "range", |
||||
"registry": true, |
||||
"raw": "are-we-there-yet@~1.1.2", |
||||
"name": "are-we-there-yet", |
||||
"escapedName": "are-we-there-yet", |
||||
"rawSpec": "~1.1.2", |
||||
"saveSpec": null, |
||||
"fetchSpec": "~1.1.2" |
||||
}, |
||||
"_requiredBy": [ |
||||
"/npmlog" |
||||
], |
||||
"_resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", |
||||
"_shasum": "4b35c2944f062a8bfcda66410760350fe9ddfc21", |
||||
"_spec": "are-we-there-yet@~1.1.2", |
||||
"_where": "/home/sigonasr2/divar/server/node_modules/npmlog", |
||||
"author": { |
||||
"name": "Rebecca Turner", |
||||
"url": "http://re-becca.org" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/iarna/are-we-there-yet/issues" |
||||
}, |
||||
"bundleDependencies": false, |
||||
"dependencies": { |
||||
"delegates": "^1.0.0", |
||||
"readable-stream": "^2.0.6" |
||||
}, |
||||
"deprecated": false, |
||||
"description": "Keep track of the overall completion of many disparate processes", |
||||
"devDependencies": { |
||||
"standard": "^11.0.1", |
||||
"tap": "^12.0.1" |
||||
}, |
||||
"files": [ |
||||
"index.js", |
||||
"tracker-base.js", |
||||
"tracker-group.js", |
||||
"tracker-stream.js", |
||||
"tracker.js", |
||||
"CHANGES.md" |
||||
], |
||||
"homepage": "https://github.com/iarna/are-we-there-yet", |
||||
"license": "ISC", |
||||
"main": "index.js", |
||||
"name": "are-we-there-yet", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git+https://github.com/iarna/are-we-there-yet.git" |
||||
}, |
||||
"scripts": { |
||||
"test": "standard && tap test/*.js" |
||||
}, |
||||
"version": "1.1.5" |
||||
} |
@ -0,0 +1,11 @@ |
||||
'use strict' |
||||
var EventEmitter = require('events').EventEmitter |
||||
var util = require('util') |
||||
|
||||
var trackerId = 0 |
||||
var TrackerBase = module.exports = function (name) { |
||||
EventEmitter.call(this) |
||||
this.id = ++trackerId |
||||
this.name = name |
||||
} |
||||
util.inherits(TrackerBase, EventEmitter) |
@ -0,0 +1,107 @@ |
||||
'use strict' |
||||
var util = require('util') |
||||
var TrackerBase = require('./tracker-base.js') |
||||
var Tracker = require('./tracker.js') |
||||
var TrackerStream = require('./tracker-stream.js') |
||||
|
||||
var TrackerGroup = module.exports = function (name) { |
||||
TrackerBase.call(this, name) |
||||
this.parentGroup = null |
||||
this.trackers = [] |
||||
this.completion = {} |
||||
this.weight = {} |
||||
this.totalWeight = 0 |
||||
this.finished = false |
||||
this.bubbleChange = bubbleChange(this) |
||||
} |
||||
util.inherits(TrackerGroup, TrackerBase) |
||||
|
||||
function bubbleChange (trackerGroup) { |
||||
return function (name, completed, tracker) { |
||||
trackerGroup.completion[tracker.id] = completed |
||||
if (trackerGroup.finished) return |
||||
trackerGroup.emit('change', name || trackerGroup.name, trackerGroup.completed(), trackerGroup) |
||||
} |
||||
} |
||||
|
||||
TrackerGroup.prototype.nameInTree = function () { |
||||
var names = [] |
||||
var from = this |
||||
while (from) { |
||||
names.unshift(from.name) |
||||
from = from.parentGroup |
||||
} |
||||
return names.join('/') |
||||
} |
||||
|
||||
TrackerGroup.prototype.addUnit = function (unit, weight) { |
||||
if (unit.addUnit) { |
||||
var toTest = this |
||||
while (toTest) { |
||||
if (unit === toTest) { |
||||
throw new Error( |
||||
'Attempted to add tracker group ' + |
||||
unit.name + ' to tree that already includes it ' + |
||||
this.nameInTree(this)) |
||||
} |
||||
toTest = toTest.parentGroup |
||||
} |
||||
unit.parentGroup = this |
||||
} |
||||
this.weight[unit.id] = weight || 1 |
||||
this.totalWeight += this.weight[unit.id] |
||||
this.trackers.push(unit) |
||||
this.completion[unit.id] = unit.completed() |
||||
unit.on('change', this.bubbleChange) |
||||
if (!this.finished) this.emit('change', unit.name, this.completion[unit.id], unit) |
||||
return unit |
||||
} |
||||
|
||||
TrackerGroup.prototype.completed = function () { |
||||
if (this.trackers.length === 0) return 0 |
||||
var valPerWeight = 1 / this.totalWeight |
||||
var completed = 0 |
||||
for (var ii = 0; ii < this.trackers.length; ii++) { |
||||
var trackerId = this.trackers[ii].id |
||||
completed += valPerWeight * this.weight[trackerId] * this.completion[trackerId] |
||||
} |
||||
return completed |
||||
} |
||||
|
||||
TrackerGroup.prototype.newGroup = function (name, weight) { |
||||
return this.addUnit(new TrackerGroup(name), weight) |
||||
} |
||||
|
||||
TrackerGroup.prototype.newItem = function (name, todo, weight) { |
||||
return this.addUnit(new Tracker(name, todo), weight) |
||||
} |
||||
|
||||
TrackerGroup.prototype.newStream = function (name, todo, weight) { |
||||
return this.addUnit(new TrackerStream(name, todo), weight) |
||||
} |
||||
|
||||
TrackerGroup.prototype.finish = function () { |
||||
this.finished = true |
||||
if (!this.trackers.length) this.addUnit(new Tracker(), 1, true) |
||||
for (var ii = 0; ii < this.trackers.length; ii++) { |
||||
var tracker = this.trackers[ii] |
||||
tracker.finish() |
||||
tracker.removeListener('change', this.bubbleChange) |
||||
} |
||||
this.emit('change', this.name, 1, this) |
||||
} |
||||
|
||||
var buffer = ' ' |
||||
TrackerGroup.prototype.debug = function (depth) { |
||||
depth = depth || 0 |
||||
var indent = depth ? buffer.substr(0, depth) : '' |
||||
var output = indent + (this.name || 'top') + ': ' + this.completed() + '\n' |
||||
this.trackers.forEach(function (tracker) { |
||||
if (tracker instanceof TrackerGroup) { |
||||
output += tracker.debug(depth + 1) |
||||
} else { |
||||
output += indent + ' ' + tracker.name + ': ' + tracker.completed() + '\n' |
||||
} |
||||
}) |
||||
return output |
||||
} |
@ -0,0 +1,36 @@ |
||||
'use strict' |
||||
var util = require('util') |
||||
var stream = require('readable-stream') |
||||
var delegate = require('delegates') |
||||
var Tracker = require('./tracker.js') |
||||
|
||||
var TrackerStream = module.exports = function (name, size, options) { |
||||
stream.Transform.call(this, options) |
||||
this.tracker = new Tracker(name, size) |
||||
this.name = name |
||||
this.id = this.tracker.id |
||||
this.tracker.on('change', delegateChange(this)) |
||||
} |
||||
util.inherits(TrackerStream, stream.Transform) |
||||
|
||||
function delegateChange (trackerStream) { |
||||
return function (name, completion, tracker) { |
||||
trackerStream.emit('change', name, completion, trackerStream) |
||||
} |
||||
} |
||||
|
||||
TrackerStream.prototype._transform = function (data, encoding, cb) { |
||||
this.tracker.completeWork(data.length ? data.length : 1) |
||||
this.push(data) |
||||
cb() |
||||
} |
||||
|
||||
TrackerStream.prototype._flush = function (cb) { |
||||
this.tracker.finish() |
||||
cb() |
||||
} |
||||
|
||||
delegate(TrackerStream.prototype, 'tracker') |
||||
.method('completed') |
||||
.method('addWork') |
||||
.method('finish') |
@ -0,0 +1,30 @@ |
||||
'use strict' |
||||
var util = require('util') |
||||
var TrackerBase = require('./tracker-base.js') |
||||
|
||||
var Tracker = module.exports = function (name, todo) { |
||||
TrackerBase.call(this, name) |
||||
this.workDone = 0 |
||||
this.workTodo = todo || 0 |
||||
} |
||||
util.inherits(Tracker, TrackerBase) |
||||
|
||||
Tracker.prototype.completed = function () { |
||||
return this.workTodo === 0 ? 0 : this.workDone / this.workTodo |
||||
} |
||||
|
||||
Tracker.prototype.addWork = function (work) { |
||||
this.workTodo += work |
||||
this.emit('change', this.name, this.completed(), this) |
||||
} |
||||
|
||||
Tracker.prototype.completeWork = function (work) { |
||||
this.workDone += work |
||||
if (this.workDone > this.workTodo) this.workDone = this.workTodo |
||||
this.emit('change', this.name, this.completed(), this) |
||||
} |
||||
|
||||
Tracker.prototype.finish = function () { |
||||
this.workTodo = this.workDone = 1 |
||||
this.emit('change', this.name, 1, this) |
||||
} |
@ -0,0 +1,924 @@ |
||||
# Changelog |
||||
|
||||
All notable changes to this project will be documented in this file. |
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this |
||||
project adheres to [Semantic Versioning](http://semver.org/). |
||||
|
||||
(Unreleased) |
||||
================== |
||||
### Changed |
||||
### Added |
||||
### Fixed |
||||
|
||||
2.6.1 |
||||
================== |
||||
### Fixed |
||||
* Ignore `maxWidth` in `fillText` and `strokeText` if it is undefined |
||||
* Fix crash (assertion failure) in Node.js 12.x when patterns or gradients are used |
||||
* Fix crash (check failure) in Node.js 12.x when using RGB16_565 format. (The |
||||
underlying arraybuffer was incorrectly sized.) |
||||
|
||||
2.6.0 |
||||
================== |
||||
### Changed |
||||
* Allow larger buffers to be returned from `toBuffer('raw')`. |
||||
### Added |
||||
* Support for various BMP headers and color depths (#1435) |
||||
### Fixed |
||||
* Fix crash when changing canvas width/height while `fillStyle` or `strokeStyle` |
||||
was set to a `CanvasPattern` or `CanvasGradient` (#1357). |
||||
* Fix crash when changing width/height of SVG canvases (#1380). |
||||
* Fix crash when using `toBuffer('raw')` with large canvases (#1158). |
||||
* Clarified meaning of byte ordering for `toBuffer('raw')` in readme. (#1416) |
||||
* Fix package.json Typings field to point to Declaration file (#1432) |
||||
* Properly check return value from `Set` and `Call`. (#1415) |
||||
* Use `Get` version from `Nan` instead of `v8`. (#1415) |
||||
|
||||
2.5.0 |
||||
================== |
||||
### Added |
||||
* Support redirects when fetching images (using [simple-get](https://github.com/feross/simple-get)) (#1398) |
||||
* Support Node.js v12 |
||||
### Fixed |
||||
* Fix object literal & arrow function syntax usage for IE. |
||||
|
||||
2.4.1 |
||||
================== |
||||
### Fixed |
||||
* Guard JPEG width/height against maximum supported (#1385) |
||||
* Fix electron 5 and node 12 compatibility |
||||
* Fix encoding options (quality) parameter in `canvas.toDataURL()` |
||||
|
||||
2.4.0 |
||||
================== |
||||
### Added |
||||
* (Actually) added `resolution` option for `canvas.toBuffer("image/png")` and |
||||
`canvas.createPNGStream()`. This was documented since 2.0.0 but not working. |
||||
* Add typescript definitions. |
||||
### Fixed |
||||
* PDF metadata (added in 2.3.0) wasn't being set with `canvas.createPDFStream()` |
||||
* Fix custom "inspect" function deprecation warnings (#1326) |
||||
|
||||
2.3.1 |
||||
================== |
||||
### Fixed |
||||
* Fix `canvas.toBuffer()` for JPEGs (#1350) |
||||
|
||||
2.3.0 |
||||
================== |
||||
### Added |
||||
* Add support for multiple PDF page sizes |
||||
* Add support for embedding document metadata in PDFs |
||||
|
||||
### Fixed |
||||
* Don't crash when font string is invalid (bug since 2.2.0) (#1328) |
||||
* Fix memory leak in `canvas.toBuffer()` (#1202, #1296) |
||||
* Fix memory leak in `ctx.font=` (#1202) |
||||
|
||||
2.2.0 |
||||
================== |
||||
### Added |
||||
* BMP support |
||||
|
||||
### Fixed |
||||
* Reset context on resurface (#1292) |
||||
* Support Jest test framework (#1311) |
||||
|
||||
2.1.0 |
||||
================== |
||||
### Added |
||||
* Warn when building with old, unsupported versions of cairo or libjpeg. |
||||
|
||||
2.0.0 |
||||
================== |
||||
|
||||
**Upgrading from 1.x** |
||||
```js |
||||
// (1) The Canvas constructor is no longer the default export from the module. |
||||
/* old: */ |
||||
const Canvas = require('canvas') |
||||
const mycanvas = new Canvas(width, height) |
||||
/* new: */ |
||||
const { createCanvas, Canvas } = require('canvas') |
||||
const mycanvas = createCanvas(width, height) |
||||
mycanvas instanceof Canvas // true |
||||
|
||||
/* old: */ |
||||
const Canvas = require('canvas') |
||||
const myimg = new Canvas.Image() |
||||
/* new: */ |
||||
const { Image } = require('canvas') |
||||
const myimg = new Image() |
||||
|
||||
// (2) The quality argument for canvas.createJPEGStream/canvas.jpegStream now |
||||
// goes from 0 to 1 instead of from 0 to 100: |
||||
canvas.createJPEGStream({ quality: 50 }) // old |
||||
canvas.createJPEGStream({ quality: 0.5 }) // new |
||||
|
||||
// (3) The ZLIB compression level and PNG filter options for canvas.toBuffer are |
||||
// now named instead of positional arguments: |
||||
canvas.toBuffer(undefined, 3, canvas.PNG_FILTER_NONE) // old |
||||
canvas.toBuffer(undefined, { compressionLevel: 3, filters: canvas.PNG_FILTER_NONE }) // new |
||||
// or specify the mime type explicitly: |
||||
canvas.toBuffer('image/png', { compressionLevel: 3, filters: canvas.PNG_FILTER_NONE }) // new |
||||
|
||||
// (4) #2 also applies for canvas.pngStream, although these arguments were not |
||||
// documented: |
||||
canvas.pngStream(3, canvas.PNG_FILTER_NONE) // old |
||||
canvas.pngStream({ compressionLevel: 3, filters: canvas.PNG_FILTER_NONE }) // new |
||||
|
||||
// (5) canvas.syncPNGStream() and canvas.syncJPEGStream() have been removed: |
||||
canvas.syncPNGStream() // old |
||||
canvas.createSyncPNGStream() // old |
||||
canvas.createPNGStream() // new |
||||
|
||||
canvas.syncJPEGStream() // old |
||||
canvas.createSyncJPEGStream() // old |
||||
canvas.createJPEGStream() // new |
||||
|
||||
// (6) Context2d.filter has been renamed to context2d.quality to avoid a |
||||
// conflict with the new standard 'filter' property. |
||||
context.filter = 'best' // old |
||||
context.quality = 'best' // new |
||||
``` |
||||
|
||||
### Breaking |
||||
* Drop support for Node.js <6.x |
||||
* Remove sync stream functions (bc53059). Note that most streams are still |
||||
synchronous (run in the main thread); this change just removed `syncPNGStream` |
||||
and `syncJPEGStream`. |
||||
* Pango is now *required* on all platforms (7716ae4). |
||||
* Make the `quality` argument for JPEG output go from 0 to 1 to match HTML spec. |
||||
* Make the `compressionLevel` and `filters` arguments for `canvas.toBuffer()` |
||||
named instead of positional. Same for `canvas.pngStream()`, although these |
||||
arguments were not documented. |
||||
* See also: *Correct some of the `globalCompositeOperator` types* under |
||||
**Fixed**. These changes were bug-fixes, but will break existing code relying |
||||
on the incorrect types. |
||||
* Rename `context2d.filter` to `context2d.quality` to avoid a conflict with the |
||||
new standard 'filter' property. Note that the standard 'filter' property is |
||||
not yet implemented. |
||||
|
||||
### Fixed |
||||
* Fix build with SVG support enabled (#1123) |
||||
* Prevent segfaults caused by loading invalid fonts (#1105) |
||||
* Fix memory leak in font loading |
||||
* Port has_lib.sh to javascript (#872) |
||||
* Correctly sample the edge of images when scaling (#1084) |
||||
* Detect CentOS libjpeg path (b180ea5) |
||||
* Improve measureText accuracy (2bbfec5) |
||||
* Fix memory leak when image callbacks reference the image (1f4b646) |
||||
* Fix putImageData(data, negative, negative) (2102e25) |
||||
* Fix SVG recognition when loading from buffer (77749e6) |
||||
* Re-rasterize SVG when drawing to a context and dimensions changed (79bf232) |
||||
* Prevent JPEG errors from crashing process (#1124) |
||||
* Improve handling of invalid arguments (#1129) |
||||
* Fix repeating patterns when drawing a canvas to itself (#1136) |
||||
* Prevent segfaults caused by creating a too large canvas |
||||
* Fix parse-font regex to allow for whitespaces. |
||||
* Allow assigning non-string values to fillStyle and strokeStyle |
||||
* Fix drawing zero-width and zero-height images. |
||||
* Fix DEP0005 deprecation warning |
||||
* Don't assume `data:` URIs assigned to `img.src` are always base64-encoded |
||||
* Fix formatting of color strings (e.g. `ctx.fillStyle`) on 32-bit platforms |
||||
* Explicitly export symbols for the C++ API |
||||
* Named CSS colors should match case-insensitive |
||||
* Correct some of the `globalCompositeOperator` types to match the spec: |
||||
* "hsl-hue" is now "hue" |
||||
* "hsl-saturation" is now "saturation" |
||||
* "hsl-color" is now "color" |
||||
* "hsl-luminosity" is now "luminosity" |
||||
* "darker" is now "darken" |
||||
* "dest" is now "destination" |
||||
* "add" is removed (but is the same as "lighter") |
||||
* "source" is now "copy" |
||||
* Provide better, Node.js core-style coded errors for failed sys calls. (For |
||||
example, provide an error with code 'ENOENT' if setting `img.src` to a path |
||||
that does not exist.) |
||||
* Support reading CMYK, YCCK JPEGs. |
||||
* Hide `Image.prototype.source` |
||||
* Fix behavior of maxWidth (#1088) |
||||
* Fix behavior of textAlignment with maxWidth (#1253) |
||||
|
||||
### Added |
||||
* Prebuilds (#992) with different libc versions to the prebuilt binary (#1140) |
||||
* Support `canvas.getContext("2d", {alpha: boolean})` and |
||||
`canvas.getContext("2d", {pixelFormat: "..."})` |
||||
* Support indexed PNG encoding. |
||||
* Support `currentTransform` (d6714ee) |
||||
* Export `CanvasGradient` (6a4c0ab) |
||||
* Support #RGBA , #RRGGBBAA hex colors (10a82ec) |
||||
* Support maxWidth arg for fill/strokeText (175b40d) |
||||
* Support image.naturalWidth/Height (a5915f8) |
||||
* Render SVG img elements when librsvg is available (1baf00e) |
||||
* Support ellipse method (4d4a726) |
||||
* Browser-compatible API (6a29a23) |
||||
* Support for jpeg on Windows (42e9a74) |
||||
* Support for backends (1a6dffe) |
||||
* Support for `canvas.toBuffer("image/jpeg")` |
||||
* Unified configuration options for `canvas.toBuffer()`, `canvas.pngStream()` |
||||
and `canvas.jpegStream()` |
||||
* ~~Added `resolution` option for `canvas.toBuffer("image/png")` and |
||||
`canvas.createPNGStream()`~~ this was not working |
||||
* Support for `canvas.toDataURI("image/jpeg")` (sync) |
||||
* Support for `img.src = <url>` to match browsers |
||||
* Support reading data URL on `img.src` |
||||
* Readme: add dependencies command for OpenBSD |
||||
* Throw error if calling jpegStream when canvas was not built with JPEG support |
||||
* Emit error if trying to load GIF, SVG or JPEG image when canvas was not built |
||||
with support for that format |
||||
|
||||
1.6.x (unreleased) |
||||
================== |
||||
### Fixed |
||||
* Make setLineDash able to handle full zeroed dashes (b8cf1d7) |
||||
* Fix reading fillStyle after setting it from gradient to color (a84b2bc) |
||||
|
||||
### Added |
||||
* Support for pattern repeat and no-repeat (#1066) |
||||
* Support for context globalAlpha for gradients and patterns (#1064) |
||||
|
||||
1.6.9 / 2017-12-20 |
||||
================== |
||||
### Fixed |
||||
* Fix some instances of crashes (7c9ec58, 8b792c3) |
||||
* Fix node 0.x compatibility (dca33f7) |
||||
|
||||
1.6.8 / 2017-12-12 |
||||
================== |
||||
### Fixed |
||||
* Faster, more compliant parseFont (4625efa, 37cd969) |
||||
|
||||
1.6.7 / 2017-09-08 |
||||
================== |
||||
### Fixed |
||||
* Minimal backport of #985 (rotated text baselines) (c19edb8) |
||||
|
||||
1.6.6 / 2017-05-03 |
||||
================== |
||||
### Fixed |
||||
* Use .node extension for requiring native module so webpack works (1b05599) |
||||
* Correct text baseline calculation (#1037) |
||||
|
||||
1.6.5 / 2017-03-18 |
||||
================== |
||||
### Changed |
||||
* Parse font using parse-css-font and units-css (d316416) |
||||
|
||||
1.6.4 / 2017-02-26 |
||||
================== |
||||
### Fixed |
||||
* Make sure Canvas#toDataURL is always async if callback is passed (8586d72) |
||||
|
||||
1.6.3 / 2017-02-14 |
||||
================== |
||||
### Fixed |
||||
* Fix isnan() and isinf() on clang (5941e13) |
||||
|
||||
1.6.2 / 2016-10-30 |
||||
================== |
||||
### Fixed |
||||
* Fix deprecation warnings (c264879) |
||||
* Bump nan (e4aea20) |
||||
|
||||
1.6.1 / 2016-10-23 |
||||
================== |
||||
|
||||
### Fixed |
||||
* Make has_lib.sh work on BSD OSes (1727d66) |
||||
|
||||
1.6.0 / 2016-10-16 |
||||
================== |
||||
|
||||
* Support canvas.getBuffer('raw') (#819) |
||||
|
||||
1.5.0 / 2016-09-11 |
||||
================== |
||||
|
||||
* Crude PDF stream implementation (#781) |
||||
* Update CI settings (#797) |
||||
* Reduce some of the install warnings (#794) |
||||
* Fix lineDash browser tests never finishing (#793) |
||||
* Add issue template (#791) |
||||
|
||||
1.4.0 / 2016-06-03 |
||||
================== |
||||
|
||||
* Add support for evenodd fill rule (#762) |
||||
|
||||
1.3.17 / 2016-06-03 |
||||
=================== |
||||
|
||||
* Removing redundant duplicate calls (#769) |
||||
* Cleanup examples (#776) |
||||
* Fix CanvasRenderingContext2D class name (#777) |
||||
|
||||
1.3.16 / 2016-05-29 |
||||
=================== |
||||
|
||||
* Fix leak of data when streaming JPEG (#774) |
||||
|
||||
1.3.15 / 2016-05-09 |
||||
=================== |
||||
|
||||
* Fix segfault in putImageData (#750) |
||||
|
||||
1.3.14 / 2016-05-05 |
||||
=================== |
||||
|
||||
* Clamp JPEG buffer size (#739) |
||||
|
||||
1.3.13 / 2016-05-01 |
||||
=================== |
||||
|
||||
* Bumb NAN version (#759) |
||||
|
||||
1.3.12 / 2016-03-01 |
||||
=================== |
||||
|
||||
* Expose freetype version (#718) |
||||
* Require new in constructor (#717) |
||||
|
||||
1.3.11 / 2016-03-01 |
||||
=================== |
||||
|
||||
* Properly clamp quality in toDataURL (#728) |
||||
* Strict mode (#719) |
||||
|
||||
1.3.10 / 2016-02-07 |
||||
=================== |
||||
|
||||
* Fix segfault on node 0.10.x (#712) |
||||
|
||||
1.3.9 / 2016-01-27 |
||||
================== |
||||
|
||||
* Allow to unbind onload/onerror callback handlers (#706) |
||||
|
||||
1.3.8 / 2016-01-22 |
||||
================== |
||||
|
||||
* Cleanup build scripts and fix pangocairo detection (#701) |
||||
|
||||
1.3.7 / 2016-01-13 |
||||
================== |
||||
|
||||
* Don't unbind onload/onerror callbacks after invoking them (#615) |
||||
|
||||
1.3.6 / 2016-01-06 |
||||
================== |
||||
|
||||
* Allow optional arguments in `toDataURL` to be `undefined` and improve `toDataURL`'s spec compliance (#690) |
||||
|
||||
1.3.5 / 2015-12-07 |
||||
================== |
||||
|
||||
* Add image/jpeg support to `toDataUrl` (#685) |
||||
|
||||
1.3.4 / 2015-11-21 |
||||
================== |
||||
|
||||
* Upgrade nan to 2.1.0 (#671) |
||||
|
||||
1.3.3 / 2015-11-21 |
||||
================== |
||||
|
||||
* Fix compilation on Visual Studio 2015 (#670) |
||||
|
||||
1.3.2 / 2015-11-18 |
||||
================== |
||||
|
||||
* Fix incorrect Y offset and scaling for shadows (#669) |
||||
|
||||
1.3.1 / 2015-11-09 |
||||
================== |
||||
|
||||
* Wrap std::min calls in paranthesis to prevent macro expansion on windows (#660) |
||||
|
||||
1.3.0 / 2015-10-26 |
||||
================== |
||||
|
||||
* Expose ImageData constructor and make it more spec-compliant (#569) |
||||
|
||||
1.2.11 / 2015-10-20 |
||||
=================== |
||||
|
||||
* Implement blur on images (#648) |
||||
|
||||
1.2.10 / 2015-10-12 |
||||
=================== |
||||
|
||||
* Fix segfault in Canvas#jpegStream (#629) |
||||
|
||||
1.2.9 / 2015-09-14 |
||||
================== |
||||
|
||||
* Upgrade to Nan 2.x with support for iojs 3.x and Node.js 4.x (#622) |
||||
|
||||
1.2.8 / 2015-08-30 |
||||
================== |
||||
|
||||
* Clean up the tests (#612) |
||||
* Replace CanvasPixelArray with Uint8ClampedArray to be API-compliant (#604) |
||||
* Specify travis iojs versions (#611) |
||||
|
||||
1.2.7 / 2015-07-29 |
||||
================== |
||||
|
||||
* Avoid future reserved keyword (#592) |
||||
|
||||
1.2.6 / 2015-07-29 |
||||
================== |
||||
|
||||
* Fix the build on windows (#589) |
||||
|
||||
1.2.5 / 2015-07-28 |
||||
================== |
||||
|
||||
* Another npm release, since 1.2.4 was botched (see #596) |
||||
|
||||
1.2.4 / 2015-07-23 |
||||
================== |
||||
|
||||
* Point `homepage` and `repository` links to [`github.com/Automattic/node-canvas`][repo] |
||||
* Fix Travis builds and Cairo include paths (thanks, Linus Unnebäck!) |
||||
|
||||
1.2.3 / 2015-05-21 |
||||
================== |
||||
|
||||
* Update TJ Holowaychuk's username in the readme |
||||
* Fix segmentation fault in `Image::loadFromBuffer` when buffer is empty |
||||
* Optimize getImageData() |
||||
* package: add "license" attribute |
||||
* package: update "nan" to v1.8.4 |
||||
* package: append `.git` to "repository" URL |
||||
|
||||
1.2.2 / 2015-04-18 |
||||
================== |
||||
|
||||
* Now works on io.js |
||||
* Fix 'drawImage' scaling (the dimensions of the region that gets clipped also needs to be scaled). |
||||
* Fix bug in StreamPNGSync |
||||
|
||||
1.2.1 / 2015-02-10 |
||||
================== |
||||
|
||||
* Use non-cairo 1.12 API for shadow blur |
||||
|
||||
1.2.0 / 2015-01-31 |
||||
================== |
||||
|
||||
* travis: drop support for node v0.6 |
||||
* Merge pull request #507 from salzhrani/iojs |
||||
* io.js compatibility |
||||
* Merge pull request #505 from woodcoder/shadow-blur |
||||
* Fix issue with line width not being correct in stroked shadows. |
||||
* Add another shadow/transform test. |
||||
* Refactor setSourceRGBA to allow the context to be supplied. |
||||
* Simple image shadow (no blurring or handling current transforms) based on image's alpha channel. |
||||
* Test showing issue #133, that images don't have shadows. |
||||
* The +1 on the offset seems to match the browser's output better, but I can't work out why it would be needed (unless it's pixel alignment related). |
||||
* Make the shadow radius more accurately match the browser's, making use of sigma scale as used in SKIA: https://github.com/google/skia/blob/master/src/effects/SkBlurMask.cpp#L26. |
||||
* Create a new image surface to render blurred shadows to, this means that vector formats like PDF will now render blurs. |
||||
* Add recommended calls to flush and dirty buffer, as per http://www.cairographics.org/manual/cairo-Image-Surfaces.html#cairo-image-surface-get-data. |
||||
* Add PDF button to test page to easily generate PDF version of the test image. |
||||
* Fix to ensure shadowOffset is unaffected by the current transform. |
||||
* New test illustrating that canvas implementation doesn't translate the shadowOffset. |
||||
* Merge pull request #490 from AllYearbooks/master |
||||
* Merge pull request #501 from motiz88/hsl-color |
||||
* Code style + attribution. Also removed parseClipped() and commented out wrapInt (now wrap_int). |
||||
* Added visual tests for hsl() and hsla() color parsing. |
||||
* Fixed <number> handling in hsl/hsla color parser. parseNumber() was erroring out on numbers with long fractional parts. |
||||
* hsl/hsla color parsing + rebeccapurple hsl() and hsla() color values are now supported, with corresponding unit tests. Also added rebeccapurple (from CSS Color Level 4) to the named color list. |
||||
* float rather than int for drawImage arguments |
||||
* with_pango to true and use fontconfig to load fonts |
||||
* Merge pull request #399 from nulltask/fix/lighten |
||||
* Merge pull request #465 from espadrine/master |
||||
* Merge pull request #470 from tonylukasavage/patch-1 |
||||
* Add one-liner MacPorts install to docs |
||||
* Offer SVG output. |
||||
* Readme update: node-gyp. |
||||
* Readme: fix subheading size |
||||
* Readme: remove Gemnasium badge, use SVG for npm badge |
||||
* Readme: add Travis-CI badge |
||||
* change operator lighter to lighten |
||||
|
||||
1.1.6 / 2014-08-01 |
||||
================== |
||||
|
||||
* export canvas.CanvasPixelArray instead of canvas.PixelArray which is undefined |
||||
* Glib version test into giflib exists test |
||||
* Giflib 5.1 |
||||
* install: use an even older version of giflib (v4.1.6) |
||||
* install: use an older version of giflib (v4.2.3) |
||||
* install: install `giflib` |
||||
* install: use more compatible sh syntax |
||||
* travis: attempt to run the ./install script before testintg |
||||
* travis: test node v0.6, v0.8, v0.10, and v0.11 |
||||
* Distinguish between 'add' and 'lighter' |
||||
|
||||
1.1.5 / 2014-06-26 |
||||
================== |
||||
|
||||
* Readme: remove Contributors section |
||||
* Readme: update copyright |
||||
* On Windows, copy required DLLs next to ".node" file (#442 @pandell) |
||||
* Duplicate "msvc_settings" for "Debug" configuration |
||||
* Remove unneeded #include <nan.h> |
||||
* Use float constants to prevent double->float conversion warning |
||||
* Ignore Visual C++ 2013 warnings (#441 @pandell) |
||||
* Add algorithm include to CanvasRenderingContext2d.cc for std::min (#435 @kkoopa) |
||||
* Updated NAN to 1.2.0 (#434 @kkoopa) |
||||
|
||||
1.1.4 / 2014-06-08 |
||||
================== |
||||
|
||||
* Fix compile error with Visual C++ |
||||
* Add support for the lineDash API |
||||
* Update NAN |
||||
* New V8 compatibility |
||||
* Correctly limit bounds in PutImageData to prevent segment fault |
||||
* Fix segfault when onload and onerror are not function |
||||
* Add support for Node 0.11.9 |
||||
|
||||
1.1.3 / 2014-01-08 |
||||
================== |
||||
|
||||
* Add CAIRO_FORMAT_INVALID |
||||
* Readjust the amount of allocated memory |
||||
* Fix argument index for filter parameter |
||||
* Make has_lib.sh work properly on Debian 64bit |
||||
|
||||
1.1.2 / 2013-10-31 |
||||
================== |
||||
|
||||
* NAN dep upgrade, full node@<=0.11.8 compatibility |
||||
* Use node::MakeCallback() instead of v8::Function::Call() |
||||
* Improve nan location discovery |
||||
* Fix enabling gif/jpeg options on Ubuntu 13.04 |
||||
|
||||
1.1.1 / 2013-10-09 |
||||
================== |
||||
|
||||
* add better support for outdated versions of Cairo |
||||
|
||||
1.1.0 / 2013-08-01 |
||||
================== |
||||
|
||||
* add png compression options |
||||
* add jpeg stream progressive mode option |
||||
* fix resource leaks on read errors |
||||
|
||||
1.0.4 / 2013-07-23 |
||||
================== |
||||
|
||||
* 0.11.4+ compatibility using NAN |
||||
* fix typo in context2d for imageSmoothingEnabled |
||||
|
||||
1.0.3 / 2013-06-04 |
||||
================== |
||||
|
||||
* add "nearest" and "bilinear" to patternQuality |
||||
* fix fread() retval check (items not bytes) |
||||
* removed unneeded private fields |
||||
|
||||
1.0.2 / 2013-03-22 |
||||
================== |
||||
|
||||
* add Context2d#imageSmoothingEnabled= |
||||
|
||||
1.0.1 / 2013-02-25 |
||||
================== |
||||
|
||||
* travis: test modern node versions |
||||
* change the node-gyp build to use pkg-config |
||||
|
||||
1.0.0 / 2013-01-16 |
||||
================== |
||||
|
||||
* add conditional pango font support [Julian Viereck] |
||||
* add `Canvas#{png,jpeg}Stream()` alias of create* legacy methods |
||||
* add support for grayscale JPEGs |
||||
* fix: explicitly cast the after work callback function to "uv_after_work_cb" |
||||
* fix test server for express 3.x |
||||
* fix: call cairo_surface_finish in ~Canvas when pdf |
||||
* remove old 0.4.x binding support. Closes #197 |
||||
|
||||
0.13.1 / 2012-08-20 |
||||
================== |
||||
|
||||
* fix cases where GIF_LIB_VERSION is not defined |
||||
* fix auto-detection of optional libraries for OS X |
||||
* fix Context2d::SetFont for pango when setting normal weight/style |
||||
|
||||
0.13.0 / 2012-08-12 |
||||
================== |
||||
|
||||
* add pango support [c-spencer] |
||||
* add pango / png / jpeg gyp auto-detection [c-spencer] |
||||
* add `.gifVersion` [tootallnate] |
||||
* add `.jpegVersion` [tootallnate] |
||||
* add moar gyp stuff [tootallnate] |
||||
* remove wscript |
||||
* fix `closure_destroy()` with cast for `AdjustAmountOfExternalAllocatedMemory()` |
||||
|
||||
0.12.1 / 2012-06-29 |
||||
================== |
||||
|
||||
* fix jpeg malloc Image issue. Closes #160 [c-spencer] |
||||
* Improve Image mode API |
||||
* Add clearData method to handle reassignment of src, and clean up mime data memory handling. |
||||
* Improve how _data_len is managed and use to adjust memory, hide more of mime API behind cairo version conditional. |
||||
* Add optional mime-data tracking to Image. |
||||
* Refactor JPEG decoding into decodeJPEGIntoSurface |
||||
|
||||
0.12.0 / 2012-05-02 |
||||
================== |
||||
|
||||
* Added `textDrawingMode` context property [c-spencer] |
||||
* Added additional TextMetrics properties [c-spencer] |
||||
|
||||
0.11.3 / 2012-04-25 |
||||
================== |
||||
|
||||
* Fixed `Image` memory leak. Closes #150 |
||||
* Fixed Context2d::hasShadow() |
||||
|
||||
0.11.2 / 2012-04-12 |
||||
================== |
||||
|
||||
* Fixed: pdf memory leak, free closure and surface in ~Canvas |
||||
|
||||
0.11.1 / 2012-04-10 |
||||
================== |
||||
|
||||
* Changed: renamed .nextPage() to .addPage() |
||||
|
||||
0.11.0 / 2012-04-10 |
||||
================== |
||||
|
||||
* Added quick PDF support |
||||
* Added `Canvas#type` getter |
||||
* Added ./examples/pdf-images.js |
||||
* Added ./examples/multiple-page-pdf.js |
||||
* Added ./examples/small-pdf.js |
||||
|
||||
0.10.3 / 2012-02-27 |
||||
================== |
||||
|
||||
* Fixed quadratic curve starting point for undefined path. Closes #155 |
||||
|
||||
0.10.2 / 2012-02-06 |
||||
================== |
||||
|
||||
* Fixed: Context2d setters with invalid values ignored |
||||
* Changed: replaced seek with `fstat()` |
||||
|
||||
0.10.1 / 2012-01-31 |
||||
================== |
||||
|
||||
* Added _/opt/local/lib_ to wscript [obarthel] |
||||
* Added bounds checking to `rgba_to_string()` [obarthel] |
||||
* Fixed cleanup in JPEG Image loading [obarthel] |
||||
* Fixed missing CSS color table values [obarthel] |
||||
|
||||
0.10.0 / 2012-01-18 |
||||
================== |
||||
|
||||
* Added `ctx.createPattern()` [slaskis] |
||||
|
||||
0.9.0 / 2012-01-13 |
||||
================== |
||||
|
||||
* Added `createJPEGStream()` [Elijah Hamovitz] |
||||
|
||||
0.8.3 / 2012-01-04 |
||||
================== |
||||
|
||||
* Added support for libjpeg62-dev or libjpeg8-dev [wwlinx] |
||||
|
||||
0.8.2 / 2011-12-14 |
||||
================== |
||||
|
||||
* Fixed two memory leaks in context2d [Tharit] |
||||
* Fixed `make test-server` |
||||
|
||||
0.8.1 / 2011-10-31 |
||||
================== |
||||
|
||||
* Added 0.5.x support [TooTallNate] |
||||
* Fixed `measureText().width`. Closes #126 |
||||
|
||||
0.8.0 / 2011-10-28 |
||||
================== |
||||
|
||||
* Added data uri support. Closes #49 |
||||
|
||||
0.7.3 / 2011-09-14 |
||||
================== |
||||
|
||||
* Added better lineTo() / moveTo() exception messages |
||||
|
||||
0.7.2 / 2011-08-30 |
||||
================== |
||||
|
||||
* Changed: prefix some private methods with _ |
||||
|
||||
0.7.1 / 2011-08-25 |
||||
================== |
||||
|
||||
* Added better image format detection |
||||
* Added libpath options to waf configuration; this was necessary to correctly detect gif and jpeg support on FreeBSD |
||||
|
||||
0.7.0 / 2011-07-12 |
||||
================== |
||||
|
||||
* Added GIF support [Brian McKinney] |
||||
|
||||
0.6.0 / 2011-06-04 |
||||
================== |
||||
|
||||
* Added `Image#src=Buffer` support. Closes #91 |
||||
* Added `devDependencies` |
||||
* Added `source-atop` test |
||||
* Added _image-src.js_ example |
||||
* Removed `V8::AdjustAmountOfExternalAllocatedMemory()` call from `toBuffer()` |
||||
* Fixed v8 memory hint when resizing canvas [atomizer] |
||||
|
||||
0.5.4 / 2011-04-20 |
||||
================== |
||||
|
||||
* Added; special case of zero-width rectangle [atomizer] |
||||
* Fixed; do not clamp arguments to integer values [atomizer] |
||||
* Fixed; preserve current path during `fillRect()` and `strokeRect()` [atomizer] |
||||
* Fixed; `restorePath()`: clear current path before appending [atomizer] |
||||
|
||||
0.5.3 / 2011-04-11 |
||||
================== |
||||
|
||||
* Clamp image bounds in `PixelArray::PixelArray()` [Marcello Bastea-Forte] |
||||
|
||||
0.5.2 / 2011-04-09 |
||||
================== |
||||
|
||||
* Changed; make `PNGStream` a real `Stream` [Marcello Bastea-Forte] |
||||
|
||||
0.5.1 / 2011-03-16 |
||||
================== |
||||
|
||||
* Fixed (kinda) `img.src=` error handling |
||||
* Fixed; move closure.h down for malloc ref. Closes #80 |
||||
|
||||
0.5.0 / 2011-03-14 |
||||
================== |
||||
|
||||
* Added several more operators (color-dodge, color-burn, difference, etc) |
||||
* Performance; no longer re-allocating `closure->data` for each png write |
||||
* Fixed freeing of `Context2d` states |
||||
* Fixed text alignment / baseline [Olaf] |
||||
* Fixed HandleScopes [Olaf] |
||||
* Fixed small misc memory leaks |
||||
* Fixed `Buffer` usage for node 0.4.x |
||||
|
||||
0.4.3 / 2011-01-11 |
||||
================== |
||||
|
||||
* Fixed font family dereferencing. Closes #72 |
||||
* Fixed; stripping of quotes from font-family before applying |
||||
* Fixed duplicate textAlign getter |
||||
* Removed sans-serif default of _Arial_ |
||||
|
||||
0.4.2 / 2010-12-28 |
||||
================== |
||||
|
||||
* Fixed font size growing issue after successive calls. Closes #70 |
||||
|
||||
0.4.1 / 2010-12-18 |
||||
================== |
||||
|
||||
* Fixed; toString() first argument of `{fill,stroke}Text()`. Closes #68 |
||||
|
||||
0.4.0 / 2010-12-12 |
||||
================== |
||||
|
||||
* Added `drawImage()` with `Canvas` instance support. Closes #67 |
||||
|
||||
0.3.3 / 2010-11-30 |
||||
================== |
||||
|
||||
* Added `CanvasRenderingContext2d#patternQuality` accessor, accepting _fast_, _good_, and _best_ |
||||
* Fixed; pre-multiply `putImageData()` components |
||||
* Fixed; `PixelArray` data is not premultiplied |
||||
|
||||
0.3.2 / 2010-11-26 |
||||
================== |
||||
|
||||
* Added --profile option to config |
||||
* Fixed `eio_custom` segfault(s). Closes #46 |
||||
* Fixed two named colors. Closes #62 [thanks noonat] |
||||
* Fixed a few warnings |
||||
* Fixed; freeing data in `Image::loadJPEG()` on failure |
||||
* Fixed; include _jpeglib_ only when __HAVE_JPEG__ |
||||
* Fixed; using `strstr()` instead of `strnstr()` |
||||
|
||||
0.3.1 / 2010-11-24 |
||||
================== |
||||
|
||||
* Fixed; `Image` loading is sync until race-condition is resolved |
||||
* Fixed; `Image::loadJPEG()` return status based on errno |
||||
|
||||
0.3.0 / 2010-11-24 |
||||
================== |
||||
|
||||
* Added arcTo(). Closes #11 |
||||
* Added c color parser, _./examples/ray.js_ is now twice as fast |
||||
* Fixed `putImageData()` bug messing up rgba channels |
||||
|
||||
0.2.1 / 2010-11-19 |
||||
================== |
||||
|
||||
* Added image _resize_ example |
||||
* Fixed canvas resizing via `{width,height}=`. Closes #57 |
||||
* Fixed `Canvas#getContext()`, caching the CanvasRenderingContext |
||||
* Fixed async image loading (test server still messed) |
||||
|
||||
0.2.0 / 2010-11-18 |
||||
================== |
||||
|
||||
* Added jpeg `Image` support (when libjpeg is available) |
||||
* Added _hsl_ / _hsla_ color support. [Tom Carden] |
||||
|
||||
0.1.0 / 2010-11-17 |
||||
================== |
||||
|
||||
* Added `Image` |
||||
* Added `ImageData` |
||||
* Added `PixelArray` |
||||
* Added `CanvasRenderingContext2d#drawImage()` |
||||
* Added `CanvasRenderingContext2d#getImageData()` |
||||
* Added `CanvasRenderingContext2d#createImageData()` |
||||
* Added kraken blur benchmark example |
||||
* Added several new tests |
||||
* Fixed instanceof checks for many c++ methods |
||||
* Fixed test runner in firefox [Don Park] |
||||
|
||||
0.0.8 / 2010-11-12 |
||||
================== |
||||
|
||||
* Added `CanvasRenderingContext2d#drawImage()` |
||||
* Fixed `free()` call missing stdlib |
||||
* Fixed Image#{width,height} initialization to 0 |
||||
* Fixed; load image on non-LOADING state |
||||
|
||||
0.0.7 / 2010-11-12 |
||||
================== |
||||
|
||||
* Fixed _lighter_ for older versions of cairo |
||||
|
||||
0.0.6 / 2010-11-12 |
||||
================== |
||||
|
||||
* Added `Image` |
||||
* Added conditional support for cairo 1.10.0 operators |
||||
|
||||
0.0.5 / 2010-11-10 |
||||
================== |
||||
|
||||
* Added custom port support to _test/server.js_ |
||||
* Added more global composite operator support |
||||
* Added `Context2d#antialias=` |
||||
* Added _voronoi_ example |
||||
* Added -D__NDEBUG__ to default build |
||||
* Added __BUFFER_DATA__ macro for backwards compat buffer data access [Don Park] |
||||
* Fixed getter bug preventing patterns from being returned via `fillStyle` etc |
||||
|
||||
* Fixed; __CAIRO_STATUS_NO_MEMORY___ on failed {re,m}alloc() |
||||
* Fixed; free `Canvas::ToBuffer()` closure data |
||||
|
||||
0.0.4 / 2010-11-09 |
||||
================== |
||||
|
||||
* Bump to fix npm engine cache bug... |
||||
|
||||
0.0.3 / 2010-11-09 |
||||
================== |
||||
|
||||
* Added async `toDataURL()` support |
||||
* Added async `toBuffer()` support |
||||
* Removed buffer utils |
||||
|
||||
0.0.2 / 2010-11-08 |
||||
================== |
||||
|
||||
* Added shadow support (faster/better gaussian blur to come) |
||||
* Added node v0.3 support [Don Park] |
||||
* Added -O3 to build |
||||
* Removed `Canvas#savePNG()` use `Canvas#createPNGStream()` |
||||
|
||||
0.0.1 / 2010-11-04 |
||||
================== |
||||
|
||||
* Initial release |
||||
|
||||
[repo]: https://github.com/Automattic/node-canvas |
@ -0,0 +1,600 @@ |
||||
# node-canvas |
||||
|
||||
[![Build Status](https://travis-ci.org/Automattic/node-canvas.svg?branch=master)](https://travis-ci.org/Automattic/node-canvas) |
||||
[![NPM version](https://badge.fury.io/js/canvas.svg)](http://badge.fury.io/js/canvas) |
||||
|
||||
node-canvas is a [Cairo](http://cairographics.org/)-backed Canvas implementation for [Node.js](http://nodejs.org). |
||||
|
||||
## Installation |
||||
|
||||
```bash |
||||
$ npm install canvas |
||||
``` |
||||
|
||||
By default, binaries for macOS, Linux and Windows will be downloaded. If you want to build from source, use `npm install --build-from-source` and see the **Compiling** section below. |
||||
|
||||
The minimum version of Node.js required is **6.0.0**. |
||||
|
||||
### Compiling |
||||
|
||||
If you don't have a supported OS or processor architecture, or you use `--build-from-source`, the module will be compiled on your system. This requires several dependencies, including Cairo and Pango. |
||||
|
||||
For detailed installation information, see the [wiki](https://github.com/Automattic/node-canvas/wiki/_pages). One-line installation instructions for common OSes are below. Note that libgif/giflib, librsvg and libjpeg are optional and only required if you need GIF, SVG and JPEG support, respectively. Cairo v1.10.0 or later is required. |
||||
|
||||
OS | Command |
||||
----- | ----- |
||||
OS X | Using [Homebrew](https://brew.sh/):<br/>`brew install pkg-config cairo pango libpng jpeg giflib librsvg` |
||||
Ubuntu | `sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev` |
||||
Fedora | `sudo yum install gcc-c++ cairo-devel pango-devel libjpeg-turbo-devel giflib-devel` |
||||
Solaris | `pkgin install cairo pango pkg-config xproto renderproto kbproto xextproto` |
||||
OpenBSD | `doas pkg_add cairo pango png jpeg giflib` |
||||
Windows | See the [wiki](https://github.com/Automattic/node-canvas/wiki/Installation:-Windows) |
||||
Others | See the [wiki](https://github.com/Automattic/node-canvas/wiki) |
||||
|
||||
**Mac OS X v10.11+:** If you have recently updated to Mac OS X v10.11+ and are experiencing trouble when compiling, run the following command: `xcode-select --install`. Read more about the problem [on Stack Overflow](http://stackoverflow.com/a/32929012/148072). |
||||
If you have xcode 10.0 or higher installed, in order to build from source you need NPM 6.4.1 or higher. |
||||
|
||||
## Quick Example |
||||
|
||||
```javascript |
||||
const { createCanvas, loadImage } = require('canvas') |
||||
const canvas = createCanvas(200, 200) |
||||
const ctx = canvas.getContext('2d') |
||||
|
||||
// Write "Awesome!" |
||||
ctx.font = '30px Impact' |
||||
ctx.rotate(0.1) |
||||
ctx.fillText('Awesome!', 50, 100) |
||||
|
||||
// Draw line under text |
||||
var text = ctx.measureText('Awesome!') |
||||
ctx.strokeStyle = 'rgba(0,0,0,0.5)' |
||||
ctx.beginPath() |
||||
ctx.lineTo(50, 102) |
||||
ctx.lineTo(50 + text.width, 102) |
||||
ctx.stroke() |
||||
|
||||
// Draw cat with lime helmet |
||||
loadImage('examples/images/lime-cat.jpg').then((image) => { |
||||
ctx.drawImage(image, 50, 0, 70, 70) |
||||
|
||||
console.log('<img src="' + canvas.toDataURL() + '" />') |
||||
}) |
||||
``` |
||||
|
||||
## Upgrading from 2.x |
||||
|
||||
See the [changelog](https://github.com/Automattic/node-canvas/blob/master/CHANGELOG.md) for a guide to upgrading from 1.x to 2.x. |
||||
|
||||
For version 1.x documentation, see [the v1.x branch](https://github.com/Automattic/node-canvas/tree/v1.x). |
||||
|
||||
## Documentation |
||||
|
||||
This project is an implementation of the Web Canvas API and implements that API as closely as possible. For API documentation, please visit [Mozilla Web Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). (See [Compatibility Status](https://github.com/Automattic/node-canvas/wiki/Compatibility-Status) for the current API compliance.) All utility methods and non-standard APIs are documented below. |
||||
|
||||
### Utility methods |
||||
|
||||
* [createCanvas()](#createcanvas) |
||||
* [createImageData()](#createimagedata) |
||||
* [loadImage()](#loadimage) |
||||
* [registerFont()](#registerfont) |
||||
|
||||
### Non-standard APIs |
||||
|
||||
* [Image#src](#imagesrc) |
||||
* [Image#dataMode](#imagedatamode) |
||||
* [Canvas#toBuffer()](#canvastobuffer) |
||||
* [Canvas#createPNGStream()](#canvascreatepngstream) |
||||
* [Canvas#createJPEGStream()](#canvascreatejpegstream) |
||||
* [Canvas#createPDFStream()](#canvascreatepdfstream) |
||||
* [Canvas#toDataURL()](#canvastodataurl) |
||||
* [CanvasRenderingContext2D#patternQuality](#canvasrenderingcontext2dpatternquality) |
||||
* [CanvasRenderingContext2D#quality](#canvasrenderingcontext2dquality) |
||||
* [CanvasRenderingContext2D#textDrawingMode](#canvasrenderingcontext2dtextdrawingmode) |
||||
* [CanvasRenderingContext2D#globalCompositeOperator = 'saturate'](#canvasrenderingcontext2dglobalcompositeoperator--saturate) |
||||
* [CanvasRenderingContext2D#antialias](#canvasrenderingcontext2dantialias) |
||||
|
||||
### createCanvas() |
||||
|
||||
> ```ts |
||||
> createCanvas(width: number, height: number, type?: 'PDF'|'SVG') => Canvas |
||||
> ``` |
||||
|
||||
Creates a Canvas instance. This method works in both Node.js and Web browsers, where there is no Canvas constructor. (See `browser.js` for the implementation that runs in browsers.) |
||||
|
||||
```js |
||||
const { createCanvas } = require('canvas') |
||||
const mycanvas = createCanvas(200, 200) |
||||
const myPDFcanvas = createCanvas(600, 800, 'pdf') // see "PDF Support" section |
||||
``` |
||||
|
||||
### createImageData() |
||||
|
||||
> ```ts |
||||
> createImageData(width: number, height: number) => ImageData |
||||
> createImageData(data: Uint8ClampedArray, width: number, height?: number) => ImageData |
||||
> // for alternative pixel formats: |
||||
> createImageData(data: Uint16Array, width: number, height?: number) => ImageData |
||||
> ``` |
||||
|
||||
Creates an ImageData instance. This method works in both Node.js and Web browsers. |
||||
|
||||
```js |
||||
const { createImageData } = require('canvas') |
||||
const width = 20, height = 20 |
||||
const arraySize = width * height * 4 |
||||
const mydata = createImageData(new Uint8ClampedArray(arraySize), width) |
||||
``` |
||||
|
||||
### loadImage() |
||||
|
||||
> ```ts |
||||
> loadImage() => Promise<Image> |
||||
> ``` |
||||
|
||||
Convenience method for loading images. This method works in both Node.js and Web browsers. |
||||
|
||||
```js |
||||
const { loadImage } = require('canvas') |
||||
const myimg = loadImage('http://server.com/image.png') |
||||
|
||||
myimg.then(() => { |
||||
// do something with image |
||||
}).catch(err => { |
||||
console.log('oh no!', err) |
||||
}) |
||||
|
||||
// or with async/await: |
||||
const myimg = await loadImage('http://server.com/image.png') |
||||
// do something with image |
||||
``` |
||||
|
||||
### registerFont() |
||||
|
||||
> ```ts |
||||
> registerFont(path: string, { family: string, weight?: string, style?: string }) => void |
||||
> ``` |
||||
|
||||
To use a font file that is not installed as a system font, use `registerFont()` to register the font with Canvas. *This must be done before the Canvas is created.* |
||||
|
||||
```js |
||||
const { registerFont, createCanvas } = require('canvas') |
||||
registerFont('comicsans.ttf', { family: 'Comic Sans' }) |
||||
|
||||
const canvas = createCanvas(500, 500) |
||||
const ctx = canvas.getContext('2d') |
||||
|
||||
ctx.font = '12px "Comic Sans"' |
||||
ctx.fillText('Everyone hates this font :(', 250, 10) |
||||
``` |
||||
|
||||
The second argument is an object with properties that resemble the CSS properties that are specified in `@font-face` rules. You must specify at least `family`. `weight`, and `style` are optional and default to `'normal'`. |
||||
|
||||
### Image#src |
||||
|
||||
> ```ts |
||||
> img.src: string|Buffer |
||||
> ``` |
||||
|
||||
As in browsers, `img.src` can be set to a `data:` URI or a remote URL. In addition, node-canvas allows setting `src` to a local file path or `Buffer` instance. |
||||
|
||||
```javascript |
||||
const { Image } = require('canvas') |
||||
|
||||
// From a buffer: |
||||
fs.readFile('images/squid.png', (err, squid) => { |
||||
if (err) throw err |
||||
const img = new Image() |
||||
img.onload = () => ctx.drawImage(img, 0, 0) |
||||
img.onerror = err => { throw err } |
||||
img.src = squid |
||||
}) |
||||
|
||||
// From a local file path: |
||||
const img = new Image() |
||||
img.onload = () => ctx.drawImage(img, 0, 0) |
||||
img.onerror = err => { throw err } |
||||
img.src = 'images/squid.png' |
||||
|
||||
// From a remote URL: |
||||
img.src = 'http://picsum.photos/200/300' |
||||
// ... as above |
||||
|
||||
// From a `data:` URI: |
||||
img.src = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==' |
||||
// ... as above |
||||
``` |
||||
|
||||
*Note: In some cases, `img.src=` is currently synchronous. However, you should always use `img.onload` and `img.onerror`, as we intend to make `img.src=` always asynchronous as it is in browsers. See https://github.com/Automattic/node-canvas/issues/1007.* |
||||
|
||||
### Image#dataMode |
||||
|
||||
> ```ts |
||||
> img.dataMode: number |
||||
> ``` |
||||
|
||||
Applies to JPEG images drawn to PDF canvases only. |
||||
|
||||
Setting `img.dataMode = Image.MODE_MIME` or `Image.MODE_MIME|Image.MODE_IMAGE` enables MIME data tracking of images. When MIME data is tracked, PDF canvases can embed JPEGs directly into the output, rather than re-encoding into PNG. This can drastically reduce filesize and speed up rendering. |
||||
|
||||
```javascript |
||||
const { Image, createCanvas } = require('canvas') |
||||
const canvas = createCanvas(w, h, 'pdf') |
||||
const img = new Image() |
||||
img.dataMode = Image.MODE_IMAGE // Only image data tracked |
||||
img.dataMode = Image.MODE_MIME // Only mime data tracked |
||||
img.dataMode = Image.MODE_MIME | Image.MODE_IMAGE // Both are tracked |
||||
``` |
||||
|
||||
If working with a non-PDF canvas, image data *must* be tracked; otherwise the output will be junk. |
||||
|
||||
Enabling mime data tracking has no benefits (only a slow down) unless you are generating a PDF. |
||||
|
||||
### Canvas#toBuffer() |
||||
|
||||
> ```ts |
||||
> canvas.toBuffer((err: Error|null, result: Buffer) => void, mimeType?: string, config?: any) => void |
||||
> canvas.toBuffer(mimeType?: string, config?: any) => Buffer |
||||
> ``` |
||||
|
||||
Creates a [`Buffer`](https://nodejs.org/api/buffer.html) object representing the image contained in the canvas. |
||||
|
||||
* **callback** If provided, the buffer will be provided in the callback instead of being returned by the function. Invoked with an error as the first argument if encoding failed, or the resulting buffer as the second argument if it succeeded. Not supported for mimeType `raw` or for PDF or SVG canvases. |
||||
* **mimeType** A string indicating the image format. Valid options are `image/png`, `image/jpeg` (if node-canvas was built with JPEG support), `raw` (unencoded data in BGRA order on little-endian (most) systems, ARGB on big-endian systems; top-to-bottom), `application/pdf` (for PDF canvases) and `image/svg+xml` (for SVG canvases). Defaults to `image/png` for image canvases, or the corresponding type for PDF or SVG canvas. |
||||
* **config** |
||||
* For `image/jpeg`, an object specifying the quality (0 to 1), if progressive compression should be used and/or if chroma subsampling should be used: `{quality: 0.75, progressive: false, chromaSubsampling: true}`. All properties are optional. |
||||
|
||||
* For `image/png`, an object specifying the ZLIB compression level (between 0 and 9), the compression filter(s), the palette (indexed PNGs only), the the background palette index (indexed PNGs only) and/or the resolution (ppi): `{compressionLevel: 6, filters: canvas.PNG_ALL_FILTERS, palette: undefined, backgroundIndex: 0, resolution: undefined}`. All properties are optional. |
||||
|
||||
Note that the PNG format encodes the resolution in pixels per meter, so if you specify `96`, the file will encode 3780 ppm (~96.01 ppi). The resolution is undefined by default to match common browser behavior. |
||||
|
||||
* For `application/pdf`, an object specifying optional document metadata: `{title: string, author: string, subject: string, keywords: string, creator: string, creationDate: Date, modDate: Date}`. All properties are optional and default to `undefined`, except for `creationDate`, which defaults to the current date. *Adding metadata requires Cairo 1.16.0 or later.* |
||||
|
||||
For a description of these properties, see page 550 of [PDF 32000-1:2008](https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/PDF32000_2008.pdf). |
||||
|
||||
Note that there is no standard separator for `keywords`. A space is recommended because it is in common use by other applications, and Cairo will enclose the list of keywords in quotes if a comma or semicolon is used. |
||||
|
||||
**Return value** |
||||
|
||||
If no callback is provided, a [`Buffer`](https://nodejs.org/api/buffer.html). If a callback is provided, none. |
||||
|
||||
#### Examples |
||||
|
||||
```js |
||||
// Default: buf contains a PNG-encoded image |
||||
const buf = canvas.toBuffer() |
||||
|
||||
// PNG-encoded, zlib compression level 3 for faster compression but bigger files, no filtering |
||||
const buf2 = canvas.toBuffer('image/png', { compressionLevel: 3, filters: canvas.PNG_FILTER_NONE }) |
||||
|
||||
// JPEG-encoded, 50% quality |
||||
const buf3 = canvas.toBuffer('image/jpeg', { quality: 0.5 }) |
||||
|
||||
// Asynchronous PNG |
||||
canvas.toBuffer((err, buf) => { |
||||
if (err) throw err // encoding failed |
||||
// buf is PNG-encoded image |
||||
}) |
||||
|
||||
canvas.toBuffer((err, buf) => { |
||||
if (err) throw err // encoding failed |
||||
// buf is JPEG-encoded image at 95% quality |
||||
}, 'image/jpeg', { quality: 0.95 }) |
||||
|
||||
// BGRA pixel values, native-endian |
||||
const buf4 = canvas.toBuffer('raw') |
||||
const { stride, width } = canvas |
||||
// In memory, this is `canvas.height * canvas.stride` bytes long. |
||||
// The top row of pixels, in BGRA order on little-endian hardware, |
||||
// left-to-right, is: |
||||
const topPixelsBGRALeftToRight = buf4.slice(0, width * 4) |
||||
// And the third row is: |
||||
const row3 = buf4.slice(2 * stride, 2 * stride + width * 4) |
||||
|
||||
// SVG and PDF canvases |
||||
const myCanvas = createCanvas(w, h, 'pdf') |
||||
myCanvas.toBuffer() // returns a buffer containing a PDF-encoded canvas |
||||
// With optional metadata: |
||||
myCanvas.toBuffer('application/pdf', { |
||||
title: 'my picture', |
||||
keywords: 'node.js demo cairo', |
||||
creationDate: new Date() |
||||
}) |
||||
``` |
||||
|
||||
### Canvas#createPNGStream() |
||||
|
||||
> ```ts |
||||
> canvas.createPNGStream(config?: any) => ReadableStream |
||||
> ``` |
||||
|
||||
Creates a [`ReadableStream`](https://nodejs.org/api/stream.html#stream_class_stream_readable) that emits PNG-encoded data. |
||||
|
||||
* `config` An object specifying the ZLIB compression level (between 0 and 9), the compression filter(s), the palette (indexed PNGs only) and/or the background palette index (indexed PNGs only): `{compressionLevel: 6, filters: canvas.PNG_ALL_FILTERS, palette: undefined, backgroundIndex: 0, resolution: undefined}`. All properties are optional. |
||||
|
||||
#### Examples |
||||
|
||||
```javascript |
||||
const fs = require('fs') |
||||
const out = fs.createWriteStream(__dirname + '/test.png') |
||||
const stream = canvas.createPNGStream() |
||||
stream.pipe(out) |
||||
out.on('finish', () => console.log('The PNG file was created.')) |
||||
``` |
||||
|
||||
To encode indexed PNGs from canvases with `pixelFormat: 'A8'` or `'A1'`, provide an options object: |
||||
|
||||
```js |
||||
const palette = new Uint8ClampedArray([ |
||||
//r g b a |
||||
0, 50, 50, 255, // index 1 |
||||
10, 90, 90, 255, // index 2 |
||||
127, 127, 255, 255 |
||||
// ... |
||||
]) |
||||
canvas.createPNGStream({ |
||||
palette: palette, |
||||
backgroundIndex: 0 // optional, defaults to 0 |
||||
}) |
||||
``` |
||||
|
||||
### Canvas#createJPEGStream() |
||||
|
||||
> ```ts |
||||
> canvas.createJPEGStream(config?: any) => ReadableStream |
||||
> ``` |
||||
|
||||
Creates a [`ReadableStream`](https://nodejs.org/api/stream.html#stream_class_stream_readable) that emits JPEG-encoded data. |
||||
|
||||
*Note: At the moment, `createJPEGStream()` is synchronous under the hood. That is, it runs in the main thread, not in the libuv threadpool.* |
||||
|
||||
* `config` an object specifying the quality (0 to 1), if progressive compression should be used and/or if chroma subsampling should be used: `{quality: 0.75, progressive: false, chromaSubsampling: true}`. All properties are optional. |
||||
|
||||
#### Examples |
||||
|
||||
```javascript |
||||
const fs = require('fs') |
||||
const out = fs.createWriteStream(__dirname + '/test.jpeg') |
||||
const stream = canvas.createJPEGStream() |
||||
stream.pipe(out) |
||||
out.on('finish', () => console.log('The JPEG file was created.')) |
||||
|
||||
// Disable 2x2 chromaSubsampling for deeper colors and use a higher quality |
||||
const stream = canvas.createJPEGStream({ |
||||
quality: 0.95, |
||||
chromaSubsampling: false |
||||
}) |
||||
``` |
||||
|
||||
### Canvas#createPDFStream() |
||||
|
||||
> ```ts |
||||
> canvas.createPDFStream(config?: any) => ReadableStream |
||||
> ``` |
||||
|
||||
* `config` an object specifying optional document metadata: `{title: string, author: string, subject: string, keywords: string, creator: string, creationDate: Date, modDate: Date}`. See `toBuffer()` for more information. *Adding metadata requires Cairo 1.16.0 or later.* |
||||
|
||||
Applies to PDF canvases only. Creates a [`ReadableStream`](https://nodejs.org/api/stream.html#stream_class_stream_readable) that emits the encoded PDF. `canvas.toBuffer()` also produces an encoded PDF, but `createPDFStream()` can be used to reduce memory usage. |
||||
|
||||
### Canvas#toDataURL() |
||||
|
||||
This is a standard API, but several non-standard calls are supported. The full list of supported calls is: |
||||
|
||||
```js |
||||
dataUrl = canvas.toDataURL() // defaults to PNG |
||||
dataUrl = canvas.toDataURL('image/png') |
||||
dataUrl = canvas.toDataURL('image/jpeg') |
||||
dataUrl = canvas.toDataURL('image/jpeg', quality) // quality from 0 to 1 |
||||
canvas.toDataURL((err, png) => { }) // defaults to PNG |
||||
canvas.toDataURL('image/png', (err, png) => { }) |
||||
canvas.toDataURL('image/jpeg', (err, jpeg) => { }) // sync JPEG is not supported |
||||
canvas.toDataURL('image/jpeg', {...opts}, (err, jpeg) => { }) // see Canvas#createJPEGStream for valid options |
||||
canvas.toDataURL('image/jpeg', quality, (err, jpeg) => { }) // spec-following; quality from 0 to 1 |
||||
``` |
||||
|
||||
### CanvasRenderingContext2D#patternQuality |
||||
|
||||
> ```ts |
||||
> context.patternQuality: 'fast'|'good'|'best'|'nearest'|'bilinear' |
||||
> ``` |
||||
|
||||
Defaults to `'good'`. Affects pattern (gradient, image, etc.) rendering quality. |
||||
|
||||
### CanvasRenderingContext2D#quality |
||||
|
||||
> ```ts |
||||
> context.quality: 'fast'|'good'|'best'|'nearest'|'bilinear' |
||||
> ``` |
||||
|
||||
Defaults to `'good'`. Like `patternQuality`, but applies to transformations affecting more than just patterns. |
||||
|
||||
### CanvasRenderingContext2D#textDrawingMode |
||||
|
||||
> ```ts |
||||
> context.textDrawingMode: 'path'|'glyph' |
||||
> ``` |
||||
|
||||
Defaults to `'path'`. The effect depends on the canvas type: |
||||
|
||||
* **Standard (image)** `glyph` and `path` both result in rasterized text. Glyph mode is faster than `path`, but may result in lower-quality text, especially when rotated or translated. |
||||
|
||||
* **PDF** `glyph` will embed text instead of paths into the PDF. This is faster to encode, faster to open with PDF viewers, yields a smaller file size and makes the text selectable. The subset of the font needed to render the glyphs will be embedded in the PDF. This is usually the mode you want to use with PDF canvases. |
||||
|
||||
* **SVG** `glyph` does *not* cause `<text>` elements to be produced as one might expect ([cairo bug](https://gitlab.freedesktop.org/cairo/cairo/issues/253)). Rather, `glyph` will create a `<defs>` section with a `<symbol>` for each glyph, then those glyphs be reused via `<use>` elements. `path` mode creates a `<path>` element for each text string. `glyph` mode is faster and yields a smaller file size. |
||||
|
||||
In `glyph` mode, `ctx.strokeText()` and `ctx.fillText()` behave the same (aside from using the stroke and fill style, respectively). |
||||
|
||||
This property is tracked as part of the canvas state in save/restore. |
||||
|
||||
### CanvasRenderingContext2D#globalCompositeOperation = 'saturate' |
||||
|
||||
In addition to all of the standard global composite operations defined by the Canvas specification, the ['saturate'](https://www.cairographics.org/operators/#saturate) operation is also available. |
||||
|
||||
### CanvasRenderingContext2D#antialias |
||||
|
||||
> ```ts |
||||
> context.antialias: 'default'|'none'|'gray'|'subpixel' |
||||
> ``` |
||||
|
||||
Sets the anti-aliasing mode. |
||||
|
||||
## PDF Output Support |
||||
|
||||
node-canvas can create PDF documents instead of images. The canvas type must be set when creating the canvas as follows: |
||||
|
||||
```js |
||||
const canvas = createCanvas(200, 500, 'pdf') |
||||
``` |
||||
|
||||
An additional method `.addPage()` is then available to create multiple page PDFs: |
||||
|
||||
```js |
||||
// On first page |
||||
ctx.font = '22px Helvetica' |
||||
ctx.fillText('Hello World', 50, 80) |
||||
|
||||
ctx.addPage() |
||||
// Now on second page |
||||
ctx.font = '22px Helvetica' |
||||
ctx.fillText('Hello World 2', 50, 80) |
||||
|
||||
canvas.toBuffer() // returns a PDF file |
||||
canvas.createPDFStream() // returns a ReadableStream that emits a PDF |
||||
// With optional document metadata (requires Cairo 1.16.0): |
||||
canvas.toBuffer('application/pdf', { |
||||
title: 'my picture', |
||||
keywords: 'node.js demo cairo', |
||||
creationDate: new Date() |
||||
}) |
||||
``` |
||||
|
||||
It is also possible to create pages with different sizes by passing `width` and `height` to the `.addPage()` method: |
||||
|
||||
```js |
||||
ctx.font = '22px Helvetica' |
||||
ctx.fillText('Hello World', 50, 80) |
||||
ctx.addPage(400, 800) |
||||
|
||||
ctx.fillText('Hello World 2', 50, 80) |
||||
``` |
||||
|
||||
See also: |
||||
|
||||
* [Image#dataMode](#imagedatamode) for embedding JPEGs in PDFs |
||||
* [Canvas#createPDFStream()](#canvascreatepdfstream) for creating PDF streams |
||||
* [CanvasRenderingContext2D#textDrawingMode](#canvasrenderingcontext2dtextdrawingmode) |
||||
for embedding text instead of paths |
||||
|
||||
## SVG Output Support |
||||
|
||||
node-canvas can create SVG documents instead of images. The canvas type must be set when creating the canvas as follows: |
||||
|
||||
```js |
||||
const canvas = createCanvas(200, 500, 'svg') |
||||
// Use the normal primitives. |
||||
fs.writeFileSync('out.svg', canvas.toBuffer()) |
||||
``` |
||||
|
||||
## SVG Image Support |
||||
|
||||
If librsvg is available when node-canvas is installed, node-canvas can render SVG images to your canvas context. This currently works by rasterizing the SVG image (i.e. drawing an SVG image to an SVG canvas will not preserve the SVG data). |
||||
|
||||
```js |
||||
const img = new Image() |
||||
img.onload = () => ctx.drawImage(img, 0, 0) |
||||
img.onerror = err => { throw err } |
||||
img.src = './example.svg' |
||||
``` |
||||
|
||||
## Image pixel formats (experimental) |
||||
|
||||
node-canvas has experimental support for additional pixel formats, roughly following the [Canvas color space proposal](https://github.com/WICG/canvas-color-space/blob/master/CanvasColorSpaceProposal.md). |
||||
|
||||
```js |
||||
const canvas = createCanvas(200, 200) |
||||
const ctx = canvas.getContext('2d', { pixelFormat: 'A8' }) |
||||
``` |
||||
|
||||
By default, canvases are created in the `RGBA32` format, which corresponds to the native HTML Canvas behavior. Each pixel is 32 bits. The JavaScript APIs that involve pixel data (`getImageData`, `putImageData`) store the colors in the order {red, green, blue, alpha} without alpha pre-multiplication. (The C++ API stores the colors in the order {alpha, red, green, blue} in native-[endian](https://en.wikipedia.org/wiki/Endianness) ordering, with alpha pre-multiplication.) |
||||
|
||||
These additional pixel formats have experimental support: |
||||
|
||||
* `RGB24` Like `RGBA32`, but the 8 alpha bits are always opaque. This format is always used if the `alpha` context attribute is set to false (i.e. `canvas.getContext('2d', {alpha: false})`). This format can be faster than `RGBA32` because transparency does not need to be calculated. |
||||
* `A8` Each pixel is 8 bits. This format can either be used for creating grayscale images (treating each byte as an alpha value), or for creating indexed PNGs (treating each byte as a palette index) (see [the example using alpha values with `fillStyle`](examples/indexed-png-alpha.js) and [the example using `imageData`](examples/indexed-png-image-data.js)). |
||||
* `RGB16_565` Each pixel is 16 bits, with red in the upper 5 bits, green in the middle 6 bits, and blue in the lower 5 bits, in native platform endianness. Some hardware devices and frame buffers use this format. Note that PNG does not support this format; when creating a PNG, the image will be converted to 24-bit RGB. This format is thus suboptimal for generating PNGs. `ImageData` instances for this mode use a `Uint16Array` instead of a `Uint8ClampedArray`. |
||||
* `A1` Each pixel is 1 bit, and pixels are packed together into 32-bit quantities. The ordering of the bits matches the endianness of the |
||||
platform: on a little-endian machine, the first pixel is the least-significant bit. This format can be used for creating single-color images. *Support for this format is incomplete, see note below.* |
||||
* `RGB30` Each pixel is 30 bits, with red in the upper 10, green in the middle 10, and blue in the lower 10. (Requires Cairo 1.12 or later.) *Support for this format is incomplete, see note below.* |
||||
|
||||
Notes and caveats: |
||||
|
||||
* Using a non-default format can affect the behavior of APIs that involve pixel data: |
||||
|
||||
* `context2d.createImageData` The size of the array returned depends on the number of bit per pixel for the underlying image data format, per the above descriptions. |
||||
* `context2d.getImageData` The format of the array returned depends on the underlying image mode, per the above descriptions. Be aware of platform endianness, which can be determined using node.js's [`os.endianness()`](https://nodejs.org/api/os.html#os_os_endianness) |
||||
function. |
||||
* `context2d.putImageData` As above. |
||||
|
||||
* `A1` and `RGB30` do not yet support `getImageData` or `putImageData`. Have a use case and/or opinion on working with these formats? Open an issue and let us know! (See #935.) |
||||
|
||||
* `A1`, `A8`, `RGB30` and `RGB16_565` with shadow blurs may crash or not render properly. |
||||
|
||||
* The `ImageData(width, height)` and `ImageData(Uint8ClampedArray, width)` constructors assume 4 bytes per pixel. To create an `ImageData` instance with a different number of bytes per pixel, use `new ImageData(new Uint8ClampedArray(size), width, height)` or `new ImageData(new Uint16ClampedArray(size), width, height)`. |
||||
|
||||
## Testing |
||||
|
||||
First make sure you've built the latest version. Get all the deps you need (see [compiling](#compiling) above), and run: |
||||
|
||||
``` |
||||
npm install --build-from-source |
||||
``` |
||||
|
||||
For visual tests: `npm run test-server` and point your browser to http://localhost:4000. |
||||
|
||||
For unit tests: `npm run test`. |
||||
|
||||
## Benchmarks |
||||
|
||||
Benchmarks live in the `benchmarks` directory. |
||||
|
||||
## Examples |
||||
|
||||
Examples line in the `examples` directory. Most produce a png image of the same name, and others such as *live-clock.js* launch an HTTP server to be viewed in the browser. |
||||
|
||||
## Original Authors |
||||
|
||||
- TJ Holowaychuk ([tj](http://github.com/tj)) |
||||
- Nathan Rajlich ([TooTallNate](http://github.com/TooTallNate)) |
||||
- Rod Vagg ([rvagg](http://github.com/rvagg)) |
||||
- Juriy Zaytsev ([kangax](http://github.com/kangax)) |
||||
|
||||
## License |
||||
|
||||
### node-canvas |
||||
|
||||
(The MIT License) |
||||
|
||||
Copyright (c) 2010 LearnBoost, and contributors <dev@learnboost.com> |
||||
|
||||
Copyright (c) 2014 Automattic, Inc and contributors <dev@automattic.com> |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of |
||||
this software and associated documentation files (the 'Software'), to deal in |
||||
the Software without restriction, including without limitation the rights to |
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
||||
the Software, and to permit persons to whom the Software is furnished to do so, |
||||
subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in all |
||||
copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
|
||||
### BMP parser |
||||
|
||||
See [license](src/bmp/LICENSE.md) |
@ -0,0 +1,221 @@ |
||||
{ |
||||
'conditions': [ |
||||
['OS=="win"', { |
||||
'variables': { |
||||
'GTK_Root%': 'C:/GTK', # Set the location of GTK all-in-one bundle |
||||
'with_jpeg%': 'false', |
||||
'with_gif%': 'false', |
||||
'with_rsvg%': 'false', |
||||
'variables': { # Nest jpeg_root to evaluate it before with_jpeg |
||||
'jpeg_root%': '<!(node ./util/win_jpeg_lookup)' |
||||
}, |
||||
'jpeg_root%': '<(jpeg_root)', # Take value of nested variable |
||||
'conditions': [ |
||||
['jpeg_root==""', { |
||||
'with_jpeg%': 'false' |
||||
}, { |
||||
'with_jpeg%': 'true' |
||||
}] |
||||
] |
||||
} |
||||
}, { # 'OS!="win"' |
||||
'variables': { |
||||
'with_jpeg%': '<!(node ./util/has_lib.js jpeg)', |
||||
'with_gif%': '<!(node ./util/has_lib.js gif)', |
||||
'with_rsvg%': '<!(node ./util/has_lib.js rsvg)' |
||||
} |
||||
}] |
||||
], |
||||
'targets': [ |
||||
{ |
||||
'target_name': 'canvas-postbuild', |
||||
'dependencies': ['canvas'], |
||||
'conditions': [ |
||||
['OS=="win"', { |
||||
'copies': [{ |
||||
'destination': '<(PRODUCT_DIR)', |
||||
'files': [ |
||||
'<(GTK_Root)/bin/zlib1.dll', |
||||
'<(GTK_Root)/bin/libintl-8.dll', |
||||
'<(GTK_Root)/bin/libpng14-14.dll', |
||||
'<(GTK_Root)/bin/libpangocairo-1.0-0.dll', |
||||
'<(GTK_Root)/bin/libpango-1.0-0.dll', |
||||
'<(GTK_Root)/bin/libpangoft2-1.0-0.dll', |
||||
'<(GTK_Root)/bin/libpangowin32-1.0-0.dll', |
||||
'<(GTK_Root)/bin/libcairo-2.dll', |
||||
'<(GTK_Root)/bin/libfontconfig-1.dll', |
||||
'<(GTK_Root)/bin/libfreetype-6.dll', |
||||
'<(GTK_Root)/bin/libglib-2.0-0.dll', |
||||
'<(GTK_Root)/bin/libgobject-2.0-0.dll', |
||||
'<(GTK_Root)/bin/libgmodule-2.0-0.dll', |
||||
'<(GTK_Root)/bin/libgthread-2.0-0.dll', |
||||
'<(GTK_Root)/bin/libexpat-1.dll' |
||||
] |
||||
}] |
||||
}] |
||||
] |
||||
}, |
||||
{ |
||||
'target_name': 'canvas', |
||||
'include_dirs': ["<!(node -e \"require('nan')\")"], |
||||
'sources': [ |
||||
'src/backend/Backend.cc', |
||||
'src/backend/ImageBackend.cc', |
||||
'src/backend/PdfBackend.cc', |
||||
'src/backend/SvgBackend.cc', |
||||
'src/bmp/BMPParser.cc', |
||||
'src/Backends.cc', |
||||
'src/Canvas.cc', |
||||
'src/CanvasGradient.cc', |
||||
'src/CanvasPattern.cc', |
||||
'src/CanvasRenderingContext2d.cc', |
||||
'src/closure.cc', |
||||
'src/color.cc', |
||||
'src/Image.cc', |
||||
'src/ImageData.cc', |
||||
'src/init.cc', |
||||
'src/register_font.cc' |
||||
], |
||||
'conditions': [ |
||||
['OS=="win"', { |
||||
'libraries': [ |
||||
'-l<(GTK_Root)/lib/cairo.lib', |
||||
'-l<(GTK_Root)/lib/libpng.lib', |
||||
'-l<(GTK_Root)/lib/pangocairo-1.0.lib', |
||||
'-l<(GTK_Root)/lib/pango-1.0.lib', |
||||
'-l<(GTK_Root)/lib/freetype.lib', |
||||
'-l<(GTK_Root)/lib/glib-2.0.lib', |
||||
'-l<(GTK_Root)/lib/gobject-2.0.lib' |
||||
], |
||||
'include_dirs': [ |
||||
'<(GTK_Root)/include', |
||||
'<(GTK_Root)/include/cairo', |
||||
'<(GTK_Root)/include/pango-1.0', |
||||
'<(GTK_Root)/include/glib-2.0', |
||||
'<(GTK_Root)/include/freetype2', |
||||
'<(GTK_Root)/lib/glib-2.0/include' |
||||
], |
||||
'defines': [ |
||||
'_USE_MATH_DEFINES' # for M_PI |
||||
], |
||||
'configurations': { |
||||
'Debug': { |
||||
'msvs_settings': { |
||||
'VCCLCompilerTool': { |
||||
'WarningLevel': 4, |
||||
'ExceptionHandling': 1, |
||||
'DisableSpecificWarnings': [ |
||||
4100, 4611 |
||||
] |
||||
} |
||||
} |
||||
}, |
||||
'Release': { |
||||
'msvs_settings': { |
||||
'VCCLCompilerTool': { |
||||
'WarningLevel': 4, |
||||
'ExceptionHandling': 1, |
||||
'DisableSpecificWarnings': [ |
||||
4100, 4611 |
||||
] |
||||
} |
||||
} |
||||
} |
||||
} |
||||
}, { # 'OS!="win"' |
||||
'libraries': [ |
||||
'<!@(pkg-config pixman-1 --libs)', |
||||
'<!@(pkg-config cairo --libs)', |
||||
'<!@(pkg-config libpng --libs)', |
||||
'<!@(pkg-config pangocairo --libs)', |
||||
'<!@(pkg-config freetype2 --libs)' |
||||
], |
||||
'include_dirs': [ |
||||
'<!@(pkg-config cairo --cflags-only-I | sed s/-I//g)', |
||||
'<!@(pkg-config libpng --cflags-only-I | sed s/-I//g)', |
||||
'<!@(pkg-config pangocairo --cflags-only-I | sed s/-I//g)', |
||||
'<!@(pkg-config freetype2 --cflags-only-I | sed s/-I//g)' |
||||
], |
||||
'cflags!': ['-fno-exceptions'], |
||||
'cflags_cc!': ['-fno-exceptions'] |
||||
}], |
||||
['OS=="mac"', { |
||||
'xcode_settings': { |
||||
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES' |
||||
} |
||||
}], |
||||
['with_jpeg=="true"', { |
||||
'defines': [ |
||||
'HAVE_JPEG' |
||||
], |
||||
'conditions': [ |
||||
['OS=="win"', { |
||||
'copies': [{ |
||||
'destination': '<(PRODUCT_DIR)', |
||||
'files': [ |
||||
'<(jpeg_root)/bin/jpeg62.dll', |
||||
] |
||||
}], |
||||
'include_dirs': [ |
||||
'<(jpeg_root)/include' |
||||
], |
||||
'libraries': [ |
||||
'-l<(jpeg_root)/lib/jpeg.lib', |
||||
] |
||||
}, { |
||||
'libraries': [ |
||||
'-ljpeg' |
||||
] |
||||
}] |
||||
] |
||||
}], |
||||
['with_gif=="true"', { |
||||
'defines': [ |
||||
'HAVE_GIF' |
||||
], |
||||
'conditions': [ |
||||
['OS=="win"', { |
||||
'libraries': [ |
||||
'-l<(GTK_Root)/lib/gif.lib' |
||||
] |
||||
}, { |
||||
'libraries': [ |
||||
'-lgif' |
||||
] |
||||
}] |
||||
] |
||||
}], |
||||
['with_rsvg=="true"', { |
||||
'defines': [ |
||||
'HAVE_RSVG' |
||||
], |
||||
'conditions': [ |
||||
['OS=="win"', { |
||||
'copies': [{ |
||||
'destination': '<(PRODUCT_DIR)', |
||||
'files': [ |
||||
'<(GTK_Root)/bin/librsvg-2-2.dll', |
||||
'<(GTK_Root)/bin/libgdk_pixbuf-2.0-0.dll', |
||||
'<(GTK_Root)/bin/libgio-2.0-0.dll', |
||||
'<(GTK_Root)/bin/libcroco-0.6-3.dll', |
||||
'<(GTK_Root)/bin/libgsf-1-114.dll', |
||||
'<(GTK_Root)/bin/libxml2-2.dll' |
||||
] |
||||
}], |
||||
'libraries': [ |
||||
'-l<(GTK_Root)/lib/librsvg-2-2.lib' |
||||
] |
||||
}, { |
||||
'include_dirs': [ |
||||
'<!@(pkg-config librsvg-2.0 --cflags-only-I | sed s/-I//g)' |
||||
], |
||||
'libraries': [ |
||||
'<!@(pkg-config librsvg-2.0 --libs)' |
||||
] |
||||
}] |
||||
] |
||||
}] |
||||
] |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,35 @@ |
||||
/* globals document, ImageData */ |
||||
|
||||
const parseFont = require('./lib/parse-font') |
||||
|
||||
exports.parseFont = parseFont |
||||
|
||||
exports.createCanvas = function (width, height) { |
||||
return Object.assign(document.createElement('canvas'), { width: width, height: height }) |
||||
} |
||||
|
||||
exports.createImageData = function (array, width, height) { |
||||
// Browser implementation of ImageData looks at the number of arguments passed
|
||||
switch (arguments.length) { |
||||
case 0: return new ImageData() |
||||
case 1: return new ImageData(array) |
||||
case 2: return new ImageData(array, width) |
||||
default: return new ImageData(array, width, height) |
||||
} |
||||
} |
||||
|
||||
exports.loadImage = function (src, options) { |
||||
return new Promise(function (resolve, reject) { |
||||
const image = Object.assign(document.createElement('img'), options) |
||||
|
||||
function cleanup () { |
||||
image.onload = null |
||||
image.onerror = null |
||||
} |
||||
|
||||
image.onload = function () { cleanup(); resolve(image) } |
||||
image.onerror = function () { cleanup(); reject(new Error('Failed to load the image "' + src + '"')) } |
||||
|
||||
image.src = src |
||||
}) |
||||
} |
@ -0,0 +1 @@ |
||||
cmd_Release/canvas.node := rm -rf "Release/canvas.node" && cp -af "Release/obj.target/canvas.node" "Release/canvas.node" |
1
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas.node.d
generated
vendored
1
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas.node.d
generated
vendored
@ -0,0 +1 @@ |
||||
cmd_Release/obj.target/canvas.node := g++ -shared -pthread -rdynamic -m64 -Wl,-rpath '-Wl,$$ORIGIN' -Wl,-soname=canvas.node -o Release/obj.target/canvas.node -Wl,--start-group Release/obj.target/canvas/src/backend/Backend.o Release/obj.target/canvas/src/backend/ImageBackend.o Release/obj.target/canvas/src/backend/PdfBackend.o Release/obj.target/canvas/src/backend/SvgBackend.o Release/obj.target/canvas/src/bmp/BMPParser.o Release/obj.target/canvas/src/Backends.o Release/obj.target/canvas/src/Canvas.o Release/obj.target/canvas/src/CanvasGradient.o Release/obj.target/canvas/src/CanvasPattern.o Release/obj.target/canvas/src/CanvasRenderingContext2d.o Release/obj.target/canvas/src/closure.o Release/obj.target/canvas/src/color.o Release/obj.target/canvas/src/Image.o Release/obj.target/canvas/src/ImageData.o Release/obj.target/canvas/src/init.o Release/obj.target/canvas/src/register_font.o -Wl,--end-group -L/usr/local/lib -lpixman-1 -lcairo -lpng16 -lz -lpangocairo-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lfreetype -lrsvg-2 -lm -lgio-2.0 -lgdk_pixbuf-2.0 -ljpeg -lgif |
340
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Backends.o.d
generated
vendored
340
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Backends.o.d
generated
vendored
@ -0,0 +1,340 @@ |
||||
cmd_Release/obj.target/canvas/src/Backends.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/Backends.o.d.raw -c -o Release/obj.target/canvas/src/Backends.o ../src/Backends.cc |
||||
Release/obj.target/canvas/src/Backends.o: ../src/Backends.cc \ |
||||
../src/Backends.h ../src/backend/Backend.h \ |
||||
/usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-version.h \ |
||||
/usr/local/include/cairo/cairo-features.h \ |
||||
/usr/local/include/cairo/cairo-deprecated.h \ |
||||
../src/backend/../dll_visibility.h ../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
../src/backend/ImageBackend.h ../src/backend/PdfBackend.h \ |
||||
../src/backend/../closure.h ../src/backend/../Canvas.h \ |
||||
../src/backend/../dll_visibility.h \ |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h \ |
||||
/usr/local/include/pango-1.0/pango/pango.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-font.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h \ |
||||
/usr/local/include/glib-2.0/glib.h \ |
||||
/usr/local/include/glib-2.0/glib/galloca.h \ |
||||
/usr/local/include/glib-2.0/glib/gtypes.h \ |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h \ |
||||
/usr/local/include/glib-2.0/glib/gmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/garray.h \ |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/gatomic.h \ |
||||
/usr/local/include/glib-2.0/glib/gerror.h \ |
||||
/usr/local/include/glib-2.0/glib/gquark.h \ |
||||
/usr/local/include/glib-2.0/glib/gutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h \ |
||||
/usr/local/include/glib-2.0/glib/gbase64.h \ |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h \ |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gbytes.h \ |
||||
/usr/local/include/glib-2.0/glib/gcharset.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/gconvert.h \ |
||||
/usr/local/include/glib-2.0/glib/gdataset.h \ |
||||
/usr/local/include/glib-2.0/glib/gdate.h \ |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h \ |
||||
/usr/local/include/glib-2.0/glib/gdir.h \ |
||||
/usr/local/include/glib-2.0/glib/genviron.h \ |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h \ |
||||
/usr/local/include/glib-2.0/glib/ggettext.h \ |
||||
/usr/local/include/glib-2.0/glib/ghash.h \ |
||||
/usr/local/include/glib-2.0/glib/glist.h \ |
||||
/usr/local/include/glib-2.0/glib/gmem.h \ |
||||
/usr/local/include/glib-2.0/glib/gnode.h \ |
||||
/usr/local/include/glib-2.0/glib/ghmac.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/ghook.h \ |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h \ |
||||
/usr/local/include/glib-2.0/glib/giochannel.h \ |
||||
/usr/local/include/glib-2.0/glib/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/gpoll.h \ |
||||
/usr/local/include/glib-2.0/glib/gslist.h \ |
||||
/usr/local/include/glib-2.0/glib/gstring.h \ |
||||
/usr/local/include/glib-2.0/glib/gunicode.h \ |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h \ |
||||
/usr/local/include/glib-2.0/glib/gmessages.h \ |
||||
/usr/local/include/glib-2.0/glib/gvariant.h \ |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h \ |
||||
/usr/local/include/glib-2.0/glib/goption.h \ |
||||
/usr/local/include/glib-2.0/glib/gpattern.h \ |
||||
/usr/local/include/glib-2.0/glib/gprimes.h \ |
||||
/usr/local/include/glib-2.0/glib/gqsort.h \ |
||||
/usr/local/include/glib-2.0/glib/gqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/grand.h \ |
||||
/usr/local/include/glib-2.0/glib/gregex.h \ |
||||
/usr/local/include/glib-2.0/glib/gscanner.h \ |
||||
/usr/local/include/glib-2.0/glib/gsequence.h \ |
||||
/usr/local/include/glib-2.0/glib/gshell.h \ |
||||
/usr/local/include/glib-2.0/glib/gslice.h \ |
||||
/usr/local/include/glib-2.0/glib/gspawn.h \ |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h \ |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimer.h \ |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h \ |
||||
/usr/local/include/glib-2.0/glib/gtree.h \ |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/guuid.h \ |
||||
/usr/local/include/glib-2.0/glib/gversion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-features.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-types.h \ |
||||
/usr/local/include/glib-2.0/glib-object.h \ |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtype.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparam.h \ |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h \ |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h \ |
||||
/usr/local/include/glib-2.0/gobject/genums.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-script.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-language.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-break.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-context.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h \ |
||||
/usr/local/include/libpng16/png.h \ |
||||
/usr/local/include/libpng16/pnglibconf.h \ |
||||
/usr/local/include/libpng16/pngconf.h ../src/backend/SvgBackend.h |
||||
../src/Backends.cc: |
||||
../src/Backends.h: |
||||
../src/backend/Backend.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-version.h: |
||||
/usr/local/include/cairo/cairo-features.h: |
||||
/usr/local/include/cairo/cairo-deprecated.h: |
||||
../src/backend/../dll_visibility.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
../src/backend/ImageBackend.h: |
||||
../src/backend/PdfBackend.h: |
||||
../src/backend/../closure.h: |
||||
../src/backend/../Canvas.h: |
||||
../src/backend/../dll_visibility.h: |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h: |
||||
/usr/local/include/pango-1.0/pango/pango.h: |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h: |
||||
/usr/local/include/pango-1.0/pango/pango-font.h: |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h: |
||||
/usr/local/include/glib-2.0/glib.h: |
||||
/usr/local/include/glib-2.0/glib/galloca.h: |
||||
/usr/local/include/glib-2.0/glib/gtypes.h: |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h: |
||||
/usr/local/include/glib-2.0/glib/gmacros.h: |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h: |
||||
/usr/local/include/glib-2.0/glib/garray.h: |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h: |
||||
/usr/local/include/glib-2.0/glib/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/gatomic.h: |
||||
/usr/local/include/glib-2.0/glib/gerror.h: |
||||
/usr/local/include/glib-2.0/glib/gquark.h: |
||||
/usr/local/include/glib-2.0/glib/gutils.h: |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h: |
||||
/usr/local/include/glib-2.0/glib/gbase64.h: |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h: |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h: |
||||
/usr/local/include/glib-2.0/glib/gbytes.h: |
||||
/usr/local/include/glib-2.0/glib/gcharset.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/gconvert.h: |
||||
/usr/local/include/glib-2.0/glib/gdataset.h: |
||||
/usr/local/include/glib-2.0/glib/gdate.h: |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h: |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h: |
||||
/usr/local/include/glib-2.0/glib/gdir.h: |
||||
/usr/local/include/glib-2.0/glib/genviron.h: |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h: |
||||
/usr/local/include/glib-2.0/glib/ggettext.h: |
||||
/usr/local/include/glib-2.0/glib/ghash.h: |
||||
/usr/local/include/glib-2.0/glib/glist.h: |
||||
/usr/local/include/glib-2.0/glib/gmem.h: |
||||
/usr/local/include/glib-2.0/glib/gnode.h: |
||||
/usr/local/include/glib-2.0/glib/ghmac.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/ghook.h: |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h: |
||||
/usr/local/include/glib-2.0/glib/giochannel.h: |
||||
/usr/local/include/glib-2.0/glib/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/gpoll.h: |
||||
/usr/local/include/glib-2.0/glib/gslist.h: |
||||
/usr/local/include/glib-2.0/glib/gstring.h: |
||||
/usr/local/include/glib-2.0/glib/gunicode.h: |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h: |
||||
/usr/local/include/glib-2.0/glib/gmessages.h: |
||||
/usr/local/include/glib-2.0/glib/gvariant.h: |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h: |
||||
/usr/local/include/glib-2.0/glib/goption.h: |
||||
/usr/local/include/glib-2.0/glib/gpattern.h: |
||||
/usr/local/include/glib-2.0/glib/gprimes.h: |
||||
/usr/local/include/glib-2.0/glib/gqsort.h: |
||||
/usr/local/include/glib-2.0/glib/gqueue.h: |
||||
/usr/local/include/glib-2.0/glib/grand.h: |
||||
/usr/local/include/glib-2.0/glib/gregex.h: |
||||
/usr/local/include/glib-2.0/glib/gscanner.h: |
||||
/usr/local/include/glib-2.0/glib/gsequence.h: |
||||
/usr/local/include/glib-2.0/glib/gshell.h: |
||||
/usr/local/include/glib-2.0/glib/gslice.h: |
||||
/usr/local/include/glib-2.0/glib/gspawn.h: |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h: |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h: |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h: |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h: |
||||
/usr/local/include/glib-2.0/glib/gtimer.h: |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h: |
||||
/usr/local/include/glib-2.0/glib/gtree.h: |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h: |
||||
/usr/local/include/glib-2.0/glib/guuid.h: |
||||
/usr/local/include/glib-2.0/glib/gversion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h: |
||||
/usr/local/include/pango-1.0/pango/pango-features.h: |
||||
/usr/local/include/pango-1.0/pango/pango-types.h: |
||||
/usr/local/include/glib-2.0/glib-object.h: |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject.h: |
||||
/usr/local/include/glib-2.0/gobject/gtype.h: |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h: |
||||
/usr/local/include/glib-2.0/gobject/gparam.h: |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h: |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h: |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h: |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h: |
||||
/usr/local/include/glib-2.0/gobject/genums.h: |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h: |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h: |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h: |
||||
/usr/local/include/pango-1.0/pango/pango-script.h: |
||||
/usr/local/include/pango-1.0/pango/pango-language.h: |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h: |
||||
/usr/local/include/pango-1.0/pango/pango-break.h: |
||||
/usr/local/include/pango-1.0/pango/pango-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-context.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h: |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h: |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h: |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h: |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h: |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h: |
||||
/usr/local/include/libpng16/png.h: |
||||
/usr/local/include/libpng16/pnglibconf.h: |
||||
/usr/local/include/libpng16/pngconf.h: |
||||
../src/backend/SvgBackend.h: |
350
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Canvas.o.d
generated
vendored
350
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Canvas.o.d
generated
vendored
@ -0,0 +1,350 @@ |
||||
cmd_Release/obj.target/canvas/src/Canvas.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/Canvas.o.d.raw -c -o Release/obj.target/canvas/src/Canvas.o ../src/Canvas.cc |
||||
Release/obj.target/canvas/src/Canvas.o: ../src/Canvas.cc ../src/Canvas.h \ |
||||
../src/backend/Backend.h /usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-version.h \ |
||||
/usr/local/include/cairo/cairo-features.h \ |
||||
/usr/local/include/cairo/cairo-deprecated.h \ |
||||
../src/backend/../dll_visibility.h ../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h ../src/dll_visibility.h \ |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h \ |
||||
/usr/local/include/pango-1.0/pango/pango.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-font.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h \ |
||||
/usr/local/include/glib-2.0/glib.h \ |
||||
/usr/local/include/glib-2.0/glib/galloca.h \ |
||||
/usr/local/include/glib-2.0/glib/gtypes.h \ |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h \ |
||||
/usr/local/include/glib-2.0/glib/gmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/garray.h \ |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/gatomic.h \ |
||||
/usr/local/include/glib-2.0/glib/gerror.h \ |
||||
/usr/local/include/glib-2.0/glib/gquark.h \ |
||||
/usr/local/include/glib-2.0/glib/gutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h \ |
||||
/usr/local/include/glib-2.0/glib/gbase64.h \ |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h \ |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gbytes.h \ |
||||
/usr/local/include/glib-2.0/glib/gcharset.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/gconvert.h \ |
||||
/usr/local/include/glib-2.0/glib/gdataset.h \ |
||||
/usr/local/include/glib-2.0/glib/gdate.h \ |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h \ |
||||
/usr/local/include/glib-2.0/glib/gdir.h \ |
||||
/usr/local/include/glib-2.0/glib/genviron.h \ |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h \ |
||||
/usr/local/include/glib-2.0/glib/ggettext.h \ |
||||
/usr/local/include/glib-2.0/glib/ghash.h \ |
||||
/usr/local/include/glib-2.0/glib/glist.h \ |
||||
/usr/local/include/glib-2.0/glib/gmem.h \ |
||||
/usr/local/include/glib-2.0/glib/gnode.h \ |
||||
/usr/local/include/glib-2.0/glib/ghmac.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/ghook.h \ |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h \ |
||||
/usr/local/include/glib-2.0/glib/giochannel.h \ |
||||
/usr/local/include/glib-2.0/glib/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/gpoll.h \ |
||||
/usr/local/include/glib-2.0/glib/gslist.h \ |
||||
/usr/local/include/glib-2.0/glib/gstring.h \ |
||||
/usr/local/include/glib-2.0/glib/gunicode.h \ |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h \ |
||||
/usr/local/include/glib-2.0/glib/gmessages.h \ |
||||
/usr/local/include/glib-2.0/glib/gvariant.h \ |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h \ |
||||
/usr/local/include/glib-2.0/glib/goption.h \ |
||||
/usr/local/include/glib-2.0/glib/gpattern.h \ |
||||
/usr/local/include/glib-2.0/glib/gprimes.h \ |
||||
/usr/local/include/glib-2.0/glib/gqsort.h \ |
||||
/usr/local/include/glib-2.0/glib/gqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/grand.h \ |
||||
/usr/local/include/glib-2.0/glib/gregex.h \ |
||||
/usr/local/include/glib-2.0/glib/gscanner.h \ |
||||
/usr/local/include/glib-2.0/glib/gsequence.h \ |
||||
/usr/local/include/glib-2.0/glib/gshell.h \ |
||||
/usr/local/include/glib-2.0/glib/gslice.h \ |
||||
/usr/local/include/glib-2.0/glib/gspawn.h \ |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h \ |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimer.h \ |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h \ |
||||
/usr/local/include/glib-2.0/glib/gtree.h \ |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/guuid.h \ |
||||
/usr/local/include/glib-2.0/glib/gversion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-features.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-types.h \ |
||||
/usr/local/include/glib-2.0/glib-object.h \ |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtype.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparam.h \ |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h \ |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h \ |
||||
/usr/local/include/glib-2.0/gobject/genums.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-script.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-language.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-break.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-context.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h \ |
||||
/usr/local/include/cairo/cairo-pdf.h /usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-svg.h ../src/CanvasRenderingContext2d.h \ |
||||
../src/color.h ../src/closure.h /usr/local/include/libpng16/png.h \ |
||||
/usr/local/include/libpng16/pnglibconf.h \ |
||||
/usr/local/include/libpng16/pngconf.h ../src/PNG.h \ |
||||
/usr/local/include/libpng16/pngconf.h ../src/register_font.h \ |
||||
../src/Util.h ../src/JPEGStream.h ../src/backend/ImageBackend.h \ |
||||
../src/backend/PdfBackend.h ../src/backend/SvgBackend.h |
||||
../src/Canvas.cc: |
||||
../src/Canvas.h: |
||||
../src/backend/Backend.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-version.h: |
||||
/usr/local/include/cairo/cairo-features.h: |
||||
/usr/local/include/cairo/cairo-deprecated.h: |
||||
../src/backend/../dll_visibility.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
../src/dll_visibility.h: |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h: |
||||
/usr/local/include/pango-1.0/pango/pango.h: |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h: |
||||
/usr/local/include/pango-1.0/pango/pango-font.h: |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h: |
||||
/usr/local/include/glib-2.0/glib.h: |
||||
/usr/local/include/glib-2.0/glib/galloca.h: |
||||
/usr/local/include/glib-2.0/glib/gtypes.h: |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h: |
||||
/usr/local/include/glib-2.0/glib/gmacros.h: |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h: |
||||
/usr/local/include/glib-2.0/glib/garray.h: |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h: |
||||
/usr/local/include/glib-2.0/glib/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/gatomic.h: |
||||
/usr/local/include/glib-2.0/glib/gerror.h: |
||||
/usr/local/include/glib-2.0/glib/gquark.h: |
||||
/usr/local/include/glib-2.0/glib/gutils.h: |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h: |
||||
/usr/local/include/glib-2.0/glib/gbase64.h: |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h: |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h: |
||||
/usr/local/include/glib-2.0/glib/gbytes.h: |
||||
/usr/local/include/glib-2.0/glib/gcharset.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/gconvert.h: |
||||
/usr/local/include/glib-2.0/glib/gdataset.h: |
||||
/usr/local/include/glib-2.0/glib/gdate.h: |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h: |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h: |
||||
/usr/local/include/glib-2.0/glib/gdir.h: |
||||
/usr/local/include/glib-2.0/glib/genviron.h: |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h: |
||||
/usr/local/include/glib-2.0/glib/ggettext.h: |
||||
/usr/local/include/glib-2.0/glib/ghash.h: |
||||
/usr/local/include/glib-2.0/glib/glist.h: |
||||
/usr/local/include/glib-2.0/glib/gmem.h: |
||||
/usr/local/include/glib-2.0/glib/gnode.h: |
||||
/usr/local/include/glib-2.0/glib/ghmac.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/ghook.h: |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h: |
||||
/usr/local/include/glib-2.0/glib/giochannel.h: |
||||
/usr/local/include/glib-2.0/glib/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/gpoll.h: |
||||
/usr/local/include/glib-2.0/glib/gslist.h: |
||||
/usr/local/include/glib-2.0/glib/gstring.h: |
||||
/usr/local/include/glib-2.0/glib/gunicode.h: |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h: |
||||
/usr/local/include/glib-2.0/glib/gmessages.h: |
||||
/usr/local/include/glib-2.0/glib/gvariant.h: |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h: |
||||
/usr/local/include/glib-2.0/glib/goption.h: |
||||
/usr/local/include/glib-2.0/glib/gpattern.h: |
||||
/usr/local/include/glib-2.0/glib/gprimes.h: |
||||
/usr/local/include/glib-2.0/glib/gqsort.h: |
||||
/usr/local/include/glib-2.0/glib/gqueue.h: |
||||
/usr/local/include/glib-2.0/glib/grand.h: |
||||
/usr/local/include/glib-2.0/glib/gregex.h: |
||||
/usr/local/include/glib-2.0/glib/gscanner.h: |
||||
/usr/local/include/glib-2.0/glib/gsequence.h: |
||||
/usr/local/include/glib-2.0/glib/gshell.h: |
||||
/usr/local/include/glib-2.0/glib/gslice.h: |
||||
/usr/local/include/glib-2.0/glib/gspawn.h: |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h: |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h: |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h: |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h: |
||||
/usr/local/include/glib-2.0/glib/gtimer.h: |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h: |
||||
/usr/local/include/glib-2.0/glib/gtree.h: |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h: |
||||
/usr/local/include/glib-2.0/glib/guuid.h: |
||||
/usr/local/include/glib-2.0/glib/gversion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h: |
||||
/usr/local/include/pango-1.0/pango/pango-features.h: |
||||
/usr/local/include/pango-1.0/pango/pango-types.h: |
||||
/usr/local/include/glib-2.0/glib-object.h: |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject.h: |
||||
/usr/local/include/glib-2.0/gobject/gtype.h: |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h: |
||||
/usr/local/include/glib-2.0/gobject/gparam.h: |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h: |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h: |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h: |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h: |
||||
/usr/local/include/glib-2.0/gobject/genums.h: |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h: |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h: |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h: |
||||
/usr/local/include/pango-1.0/pango/pango-script.h: |
||||
/usr/local/include/pango-1.0/pango/pango-language.h: |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h: |
||||
/usr/local/include/pango-1.0/pango/pango-break.h: |
||||
/usr/local/include/pango-1.0/pango/pango-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-context.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h: |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h: |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h: |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h: |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h: |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h: |
||||
/usr/local/include/cairo/cairo-pdf.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-svg.h: |
||||
../src/CanvasRenderingContext2d.h: |
||||
../src/color.h: |
||||
../src/closure.h: |
||||
/usr/local/include/libpng16/png.h: |
||||
/usr/local/include/libpng16/pnglibconf.h: |
||||
/usr/local/include/libpng16/pngconf.h: |
||||
../src/PNG.h: |
||||
/usr/local/include/libpng16/pngconf.h: |
||||
../src/register_font.h: |
||||
../src/Util.h: |
||||
../src/JPEGStream.h: |
||||
../src/backend/ImageBackend.h: |
||||
../src/backend/PdfBackend.h: |
||||
../src/backend/SvgBackend.h: |
@ -0,0 +1,328 @@ |
||||
cmd_Release/obj.target/canvas/src/CanvasGradient.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/CanvasGradient.o.d.raw -c -o Release/obj.target/canvas/src/CanvasGradient.o ../src/CanvasGradient.cc |
||||
Release/obj.target/canvas/src/CanvasGradient.o: ../src/CanvasGradient.cc \ |
||||
../src/CanvasGradient.h ../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-version.h \ |
||||
/usr/local/include/cairo/cairo-features.h \ |
||||
/usr/local/include/cairo/cairo-deprecated.h ../src/Canvas.h \ |
||||
../src/backend/Backend.h ../src/backend/../dll_visibility.h \ |
||||
../src/dll_visibility.h /usr/local/include/pango-1.0/pango/pangocairo.h \ |
||||
/usr/local/include/pango-1.0/pango/pango.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-font.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h \ |
||||
/usr/local/include/glib-2.0/glib.h \ |
||||
/usr/local/include/glib-2.0/glib/galloca.h \ |
||||
/usr/local/include/glib-2.0/glib/gtypes.h \ |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h \ |
||||
/usr/local/include/glib-2.0/glib/gmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/garray.h \ |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/gatomic.h \ |
||||
/usr/local/include/glib-2.0/glib/gerror.h \ |
||||
/usr/local/include/glib-2.0/glib/gquark.h \ |
||||
/usr/local/include/glib-2.0/glib/gutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h \ |
||||
/usr/local/include/glib-2.0/glib/gbase64.h \ |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h \ |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gbytes.h \ |
||||
/usr/local/include/glib-2.0/glib/gcharset.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/gconvert.h \ |
||||
/usr/local/include/glib-2.0/glib/gdataset.h \ |
||||
/usr/local/include/glib-2.0/glib/gdate.h \ |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h \ |
||||
/usr/local/include/glib-2.0/glib/gdir.h \ |
||||
/usr/local/include/glib-2.0/glib/genviron.h \ |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h \ |
||||
/usr/local/include/glib-2.0/glib/ggettext.h \ |
||||
/usr/local/include/glib-2.0/glib/ghash.h \ |
||||
/usr/local/include/glib-2.0/glib/glist.h \ |
||||
/usr/local/include/glib-2.0/glib/gmem.h \ |
||||
/usr/local/include/glib-2.0/glib/gnode.h \ |
||||
/usr/local/include/glib-2.0/glib/ghmac.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/ghook.h \ |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h \ |
||||
/usr/local/include/glib-2.0/glib/giochannel.h \ |
||||
/usr/local/include/glib-2.0/glib/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/gpoll.h \ |
||||
/usr/local/include/glib-2.0/glib/gslist.h \ |
||||
/usr/local/include/glib-2.0/glib/gstring.h \ |
||||
/usr/local/include/glib-2.0/glib/gunicode.h \ |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h \ |
||||
/usr/local/include/glib-2.0/glib/gmessages.h \ |
||||
/usr/local/include/glib-2.0/glib/gvariant.h \ |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h \ |
||||
/usr/local/include/glib-2.0/glib/goption.h \ |
||||
/usr/local/include/glib-2.0/glib/gpattern.h \ |
||||
/usr/local/include/glib-2.0/glib/gprimes.h \ |
||||
/usr/local/include/glib-2.0/glib/gqsort.h \ |
||||
/usr/local/include/glib-2.0/glib/gqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/grand.h \ |
||||
/usr/local/include/glib-2.0/glib/gregex.h \ |
||||
/usr/local/include/glib-2.0/glib/gscanner.h \ |
||||
/usr/local/include/glib-2.0/glib/gsequence.h \ |
||||
/usr/local/include/glib-2.0/glib/gshell.h \ |
||||
/usr/local/include/glib-2.0/glib/gslice.h \ |
||||
/usr/local/include/glib-2.0/glib/gspawn.h \ |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h \ |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimer.h \ |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h \ |
||||
/usr/local/include/glib-2.0/glib/gtree.h \ |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/guuid.h \ |
||||
/usr/local/include/glib-2.0/glib/gversion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-features.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-types.h \ |
||||
/usr/local/include/glib-2.0/glib-object.h \ |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtype.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparam.h \ |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h \ |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h \ |
||||
/usr/local/include/glib-2.0/gobject/genums.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-script.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-language.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-break.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-context.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h ../src/color.h |
||||
../src/CanvasGradient.cc: |
||||
../src/CanvasGradient.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-version.h: |
||||
/usr/local/include/cairo/cairo-features.h: |
||||
/usr/local/include/cairo/cairo-deprecated.h: |
||||
../src/Canvas.h: |
||||
../src/backend/Backend.h: |
||||
../src/backend/../dll_visibility.h: |
||||
../src/dll_visibility.h: |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h: |
||||
/usr/local/include/pango-1.0/pango/pango.h: |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h: |
||||
/usr/local/include/pango-1.0/pango/pango-font.h: |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h: |
||||
/usr/local/include/glib-2.0/glib.h: |
||||
/usr/local/include/glib-2.0/glib/galloca.h: |
||||
/usr/local/include/glib-2.0/glib/gtypes.h: |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h: |
||||
/usr/local/include/glib-2.0/glib/gmacros.h: |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h: |
||||
/usr/local/include/glib-2.0/glib/garray.h: |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h: |
||||
/usr/local/include/glib-2.0/glib/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/gatomic.h: |
||||
/usr/local/include/glib-2.0/glib/gerror.h: |
||||
/usr/local/include/glib-2.0/glib/gquark.h: |
||||
/usr/local/include/glib-2.0/glib/gutils.h: |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h: |
||||
/usr/local/include/glib-2.0/glib/gbase64.h: |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h: |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h: |
||||
/usr/local/include/glib-2.0/glib/gbytes.h: |
||||
/usr/local/include/glib-2.0/glib/gcharset.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/gconvert.h: |
||||
/usr/local/include/glib-2.0/glib/gdataset.h: |
||||
/usr/local/include/glib-2.0/glib/gdate.h: |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h: |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h: |
||||
/usr/local/include/glib-2.0/glib/gdir.h: |
||||
/usr/local/include/glib-2.0/glib/genviron.h: |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h: |
||||
/usr/local/include/glib-2.0/glib/ggettext.h: |
||||
/usr/local/include/glib-2.0/glib/ghash.h: |
||||
/usr/local/include/glib-2.0/glib/glist.h: |
||||
/usr/local/include/glib-2.0/glib/gmem.h: |
||||
/usr/local/include/glib-2.0/glib/gnode.h: |
||||
/usr/local/include/glib-2.0/glib/ghmac.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/ghook.h: |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h: |
||||
/usr/local/include/glib-2.0/glib/giochannel.h: |
||||
/usr/local/include/glib-2.0/glib/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/gpoll.h: |
||||
/usr/local/include/glib-2.0/glib/gslist.h: |
||||
/usr/local/include/glib-2.0/glib/gstring.h: |
||||
/usr/local/include/glib-2.0/glib/gunicode.h: |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h: |
||||
/usr/local/include/glib-2.0/glib/gmessages.h: |
||||
/usr/local/include/glib-2.0/glib/gvariant.h: |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h: |
||||
/usr/local/include/glib-2.0/glib/goption.h: |
||||
/usr/local/include/glib-2.0/glib/gpattern.h: |
||||
/usr/local/include/glib-2.0/glib/gprimes.h: |
||||
/usr/local/include/glib-2.0/glib/gqsort.h: |
||||
/usr/local/include/glib-2.0/glib/gqueue.h: |
||||
/usr/local/include/glib-2.0/glib/grand.h: |
||||
/usr/local/include/glib-2.0/glib/gregex.h: |
||||
/usr/local/include/glib-2.0/glib/gscanner.h: |
||||
/usr/local/include/glib-2.0/glib/gsequence.h: |
||||
/usr/local/include/glib-2.0/glib/gshell.h: |
||||
/usr/local/include/glib-2.0/glib/gslice.h: |
||||
/usr/local/include/glib-2.0/glib/gspawn.h: |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h: |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h: |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h: |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h: |
||||
/usr/local/include/glib-2.0/glib/gtimer.h: |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h: |
||||
/usr/local/include/glib-2.0/glib/gtree.h: |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h: |
||||
/usr/local/include/glib-2.0/glib/guuid.h: |
||||
/usr/local/include/glib-2.0/glib/gversion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h: |
||||
/usr/local/include/pango-1.0/pango/pango-features.h: |
||||
/usr/local/include/pango-1.0/pango/pango-types.h: |
||||
/usr/local/include/glib-2.0/glib-object.h: |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject.h: |
||||
/usr/local/include/glib-2.0/gobject/gtype.h: |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h: |
||||
/usr/local/include/glib-2.0/gobject/gparam.h: |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h: |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h: |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h: |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h: |
||||
/usr/local/include/glib-2.0/gobject/genums.h: |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h: |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h: |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h: |
||||
/usr/local/include/pango-1.0/pango/pango-script.h: |
||||
/usr/local/include/pango-1.0/pango/pango-language.h: |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h: |
||||
/usr/local/include/pango-1.0/pango/pango-break.h: |
||||
/usr/local/include/pango-1.0/pango/pango-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-context.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h: |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h: |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h: |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h: |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h: |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h: |
||||
../src/color.h: |
@ -0,0 +1,658 @@ |
||||
cmd_Release/obj.target/canvas/src/CanvasPattern.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/CanvasPattern.o.d.raw -c -o Release/obj.target/canvas/src/CanvasPattern.o ../src/CanvasPattern.cc |
||||
Release/obj.target/canvas/src/CanvasPattern.o: ../src/CanvasPattern.cc \ |
||||
../src/CanvasPattern.h /usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-version.h \ |
||||
/usr/local/include/cairo/cairo-features.h \ |
||||
/usr/local/include/cairo/cairo-deprecated.h ../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h ../src/Canvas.h \ |
||||
../src/backend/Backend.h ../src/backend/../dll_visibility.h \ |
||||
../src/dll_visibility.h /usr/local/include/pango-1.0/pango/pangocairo.h \ |
||||
/usr/local/include/pango-1.0/pango/pango.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-font.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h \ |
||||
/usr/local/include/glib-2.0/glib.h \ |
||||
/usr/local/include/glib-2.0/glib/galloca.h \ |
||||
/usr/local/include/glib-2.0/glib/gtypes.h \ |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h \ |
||||
/usr/local/include/glib-2.0/glib/gmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/garray.h \ |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/gatomic.h \ |
||||
/usr/local/include/glib-2.0/glib/gerror.h \ |
||||
/usr/local/include/glib-2.0/glib/gquark.h \ |
||||
/usr/local/include/glib-2.0/glib/gutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h \ |
||||
/usr/local/include/glib-2.0/glib/gbase64.h \ |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h \ |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gbytes.h \ |
||||
/usr/local/include/glib-2.0/glib/gcharset.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/gconvert.h \ |
||||
/usr/local/include/glib-2.0/glib/gdataset.h \ |
||||
/usr/local/include/glib-2.0/glib/gdate.h \ |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h \ |
||||
/usr/local/include/glib-2.0/glib/gdir.h \ |
||||
/usr/local/include/glib-2.0/glib/genviron.h \ |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h \ |
||||
/usr/local/include/glib-2.0/glib/ggettext.h \ |
||||
/usr/local/include/glib-2.0/glib/ghash.h \ |
||||
/usr/local/include/glib-2.0/glib/glist.h \ |
||||
/usr/local/include/glib-2.0/glib/gmem.h \ |
||||
/usr/local/include/glib-2.0/glib/gnode.h \ |
||||
/usr/local/include/glib-2.0/glib/ghmac.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/ghook.h \ |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h \ |
||||
/usr/local/include/glib-2.0/glib/giochannel.h \ |
||||
/usr/local/include/glib-2.0/glib/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/gpoll.h \ |
||||
/usr/local/include/glib-2.0/glib/gslist.h \ |
||||
/usr/local/include/glib-2.0/glib/gstring.h \ |
||||
/usr/local/include/glib-2.0/glib/gunicode.h \ |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h \ |
||||
/usr/local/include/glib-2.0/glib/gmessages.h \ |
||||
/usr/local/include/glib-2.0/glib/gvariant.h \ |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h \ |
||||
/usr/local/include/glib-2.0/glib/goption.h \ |
||||
/usr/local/include/glib-2.0/glib/gpattern.h \ |
||||
/usr/local/include/glib-2.0/glib/gprimes.h \ |
||||
/usr/local/include/glib-2.0/glib/gqsort.h \ |
||||
/usr/local/include/glib-2.0/glib/gqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/grand.h \ |
||||
/usr/local/include/glib-2.0/glib/gregex.h \ |
||||
/usr/local/include/glib-2.0/glib/gscanner.h \ |
||||
/usr/local/include/glib-2.0/glib/gsequence.h \ |
||||
/usr/local/include/glib-2.0/glib/gshell.h \ |
||||
/usr/local/include/glib-2.0/glib/gslice.h \ |
||||
/usr/local/include/glib-2.0/glib/gspawn.h \ |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h \ |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimer.h \ |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h \ |
||||
/usr/local/include/glib-2.0/glib/gtree.h \ |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/guuid.h \ |
||||
/usr/local/include/glib-2.0/glib/gversion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-features.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-types.h \ |
||||
/usr/local/include/glib-2.0/glib-object.h \ |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtype.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparam.h \ |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h \ |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h \ |
||||
/usr/local/include/glib-2.0/gobject/genums.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-script.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-language.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-break.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-context.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h ../src/Image.h \ |
||||
../src/CanvasError.h /usr/local/include/librsvg-2.0/librsvg/rsvg.h \ |
||||
/usr/local/include/glib-2.0/gio/gio.h \ |
||||
/usr/local/include/glib-2.0/gio/giotypes.h \ |
||||
/usr/local/include/glib-2.0/gio/gioenums.h \ |
||||
/usr/local/include/glib-2.0/gio/gaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h \ |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h \ |
||||
/usr/local/include/glib-2.0/gio/gappinfo.h \ |
||||
/usr/local/include/glib-2.0/gio/gapplication.h \ |
||||
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h \ |
||||
/usr/local/include/glib-2.0/gio/gasyncinitable.h \ |
||||
/usr/local/include/glib-2.0/gio/ginitable.h \ |
||||
/usr/local/include/glib-2.0/gio/gasyncresult.h \ |
||||
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilterinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/ginputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/goutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gbytesicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gcancellable.h \ |
||||
/usr/local/include/glib-2.0/gio/gcharsetconverter.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverter.h \ |
||||
/usr/local/include/glib-2.0/gio/gcontenttype.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverterinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gcredentials.h \ |
||||
/usr/local/include/glib-2.0/gio/gdatagrambased.h \ |
||||
/usr/local/include/glib-2.0/gio/gdatainputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gdataoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbuserror.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusintrospection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmessage.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusnameowning.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusutils.h \ |
||||
/usr/local/include/glib-2.0/gio/gdrive.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsclientconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsserverconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gemblemedicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gemblem.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileattribute.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gfile.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileinfo.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileiostream.h \ |
||||
/usr/local/include/glib-2.0/gio/giostream.h \ |
||||
/usr/local/include/glib-2.0/gio/gioerror.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetaddressmask.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gioenumtypes.h \ |
||||
/usr/local/include/glib-2.0/gio/giomodule.h \ |
||||
/usr/local/include/glib-2.0/gmodule.h \ |
||||
/usr/local/include/glib-2.0/gio/gioscheduler.h \ |
||||
/usr/local/include/glib-2.0/gio/gloadableicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gmount.h \ |
||||
/usr/local/include/glib-2.0/gio/gmountoperation.h \ |
||||
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gvolumemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gpermission.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableutils.h \ |
||||
/usr/local/include/glib-2.0/gio/gpropertyaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gresource.h \ |
||||
/usr/local/include/glib-2.0/gio/gseekable.h \ |
||||
/usr/local/include/glib-2.0/gio/gsettingsschema.h \ |
||||
/usr/local/include/glib-2.0/gio/gsettings.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleiostream.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimplepermission.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketclient.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketconnectable.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocket.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketlistener.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gsrvtarget.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleproxyresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gtask.h \ |
||||
/usr/local/include/glib-2.0/gio/gsubprocess.h \ |
||||
/usr/local/include/glib-2.0/gio/gsubprocesslauncher.h \ |
||||
/usr/local/include/glib-2.0/gio/gtcpconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtestdbus.h \ |
||||
/usr/local/include/glib-2.0/gio/gthemedicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsbackend.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlscertificate.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsdatabase.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsinteraction.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlspassword.h \ |
||||
/usr/local/include/glib-2.0/gio/gvfs.h \ |
||||
/usr/local/include/glib-2.0/gio/gvolume.h \ |
||||
/usr/local/include/glib-2.0/gio/gzlibcompressor.h \ |
||||
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusinterface.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobject.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/giotypes.h \ |
||||
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenumodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenu.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenuexporter.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gnotification.h \ |
||||
/usr/local/include/glib-2.0/gio/glistmodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gliststore.h \ |
||||
/usr/local/include/glib-2.0/gio/gio-autocleanups.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-enum-types.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-features.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg-cairo.h |
||||
../src/CanvasPattern.cc: |
||||
../src/CanvasPattern.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-version.h: |
||||
/usr/local/include/cairo/cairo-features.h: |
||||
/usr/local/include/cairo/cairo-deprecated.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
../src/Canvas.h: |
||||
../src/backend/Backend.h: |
||||
../src/backend/../dll_visibility.h: |
||||
../src/dll_visibility.h: |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h: |
||||
/usr/local/include/pango-1.0/pango/pango.h: |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h: |
||||
/usr/local/include/pango-1.0/pango/pango-font.h: |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h: |
||||
/usr/local/include/glib-2.0/glib.h: |
||||
/usr/local/include/glib-2.0/glib/galloca.h: |
||||
/usr/local/include/glib-2.0/glib/gtypes.h: |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h: |
||||
/usr/local/include/glib-2.0/glib/gmacros.h: |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h: |
||||
/usr/local/include/glib-2.0/glib/garray.h: |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h: |
||||
/usr/local/include/glib-2.0/glib/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/gatomic.h: |
||||
/usr/local/include/glib-2.0/glib/gerror.h: |
||||
/usr/local/include/glib-2.0/glib/gquark.h: |
||||
/usr/local/include/glib-2.0/glib/gutils.h: |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h: |
||||
/usr/local/include/glib-2.0/glib/gbase64.h: |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h: |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h: |
||||
/usr/local/include/glib-2.0/glib/gbytes.h: |
||||
/usr/local/include/glib-2.0/glib/gcharset.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/gconvert.h: |
||||
/usr/local/include/glib-2.0/glib/gdataset.h: |
||||
/usr/local/include/glib-2.0/glib/gdate.h: |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h: |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h: |
||||
/usr/local/include/glib-2.0/glib/gdir.h: |
||||
/usr/local/include/glib-2.0/glib/genviron.h: |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h: |
||||
/usr/local/include/glib-2.0/glib/ggettext.h: |
||||
/usr/local/include/glib-2.0/glib/ghash.h: |
||||
/usr/local/include/glib-2.0/glib/glist.h: |
||||
/usr/local/include/glib-2.0/glib/gmem.h: |
||||
/usr/local/include/glib-2.0/glib/gnode.h: |
||||
/usr/local/include/glib-2.0/glib/ghmac.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/ghook.h: |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h: |
||||
/usr/local/include/glib-2.0/glib/giochannel.h: |
||||
/usr/local/include/glib-2.0/glib/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/gpoll.h: |
||||
/usr/local/include/glib-2.0/glib/gslist.h: |
||||
/usr/local/include/glib-2.0/glib/gstring.h: |
||||
/usr/local/include/glib-2.0/glib/gunicode.h: |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h: |
||||
/usr/local/include/glib-2.0/glib/gmessages.h: |
||||
/usr/local/include/glib-2.0/glib/gvariant.h: |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h: |
||||
/usr/local/include/glib-2.0/glib/goption.h: |
||||
/usr/local/include/glib-2.0/glib/gpattern.h: |
||||
/usr/local/include/glib-2.0/glib/gprimes.h: |
||||
/usr/local/include/glib-2.0/glib/gqsort.h: |
||||
/usr/local/include/glib-2.0/glib/gqueue.h: |
||||
/usr/local/include/glib-2.0/glib/grand.h: |
||||
/usr/local/include/glib-2.0/glib/gregex.h: |
||||
/usr/local/include/glib-2.0/glib/gscanner.h: |
||||
/usr/local/include/glib-2.0/glib/gsequence.h: |
||||
/usr/local/include/glib-2.0/glib/gshell.h: |
||||
/usr/local/include/glib-2.0/glib/gslice.h: |
||||
/usr/local/include/glib-2.0/glib/gspawn.h: |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h: |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h: |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h: |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h: |
||||
/usr/local/include/glib-2.0/glib/gtimer.h: |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h: |
||||
/usr/local/include/glib-2.0/glib/gtree.h: |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h: |
||||
/usr/local/include/glib-2.0/glib/guuid.h: |
||||
/usr/local/include/glib-2.0/glib/gversion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h: |
||||
/usr/local/include/pango-1.0/pango/pango-features.h: |
||||
/usr/local/include/pango-1.0/pango/pango-types.h: |
||||
/usr/local/include/glib-2.0/glib-object.h: |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject.h: |
||||
/usr/local/include/glib-2.0/gobject/gtype.h: |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h: |
||||
/usr/local/include/glib-2.0/gobject/gparam.h: |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h: |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h: |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h: |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h: |
||||
/usr/local/include/glib-2.0/gobject/genums.h: |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h: |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h: |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h: |
||||
/usr/local/include/pango-1.0/pango/pango-script.h: |
||||
/usr/local/include/pango-1.0/pango/pango-language.h: |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h: |
||||
/usr/local/include/pango-1.0/pango/pango-break.h: |
||||
/usr/local/include/pango-1.0/pango/pango-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-context.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h: |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h: |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h: |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h: |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h: |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h: |
||||
../src/Image.h: |
||||
../src/CanvasError.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg.h: |
||||
/usr/local/include/glib-2.0/gio/gio.h: |
||||
/usr/local/include/glib-2.0/gio/giotypes.h: |
||||
/usr/local/include/glib-2.0/gio/gioenums.h: |
||||
/usr/local/include/glib-2.0/gio/gaction.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h: |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h: |
||||
/usr/local/include/glib-2.0/gio/gappinfo.h: |
||||
/usr/local/include/glib-2.0/gio/gapplication.h: |
||||
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h: |
||||
/usr/local/include/glib-2.0/gio/gasyncinitable.h: |
||||
/usr/local/include/glib-2.0/gio/ginitable.h: |
||||
/usr/local/include/glib-2.0/gio/gasyncresult.h: |
||||
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfilterinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/ginputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/goutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gbytesicon.h: |
||||
/usr/local/include/glib-2.0/gio/gcancellable.h: |
||||
/usr/local/include/glib-2.0/gio/gcharsetconverter.h: |
||||
/usr/local/include/glib-2.0/gio/gconverter.h: |
||||
/usr/local/include/glib-2.0/gio/gcontenttype.h: |
||||
/usr/local/include/glib-2.0/gio/gconverterinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gcredentials.h: |
||||
/usr/local/include/glib-2.0/gio/gdatagrambased.h: |
||||
/usr/local/include/glib-2.0/gio/gdatainputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gdataoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdbuserror.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusintrospection.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmessage.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusnameowning.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusutils.h: |
||||
/usr/local/include/glib-2.0/gio/gdrive.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsclientconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsserverconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gemblemedicon.h: |
||||
/usr/local/include/glib-2.0/gio/gicon.h: |
||||
/usr/local/include/glib-2.0/gio/gemblem.h: |
||||
/usr/local/include/glib-2.0/gio/gfileattribute.h: |
||||
/usr/local/include/glib-2.0/gio/gfileenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gfile.h: |
||||
/usr/local/include/glib-2.0/gio/gfileicon.h: |
||||
/usr/local/include/glib-2.0/gio/gfileinfo.h: |
||||
/usr/local/include/glib-2.0/gio/gfileinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfileiostream.h: |
||||
/usr/local/include/glib-2.0/gio/giostream.h: |
||||
/usr/local/include/glib-2.0/gio/gioerror.h: |
||||
/usr/local/include/glib-2.0/gio/gfilemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h: |
||||
/usr/local/include/glib-2.0/gio/gfileoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/ginetaddress.h: |
||||
/usr/local/include/glib-2.0/gio/ginetaddressmask.h: |
||||
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gioenumtypes.h: |
||||
/usr/local/include/glib-2.0/gio/giomodule.h: |
||||
/usr/local/include/glib-2.0/gmodule.h: |
||||
/usr/local/include/glib-2.0/gio/gioscheduler.h: |
||||
/usr/local/include/glib-2.0/gio/gloadableicon.h: |
||||
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gmount.h: |
||||
/usr/local/include/glib-2.0/gio/gmountoperation.h: |
||||
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gvolumemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkservice.h: |
||||
/usr/local/include/glib-2.0/gio/gpermission.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableutils.h: |
||||
/usr/local/include/glib-2.0/gio/gpropertyaction.h: |
||||
/usr/local/include/glib-2.0/gio/gproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gresource.h: |
||||
/usr/local/include/glib-2.0/gio/gseekable.h: |
||||
/usr/local/include/glib-2.0/gio/gsettingsschema.h: |
||||
/usr/local/include/glib-2.0/gio/gsettings.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleaction.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleiostream.h: |
||||
/usr/local/include/glib-2.0/gio/gsimplepermission.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketclient.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketconnectable.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gsocket.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketlistener.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketservice.h: |
||||
/usr/local/include/glib-2.0/gio/gsrvtarget.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleproxyresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gtask.h: |
||||
/usr/local/include/glib-2.0/gio/gsubprocess.h: |
||||
/usr/local/include/glib-2.0/gio/gsubprocesslauncher.h: |
||||
/usr/local/include/glib-2.0/gio/gtcpconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtestdbus.h: |
||||
/usr/local/include/glib-2.0/gio/gthemedicon.h: |
||||
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsbackend.h: |
||||
/usr/local/include/glib-2.0/gio/gtlscertificate.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsdatabase.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsinteraction.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlspassword.h: |
||||
/usr/local/include/glib-2.0/gio/gvfs.h: |
||||
/usr/local/include/glib-2.0/gio/gvolume.h: |
||||
/usr/local/include/glib-2.0/gio/gzlibcompressor.h: |
||||
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusinterface.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobject.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/giotypes.h: |
||||
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gmenumodel.h: |
||||
/usr/local/include/glib-2.0/gio/gmenu.h: |
||||
/usr/local/include/glib-2.0/gio/gmenuexporter.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h: |
||||
/usr/local/include/glib-2.0/gio/gnotification.h: |
||||
/usr/local/include/glib-2.0/gio/glistmodel.h: |
||||
/usr/local/include/glib-2.0/gio/gliststore.h: |
||||
/usr/local/include/glib-2.0/gio/gio-autocleanups.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-enum-types.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-features.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg-cairo.h: |
@ -0,0 +1,670 @@ |
||||
cmd_Release/obj.target/canvas/src/CanvasRenderingContext2d.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/CanvasRenderingContext2d.o.d.raw -c -o Release/obj.target/canvas/src/CanvasRenderingContext2d.o ../src/CanvasRenderingContext2d.cc |
||||
Release/obj.target/canvas/src/CanvasRenderingContext2d.o: \ |
||||
../src/CanvasRenderingContext2d.cc ../src/CanvasRenderingContext2d.h \ |
||||
/usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-version.h \ |
||||
/usr/local/include/cairo/cairo-features.h \ |
||||
/usr/local/include/cairo/cairo-deprecated.h ../src/Canvas.h \ |
||||
../src/backend/Backend.h ../src/backend/../dll_visibility.h \ |
||||
../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h ../src/dll_visibility.h \ |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h \ |
||||
/usr/local/include/pango-1.0/pango/pango.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-font.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h \ |
||||
/usr/local/include/glib-2.0/glib.h \ |
||||
/usr/local/include/glib-2.0/glib/galloca.h \ |
||||
/usr/local/include/glib-2.0/glib/gtypes.h \ |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h \ |
||||
/usr/local/include/glib-2.0/glib/gmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/garray.h \ |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/gatomic.h \ |
||||
/usr/local/include/glib-2.0/glib/gerror.h \ |
||||
/usr/local/include/glib-2.0/glib/gquark.h \ |
||||
/usr/local/include/glib-2.0/glib/gutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h \ |
||||
/usr/local/include/glib-2.0/glib/gbase64.h \ |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h \ |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gbytes.h \ |
||||
/usr/local/include/glib-2.0/glib/gcharset.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/gconvert.h \ |
||||
/usr/local/include/glib-2.0/glib/gdataset.h \ |
||||
/usr/local/include/glib-2.0/glib/gdate.h \ |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h \ |
||||
/usr/local/include/glib-2.0/glib/gdir.h \ |
||||
/usr/local/include/glib-2.0/glib/genviron.h \ |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h \ |
||||
/usr/local/include/glib-2.0/glib/ggettext.h \ |
||||
/usr/local/include/glib-2.0/glib/ghash.h \ |
||||
/usr/local/include/glib-2.0/glib/glist.h \ |
||||
/usr/local/include/glib-2.0/glib/gmem.h \ |
||||
/usr/local/include/glib-2.0/glib/gnode.h \ |
||||
/usr/local/include/glib-2.0/glib/ghmac.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/ghook.h \ |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h \ |
||||
/usr/local/include/glib-2.0/glib/giochannel.h \ |
||||
/usr/local/include/glib-2.0/glib/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/gpoll.h \ |
||||
/usr/local/include/glib-2.0/glib/gslist.h \ |
||||
/usr/local/include/glib-2.0/glib/gstring.h \ |
||||
/usr/local/include/glib-2.0/glib/gunicode.h \ |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h \ |
||||
/usr/local/include/glib-2.0/glib/gmessages.h \ |
||||
/usr/local/include/glib-2.0/glib/gvariant.h \ |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h \ |
||||
/usr/local/include/glib-2.0/glib/goption.h \ |
||||
/usr/local/include/glib-2.0/glib/gpattern.h \ |
||||
/usr/local/include/glib-2.0/glib/gprimes.h \ |
||||
/usr/local/include/glib-2.0/glib/gqsort.h \ |
||||
/usr/local/include/glib-2.0/glib/gqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/grand.h \ |
||||
/usr/local/include/glib-2.0/glib/gregex.h \ |
||||
/usr/local/include/glib-2.0/glib/gscanner.h \ |
||||
/usr/local/include/glib-2.0/glib/gsequence.h \ |
||||
/usr/local/include/glib-2.0/glib/gshell.h \ |
||||
/usr/local/include/glib-2.0/glib/gslice.h \ |
||||
/usr/local/include/glib-2.0/glib/gspawn.h \ |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h \ |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimer.h \ |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h \ |
||||
/usr/local/include/glib-2.0/glib/gtree.h \ |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/guuid.h \ |
||||
/usr/local/include/glib-2.0/glib/gversion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-features.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-types.h \ |
||||
/usr/local/include/glib-2.0/glib-object.h \ |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtype.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparam.h \ |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h \ |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h \ |
||||
/usr/local/include/glib-2.0/gobject/genums.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-script.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-language.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-break.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-context.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h ../src/color.h \ |
||||
../src/backend/ImageBackend.h ../src/CanvasGradient.h \ |
||||
../src/CanvasPattern.h ../src/Image.h ../src/CanvasError.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg.h \ |
||||
/usr/local/include/glib-2.0/gio/gio.h \ |
||||
/usr/local/include/glib-2.0/gio/giotypes.h \ |
||||
/usr/local/include/glib-2.0/gio/gioenums.h \ |
||||
/usr/local/include/glib-2.0/gio/gaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h \ |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h \ |
||||
/usr/local/include/glib-2.0/gio/gappinfo.h \ |
||||
/usr/local/include/glib-2.0/gio/gapplication.h \ |
||||
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h \ |
||||
/usr/local/include/glib-2.0/gio/gasyncinitable.h \ |
||||
/usr/local/include/glib-2.0/gio/ginitable.h \ |
||||
/usr/local/include/glib-2.0/gio/gasyncresult.h \ |
||||
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilterinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/ginputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/goutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gbytesicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gcancellable.h \ |
||||
/usr/local/include/glib-2.0/gio/gcharsetconverter.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverter.h \ |
||||
/usr/local/include/glib-2.0/gio/gcontenttype.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverterinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gcredentials.h \ |
||||
/usr/local/include/glib-2.0/gio/gdatagrambased.h \ |
||||
/usr/local/include/glib-2.0/gio/gdatainputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gdataoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbuserror.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusintrospection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmessage.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusnameowning.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusutils.h \ |
||||
/usr/local/include/glib-2.0/gio/gdrive.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsclientconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsserverconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gemblemedicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gemblem.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileattribute.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gfile.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileinfo.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileiostream.h \ |
||||
/usr/local/include/glib-2.0/gio/giostream.h \ |
||||
/usr/local/include/glib-2.0/gio/gioerror.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetaddressmask.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gioenumtypes.h \ |
||||
/usr/local/include/glib-2.0/gio/giomodule.h \ |
||||
/usr/local/include/glib-2.0/gmodule.h \ |
||||
/usr/local/include/glib-2.0/gio/gioscheduler.h \ |
||||
/usr/local/include/glib-2.0/gio/gloadableicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gmount.h \ |
||||
/usr/local/include/glib-2.0/gio/gmountoperation.h \ |
||||
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gvolumemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gpermission.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableutils.h \ |
||||
/usr/local/include/glib-2.0/gio/gpropertyaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gresource.h \ |
||||
/usr/local/include/glib-2.0/gio/gseekable.h \ |
||||
/usr/local/include/glib-2.0/gio/gsettingsschema.h \ |
||||
/usr/local/include/glib-2.0/gio/gsettings.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleiostream.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimplepermission.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketclient.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketconnectable.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocket.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketlistener.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gsrvtarget.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleproxyresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gtask.h \ |
||||
/usr/local/include/glib-2.0/gio/gsubprocess.h \ |
||||
/usr/local/include/glib-2.0/gio/gsubprocesslauncher.h \ |
||||
/usr/local/include/glib-2.0/gio/gtcpconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtestdbus.h \ |
||||
/usr/local/include/glib-2.0/gio/gthemedicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsbackend.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlscertificate.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsdatabase.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsinteraction.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlspassword.h \ |
||||
/usr/local/include/glib-2.0/gio/gvfs.h \ |
||||
/usr/local/include/glib-2.0/gio/gvolume.h \ |
||||
/usr/local/include/glib-2.0/gio/gzlibcompressor.h \ |
||||
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusinterface.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobject.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/giotypes.h \ |
||||
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenumodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenu.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenuexporter.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gnotification.h \ |
||||
/usr/local/include/glib-2.0/gio/glistmodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gliststore.h \ |
||||
/usr/local/include/glib-2.0/gio/gio-autocleanups.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-enum-types.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-features.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg-cairo.h ../src/ImageData.h \ |
||||
../src/Point.h ../src/Util.h |
||||
../src/CanvasRenderingContext2d.cc: |
||||
../src/CanvasRenderingContext2d.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-version.h: |
||||
/usr/local/include/cairo/cairo-features.h: |
||||
/usr/local/include/cairo/cairo-deprecated.h: |
||||
../src/Canvas.h: |
||||
../src/backend/Backend.h: |
||||
../src/backend/../dll_visibility.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
../src/dll_visibility.h: |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h: |
||||
/usr/local/include/pango-1.0/pango/pango.h: |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h: |
||||
/usr/local/include/pango-1.0/pango/pango-font.h: |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h: |
||||
/usr/local/include/glib-2.0/glib.h: |
||||
/usr/local/include/glib-2.0/glib/galloca.h: |
||||
/usr/local/include/glib-2.0/glib/gtypes.h: |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h: |
||||
/usr/local/include/glib-2.0/glib/gmacros.h: |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h: |
||||
/usr/local/include/glib-2.0/glib/garray.h: |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h: |
||||
/usr/local/include/glib-2.0/glib/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/gatomic.h: |
||||
/usr/local/include/glib-2.0/glib/gerror.h: |
||||
/usr/local/include/glib-2.0/glib/gquark.h: |
||||
/usr/local/include/glib-2.0/glib/gutils.h: |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h: |
||||
/usr/local/include/glib-2.0/glib/gbase64.h: |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h: |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h: |
||||
/usr/local/include/glib-2.0/glib/gbytes.h: |
||||
/usr/local/include/glib-2.0/glib/gcharset.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/gconvert.h: |
||||
/usr/local/include/glib-2.0/glib/gdataset.h: |
||||
/usr/local/include/glib-2.0/glib/gdate.h: |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h: |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h: |
||||
/usr/local/include/glib-2.0/glib/gdir.h: |
||||
/usr/local/include/glib-2.0/glib/genviron.h: |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h: |
||||
/usr/local/include/glib-2.0/glib/ggettext.h: |
||||
/usr/local/include/glib-2.0/glib/ghash.h: |
||||
/usr/local/include/glib-2.0/glib/glist.h: |
||||
/usr/local/include/glib-2.0/glib/gmem.h: |
||||
/usr/local/include/glib-2.0/glib/gnode.h: |
||||
/usr/local/include/glib-2.0/glib/ghmac.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/ghook.h: |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h: |
||||
/usr/local/include/glib-2.0/glib/giochannel.h: |
||||
/usr/local/include/glib-2.0/glib/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/gpoll.h: |
||||
/usr/local/include/glib-2.0/glib/gslist.h: |
||||
/usr/local/include/glib-2.0/glib/gstring.h: |
||||
/usr/local/include/glib-2.0/glib/gunicode.h: |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h: |
||||
/usr/local/include/glib-2.0/glib/gmessages.h: |
||||
/usr/local/include/glib-2.0/glib/gvariant.h: |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h: |
||||
/usr/local/include/glib-2.0/glib/goption.h: |
||||
/usr/local/include/glib-2.0/glib/gpattern.h: |
||||
/usr/local/include/glib-2.0/glib/gprimes.h: |
||||
/usr/local/include/glib-2.0/glib/gqsort.h: |
||||
/usr/local/include/glib-2.0/glib/gqueue.h: |
||||
/usr/local/include/glib-2.0/glib/grand.h: |
||||
/usr/local/include/glib-2.0/glib/gregex.h: |
||||
/usr/local/include/glib-2.0/glib/gscanner.h: |
||||
/usr/local/include/glib-2.0/glib/gsequence.h: |
||||
/usr/local/include/glib-2.0/glib/gshell.h: |
||||
/usr/local/include/glib-2.0/glib/gslice.h: |
||||
/usr/local/include/glib-2.0/glib/gspawn.h: |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h: |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h: |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h: |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h: |
||||
/usr/local/include/glib-2.0/glib/gtimer.h: |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h: |
||||
/usr/local/include/glib-2.0/glib/gtree.h: |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h: |
||||
/usr/local/include/glib-2.0/glib/guuid.h: |
||||
/usr/local/include/glib-2.0/glib/gversion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h: |
||||
/usr/local/include/pango-1.0/pango/pango-features.h: |
||||
/usr/local/include/pango-1.0/pango/pango-types.h: |
||||
/usr/local/include/glib-2.0/glib-object.h: |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject.h: |
||||
/usr/local/include/glib-2.0/gobject/gtype.h: |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h: |
||||
/usr/local/include/glib-2.0/gobject/gparam.h: |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h: |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h: |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h: |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h: |
||||
/usr/local/include/glib-2.0/gobject/genums.h: |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h: |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h: |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h: |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h: |
||||
/usr/local/include/pango-1.0/pango/pango-script.h: |
||||
/usr/local/include/pango-1.0/pango/pango-language.h: |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h: |
||||
/usr/local/include/pango-1.0/pango/pango-break.h: |
||||
/usr/local/include/pango-1.0/pango/pango-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-context.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h: |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h: |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h: |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h: |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h: |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h: |
||||
../src/color.h: |
||||
../src/backend/ImageBackend.h: |
||||
../src/CanvasGradient.h: |
||||
../src/CanvasPattern.h: |
||||
../src/Image.h: |
||||
../src/CanvasError.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg.h: |
||||
/usr/local/include/glib-2.0/gio/gio.h: |
||||
/usr/local/include/glib-2.0/gio/giotypes.h: |
||||
/usr/local/include/glib-2.0/gio/gioenums.h: |
||||
/usr/local/include/glib-2.0/gio/gaction.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h: |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h: |
||||
/usr/local/include/glib-2.0/gio/gappinfo.h: |
||||
/usr/local/include/glib-2.0/gio/gapplication.h: |
||||
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h: |
||||
/usr/local/include/glib-2.0/gio/gasyncinitable.h: |
||||
/usr/local/include/glib-2.0/gio/ginitable.h: |
||||
/usr/local/include/glib-2.0/gio/gasyncresult.h: |
||||
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfilterinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/ginputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/goutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gbytesicon.h: |
||||
/usr/local/include/glib-2.0/gio/gcancellable.h: |
||||
/usr/local/include/glib-2.0/gio/gcharsetconverter.h: |
||||
/usr/local/include/glib-2.0/gio/gconverter.h: |
||||
/usr/local/include/glib-2.0/gio/gcontenttype.h: |
||||
/usr/local/include/glib-2.0/gio/gconverterinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gcredentials.h: |
||||
/usr/local/include/glib-2.0/gio/gdatagrambased.h: |
||||
/usr/local/include/glib-2.0/gio/gdatainputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gdataoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdbuserror.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusintrospection.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmessage.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusnameowning.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusutils.h: |
||||
/usr/local/include/glib-2.0/gio/gdrive.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsclientconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsserverconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gemblemedicon.h: |
||||
/usr/local/include/glib-2.0/gio/gicon.h: |
||||
/usr/local/include/glib-2.0/gio/gemblem.h: |
||||
/usr/local/include/glib-2.0/gio/gfileattribute.h: |
||||
/usr/local/include/glib-2.0/gio/gfileenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gfile.h: |
||||
/usr/local/include/glib-2.0/gio/gfileicon.h: |
||||
/usr/local/include/glib-2.0/gio/gfileinfo.h: |
||||
/usr/local/include/glib-2.0/gio/gfileinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfileiostream.h: |
||||
/usr/local/include/glib-2.0/gio/giostream.h: |
||||
/usr/local/include/glib-2.0/gio/gioerror.h: |
||||
/usr/local/include/glib-2.0/gio/gfilemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h: |
||||
/usr/local/include/glib-2.0/gio/gfileoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/ginetaddress.h: |
||||
/usr/local/include/glib-2.0/gio/ginetaddressmask.h: |
||||
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gioenumtypes.h: |
||||
/usr/local/include/glib-2.0/gio/giomodule.h: |
||||
/usr/local/include/glib-2.0/gmodule.h: |
||||
/usr/local/include/glib-2.0/gio/gioscheduler.h: |
||||
/usr/local/include/glib-2.0/gio/gloadableicon.h: |
||||
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gmount.h: |
||||
/usr/local/include/glib-2.0/gio/gmountoperation.h: |
||||
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gvolumemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkservice.h: |
||||
/usr/local/include/glib-2.0/gio/gpermission.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableutils.h: |
||||
/usr/local/include/glib-2.0/gio/gpropertyaction.h: |
||||
/usr/local/include/glib-2.0/gio/gproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gresource.h: |
||||
/usr/local/include/glib-2.0/gio/gseekable.h: |
||||
/usr/local/include/glib-2.0/gio/gsettingsschema.h: |
||||
/usr/local/include/glib-2.0/gio/gsettings.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleaction.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleiostream.h: |
||||
/usr/local/include/glib-2.0/gio/gsimplepermission.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketclient.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketconnectable.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gsocket.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketlistener.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketservice.h: |
||||
/usr/local/include/glib-2.0/gio/gsrvtarget.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleproxyresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gtask.h: |
||||
/usr/local/include/glib-2.0/gio/gsubprocess.h: |
||||
/usr/local/include/glib-2.0/gio/gsubprocesslauncher.h: |
||||
/usr/local/include/glib-2.0/gio/gtcpconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtestdbus.h: |
||||
/usr/local/include/glib-2.0/gio/gthemedicon.h: |
||||
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsbackend.h: |
||||
/usr/local/include/glib-2.0/gio/gtlscertificate.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsdatabase.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsinteraction.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlspassword.h: |
||||
/usr/local/include/glib-2.0/gio/gvfs.h: |
||||
/usr/local/include/glib-2.0/gio/gvolume.h: |
||||
/usr/local/include/glib-2.0/gio/gzlibcompressor.h: |
||||
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusinterface.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobject.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/giotypes.h: |
||||
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gmenumodel.h: |
||||
/usr/local/include/glib-2.0/gio/gmenu.h: |
||||
/usr/local/include/glib-2.0/gio/gmenuexporter.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h: |
||||
/usr/local/include/glib-2.0/gio/gnotification.h: |
||||
/usr/local/include/glib-2.0/gio/glistmodel.h: |
||||
/usr/local/include/glib-2.0/gio/gliststore.h: |
||||
/usr/local/include/glib-2.0/gio/gio-autocleanups.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-enum-types.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-features.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg-cairo.h: |
||||
../src/ImageData.h: |
||||
../src/Point.h: |
||||
../src/Util.h: |
661
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Image.o.d
generated
vendored
661
server/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Image.o.d
generated
vendored
@ -0,0 +1,661 @@ |
||||
cmd_Release/obj.target/canvas/src/Image.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/Image.o.d.raw -c -o Release/obj.target/canvas/src/Image.o ../src/Image.cc |
||||
Release/obj.target/canvas/src/Image.o: ../src/Image.cc ../src/Image.h \ |
||||
/usr/local/include/cairo/cairo.h \ |
||||
/usr/local/include/cairo/cairo-version.h \ |
||||
/usr/local/include/cairo/cairo-features.h \ |
||||
/usr/local/include/cairo/cairo-deprecated.h ../src/CanvasError.h \ |
||||
../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg.h \ |
||||
/usr/local/include/glib-2.0/glib-object.h \ |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h \ |
||||
/usr/local/include/glib-2.0/glib.h \ |
||||
/usr/local/include/glib-2.0/glib/galloca.h \ |
||||
/usr/local/include/glib-2.0/glib/gtypes.h \ |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h \ |
||||
/usr/local/include/glib-2.0/glib/gmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h \ |
||||
/usr/local/include/glib-2.0/glib/garray.h \ |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/gatomic.h \ |
||||
/usr/local/include/glib-2.0/glib/gerror.h \ |
||||
/usr/local/include/glib-2.0/glib/gquark.h \ |
||||
/usr/local/include/glib-2.0/glib/gutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h \ |
||||
/usr/local/include/glib-2.0/glib/gbase64.h \ |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h \ |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gbytes.h \ |
||||
/usr/local/include/glib-2.0/glib/gcharset.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/gconvert.h \ |
||||
/usr/local/include/glib-2.0/glib/gdataset.h \ |
||||
/usr/local/include/glib-2.0/glib/gdate.h \ |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h \ |
||||
/usr/local/include/glib-2.0/glib/gdir.h \ |
||||
/usr/local/include/glib-2.0/glib/genviron.h \ |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h \ |
||||
/usr/local/include/glib-2.0/glib/ggettext.h \ |
||||
/usr/local/include/glib-2.0/glib/ghash.h \ |
||||
/usr/local/include/glib-2.0/glib/glist.h \ |
||||
/usr/local/include/glib-2.0/glib/gmem.h \ |
||||
/usr/local/include/glib-2.0/glib/gnode.h \ |
||||
/usr/local/include/glib-2.0/glib/ghmac.h \ |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h \ |
||||
/usr/local/include/glib-2.0/glib/ghook.h \ |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h \ |
||||
/usr/local/include/glib-2.0/glib/giochannel.h \ |
||||
/usr/local/include/glib-2.0/glib/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/gpoll.h \ |
||||
/usr/local/include/glib-2.0/glib/gslist.h \ |
||||
/usr/local/include/glib-2.0/glib/gstring.h \ |
||||
/usr/local/include/glib-2.0/glib/gunicode.h \ |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h \ |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h \ |
||||
/usr/local/include/glib-2.0/glib/gmessages.h \ |
||||
/usr/local/include/glib-2.0/glib/gvariant.h \ |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h \ |
||||
/usr/local/include/glib-2.0/glib/goption.h \ |
||||
/usr/local/include/glib-2.0/glib/gpattern.h \ |
||||
/usr/local/include/glib-2.0/glib/gprimes.h \ |
||||
/usr/local/include/glib-2.0/glib/gqsort.h \ |
||||
/usr/local/include/glib-2.0/glib/gqueue.h \ |
||||
/usr/local/include/glib-2.0/glib/grand.h \ |
||||
/usr/local/include/glib-2.0/glib/gregex.h \ |
||||
/usr/local/include/glib-2.0/glib/gscanner.h \ |
||||
/usr/local/include/glib-2.0/glib/gsequence.h \ |
||||
/usr/local/include/glib-2.0/glib/gshell.h \ |
||||
/usr/local/include/glib-2.0/glib/gslice.h \ |
||||
/usr/local/include/glib-2.0/glib/gspawn.h \ |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h \ |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h \ |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h \ |
||||
/usr/local/include/glib-2.0/glib/gtimer.h \ |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h \ |
||||
/usr/local/include/glib-2.0/glib/gtree.h \ |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h \ |
||||
/usr/local/include/glib-2.0/glib/guuid.h \ |
||||
/usr/local/include/glib-2.0/glib/gversion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h \ |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h \ |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtype.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparam.h \ |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h \ |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h \ |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h \ |
||||
/usr/local/include/glib-2.0/gobject/genums.h \ |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h \ |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h \ |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h \ |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h \ |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h \ |
||||
/usr/local/include/glib-2.0/gio/gio.h \ |
||||
/usr/local/include/glib-2.0/gio/giotypes.h \ |
||||
/usr/local/include/glib-2.0/gio/gioenums.h \ |
||||
/usr/local/include/glib-2.0/gio/gaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h \ |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h \ |
||||
/usr/local/include/glib-2.0/gio/gappinfo.h \ |
||||
/usr/local/include/glib-2.0/gio/gapplication.h \ |
||||
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h \ |
||||
/usr/local/include/glib-2.0/gio/gasyncinitable.h \ |
||||
/usr/local/include/glib-2.0/gio/ginitable.h \ |
||||
/usr/local/include/glib-2.0/gio/gasyncresult.h \ |
||||
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilterinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/ginputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/goutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gbytesicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gcancellable.h \ |
||||
/usr/local/include/glib-2.0/gio/gcharsetconverter.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverter.h \ |
||||
/usr/local/include/glib-2.0/gio/gcontenttype.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverterinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gcredentials.h \ |
||||
/usr/local/include/glib-2.0/gio/gdatagrambased.h \ |
||||
/usr/local/include/glib-2.0/gio/gdatainputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gdataoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbuserror.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusintrospection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmessage.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusnameowning.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusutils.h \ |
||||
/usr/local/include/glib-2.0/gio/gdrive.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsclientconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gdtlsserverconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gemblemedicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gemblem.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileattribute.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gfile.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileinfo.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileiostream.h \ |
||||
/usr/local/include/glib-2.0/gio/giostream.h \ |
||||
/usr/local/include/glib-2.0/gio/gioerror.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h \ |
||||
/usr/local/include/glib-2.0/gio/gfileoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetaddressmask.h \ |
||||
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gioenumtypes.h \ |
||||
/usr/local/include/glib-2.0/gio/giomodule.h \ |
||||
/usr/local/include/glib-2.0/gmodule.h \ |
||||
/usr/local/include/glib-2.0/gio/gioscheduler.h \ |
||||
/usr/local/include/glib-2.0/gio/gloadableicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gmount.h \ |
||||
/usr/local/include/glib-2.0/gio/gmountoperation.h \ |
||||
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gvolumemonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h \ |
||||
/usr/local/include/glib-2.0/gio/gnetworkservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gpermission.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableinputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h \ |
||||
/usr/local/include/glib-2.0/gio/gpollableutils.h \ |
||||
/usr/local/include/glib-2.0/gio/gpropertyaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyaddress.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h \ |
||||
/usr/local/include/glib-2.0/gio/gproxyresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gresource.h \ |
||||
/usr/local/include/glib-2.0/gio/gseekable.h \ |
||||
/usr/local/include/glib-2.0/gio/gsettingsschema.h \ |
||||
/usr/local/include/glib-2.0/gio/gsettings.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleaction.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleiostream.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimplepermission.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketclient.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketconnectable.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocket.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketlistener.h \ |
||||
/usr/local/include/glib-2.0/gio/gsocketservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gsrvtarget.h \ |
||||
/usr/local/include/glib-2.0/gio/gsimpleproxyresolver.h \ |
||||
/usr/local/include/glib-2.0/gio/gtask.h \ |
||||
/usr/local/include/glib-2.0/gio/gsubprocess.h \ |
||||
/usr/local/include/glib-2.0/gio/gsubprocesslauncher.h \ |
||||
/usr/local/include/glib-2.0/gio/gtcpconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtestdbus.h \ |
||||
/usr/local/include/glib-2.0/gio/gthemedicon.h \ |
||||
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsbackend.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlscertificate.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsdatabase.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsinteraction.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h \ |
||||
/usr/local/include/glib-2.0/gio/gtlspassword.h \ |
||||
/usr/local/include/glib-2.0/gio/gvfs.h \ |
||||
/usr/local/include/glib-2.0/gio/gvolume.h \ |
||||
/usr/local/include/glib-2.0/gio/gzlibcompressor.h \ |
||||
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusinterface.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobject.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/giotypes.h \ |
||||
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenumodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenu.h \ |
||||
/usr/local/include/glib-2.0/gio/gmenuexporter.h \ |
||||
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gnotification.h \ |
||||
/usr/local/include/glib-2.0/gio/glistmodel.h \ |
||||
/usr/local/include/glib-2.0/gio/gliststore.h \ |
||||
/usr/local/include/glib-2.0/gio/gio-autocleanups.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-enum-types.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-features.h \ |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg-cairo.h \ |
||||
../src/bmp/BMPParser.h ../src/Canvas.h ../src/backend/Backend.h \ |
||||
../src/backend/../dll_visibility.h ../src/dll_visibility.h \ |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h \ |
||||
/usr/local/include/pango-1.0/pango/pango.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-font.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-features.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-script.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-language.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-break.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-context.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h \ |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h ../src/Util.h |
||||
../src/Image.cc: |
||||
../src/Image.h: |
||||
/usr/local/include/cairo/cairo.h: |
||||
/usr/local/include/cairo/cairo-version.h: |
||||
/usr/local/include/cairo/cairo-features.h: |
||||
/usr/local/include/cairo/cairo-deprecated.h: |
||||
../src/CanvasError.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg.h: |
||||
/usr/local/include/glib-2.0/glib-object.h: |
||||
/usr/local/include/glib-2.0/gobject/gbinding.h: |
||||
/usr/local/include/glib-2.0/glib.h: |
||||
/usr/local/include/glib-2.0/glib/galloca.h: |
||||
/usr/local/include/glib-2.0/glib/gtypes.h: |
||||
/usr/local/lib/glib-2.0/include/glibconfig.h: |
||||
/usr/local/include/glib-2.0/glib/gmacros.h: |
||||
/usr/local/include/glib-2.0/glib/gversionmacros.h: |
||||
/usr/local/include/glib-2.0/glib/garray.h: |
||||
/usr/local/include/glib-2.0/glib/gasyncqueue.h: |
||||
/usr/local/include/glib-2.0/glib/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/gatomic.h: |
||||
/usr/local/include/glib-2.0/glib/gerror.h: |
||||
/usr/local/include/glib-2.0/glib/gquark.h: |
||||
/usr/local/include/glib-2.0/glib/gutils.h: |
||||
/usr/local/include/glib-2.0/glib/gbacktrace.h: |
||||
/usr/local/include/glib-2.0/glib/gbase64.h: |
||||
/usr/local/include/glib-2.0/glib/gbitlock.h: |
||||
/usr/local/include/glib-2.0/glib/gbookmarkfile.h: |
||||
/usr/local/include/glib-2.0/glib/gbytes.h: |
||||
/usr/local/include/glib-2.0/glib/gcharset.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/gconvert.h: |
||||
/usr/local/include/glib-2.0/glib/gdataset.h: |
||||
/usr/local/include/glib-2.0/glib/gdate.h: |
||||
/usr/local/include/glib-2.0/glib/gdatetime.h: |
||||
/usr/local/include/glib-2.0/glib/gtimezone.h: |
||||
/usr/local/include/glib-2.0/glib/gdir.h: |
||||
/usr/local/include/glib-2.0/glib/genviron.h: |
||||
/usr/local/include/glib-2.0/glib/gfileutils.h: |
||||
/usr/local/include/glib-2.0/glib/ggettext.h: |
||||
/usr/local/include/glib-2.0/glib/ghash.h: |
||||
/usr/local/include/glib-2.0/glib/glist.h: |
||||
/usr/local/include/glib-2.0/glib/gmem.h: |
||||
/usr/local/include/glib-2.0/glib/gnode.h: |
||||
/usr/local/include/glib-2.0/glib/ghmac.h: |
||||
/usr/local/include/glib-2.0/glib/gchecksum.h: |
||||
/usr/local/include/glib-2.0/glib/ghook.h: |
||||
/usr/local/include/glib-2.0/glib/ghostutils.h: |
||||
/usr/local/include/glib-2.0/glib/giochannel.h: |
||||
/usr/local/include/glib-2.0/glib/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/gpoll.h: |
||||
/usr/local/include/glib-2.0/glib/gslist.h: |
||||
/usr/local/include/glib-2.0/glib/gstring.h: |
||||
/usr/local/include/glib-2.0/glib/gunicode.h: |
||||
/usr/local/include/glib-2.0/glib/gkeyfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmappedfile.h: |
||||
/usr/local/include/glib-2.0/glib/gmarkup.h: |
||||
/usr/local/include/glib-2.0/glib/gmessages.h: |
||||
/usr/local/include/glib-2.0/glib/gvariant.h: |
||||
/usr/local/include/glib-2.0/glib/gvarianttype.h: |
||||
/usr/local/include/glib-2.0/glib/goption.h: |
||||
/usr/local/include/glib-2.0/glib/gpattern.h: |
||||
/usr/local/include/glib-2.0/glib/gprimes.h: |
||||
/usr/local/include/glib-2.0/glib/gqsort.h: |
||||
/usr/local/include/glib-2.0/glib/gqueue.h: |
||||
/usr/local/include/glib-2.0/glib/grand.h: |
||||
/usr/local/include/glib-2.0/glib/gregex.h: |
||||
/usr/local/include/glib-2.0/glib/gscanner.h: |
||||
/usr/local/include/glib-2.0/glib/gsequence.h: |
||||
/usr/local/include/glib-2.0/glib/gshell.h: |
||||
/usr/local/include/glib-2.0/glib/gslice.h: |
||||
/usr/local/include/glib-2.0/glib/gspawn.h: |
||||
/usr/local/include/glib-2.0/glib/gstrfuncs.h: |
||||
/usr/local/include/glib-2.0/glib/gstringchunk.h: |
||||
/usr/local/include/glib-2.0/glib/gtestutils.h: |
||||
/usr/local/include/glib-2.0/glib/gthreadpool.h: |
||||
/usr/local/include/glib-2.0/glib/gtimer.h: |
||||
/usr/local/include/glib-2.0/glib/gtrashstack.h: |
||||
/usr/local/include/glib-2.0/glib/gtree.h: |
||||
/usr/local/include/glib-2.0/glib/gurifuncs.h: |
||||
/usr/local/include/glib-2.0/glib/guuid.h: |
||||
/usr/local/include/glib-2.0/glib/gversion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcache.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gmain.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/grel.h: |
||||
/usr/local/include/glib-2.0/glib/deprecated/gthread.h: |
||||
/usr/local/include/glib-2.0/glib/glib-autocleanups.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject.h: |
||||
/usr/local/include/glib-2.0/gobject/gtype.h: |
||||
/usr/local/include/glib-2.0/gobject/gvalue.h: |
||||
/usr/local/include/glib-2.0/gobject/gparam.h: |
||||
/usr/local/include/glib-2.0/gobject/gclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gsignal.h: |
||||
/usr/local/include/glib-2.0/gobject/gmarshal.h: |
||||
/usr/local/include/glib-2.0/gobject/gboxed.h: |
||||
/usr/local/include/glib-2.0/gobject/glib-types.h: |
||||
/usr/local/include/glib-2.0/gobject/genums.h: |
||||
/usr/local/include/glib-2.0/gobject/gparamspecs.h: |
||||
/usr/local/include/glib-2.0/gobject/gsourceclosure.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypemodule.h: |
||||
/usr/local/include/glib-2.0/gobject/gtypeplugin.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluearray.h: |
||||
/usr/local/include/glib-2.0/gobject/gvaluetypes.h: |
||||
/usr/local/include/glib-2.0/gobject/gobject-autocleanups.h: |
||||
/usr/local/include/glib-2.0/gio/gio.h: |
||||
/usr/local/include/glib-2.0/gio/giotypes.h: |
||||
/usr/local/include/glib-2.0/gio/gioenums.h: |
||||
/usr/local/include/glib-2.0/gio/gaction.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h: |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h: |
||||
/usr/local/include/glib-2.0/gio/gappinfo.h: |
||||
/usr/local/include/glib-2.0/gio/gapplication.h: |
||||
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h: |
||||
/usr/local/include/glib-2.0/gio/gasyncinitable.h: |
||||
/usr/local/include/glib-2.0/gio/ginitable.h: |
||||
/usr/local/include/glib-2.0/gio/gasyncresult.h: |
||||
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfilterinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/ginputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/goutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gbytesicon.h: |
||||
/usr/local/include/glib-2.0/gio/gcancellable.h: |
||||
/usr/local/include/glib-2.0/gio/gcharsetconverter.h: |
||||
/usr/local/include/glib-2.0/gio/gconverter.h: |
||||
/usr/local/include/glib-2.0/gio/gcontenttype.h: |
||||
/usr/local/include/glib-2.0/gio/gconverterinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gcredentials.h: |
||||
/usr/local/include/glib-2.0/gio/gdatagrambased.h: |
||||
/usr/local/include/glib-2.0/gio/gdatainputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gdataoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdbuserror.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusintrospection.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmessage.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusnameowning.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusutils.h: |
||||
/usr/local/include/glib-2.0/gio/gdrive.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsclientconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gdtlsserverconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gemblemedicon.h: |
||||
/usr/local/include/glib-2.0/gio/gicon.h: |
||||
/usr/local/include/glib-2.0/gio/gemblem.h: |
||||
/usr/local/include/glib-2.0/gio/gfileattribute.h: |
||||
/usr/local/include/glib-2.0/gio/gfileenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gfile.h: |
||||
/usr/local/include/glib-2.0/gio/gfileicon.h: |
||||
/usr/local/include/glib-2.0/gio/gfileinfo.h: |
||||
/usr/local/include/glib-2.0/gio/gfileinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gfileiostream.h: |
||||
/usr/local/include/glib-2.0/gio/giostream.h: |
||||
/usr/local/include/glib-2.0/gio/gioerror.h: |
||||
/usr/local/include/glib-2.0/gio/gfilemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h: |
||||
/usr/local/include/glib-2.0/gio/gfileoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/ginetaddress.h: |
||||
/usr/local/include/glib-2.0/gio/ginetaddressmask.h: |
||||
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gioenumtypes.h: |
||||
/usr/local/include/glib-2.0/gio/giomodule.h: |
||||
/usr/local/include/glib-2.0/gmodule.h: |
||||
/usr/local/include/glib-2.0/gio/gioscheduler.h: |
||||
/usr/local/include/glib-2.0/gio/gloadableicon.h: |
||||
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gmount.h: |
||||
/usr/local/include/glib-2.0/gio/gmountoperation.h: |
||||
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gvolumemonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h: |
||||
/usr/local/include/glib-2.0/gio/gnetworkservice.h: |
||||
/usr/local/include/glib-2.0/gio/gpermission.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableinputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h: |
||||
/usr/local/include/glib-2.0/gio/gpollableutils.h: |
||||
/usr/local/include/glib-2.0/gio/gpropertyaction.h: |
||||
/usr/local/include/glib-2.0/gio/gproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyaddress.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h: |
||||
/usr/local/include/glib-2.0/gio/gproxyresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gresource.h: |
||||
/usr/local/include/glib-2.0/gio/gseekable.h: |
||||
/usr/local/include/glib-2.0/gio/gsettingsschema.h: |
||||
/usr/local/include/glib-2.0/gio/gsettings.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleaction.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gactionmap.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleiostream.h: |
||||
/usr/local/include/glib-2.0/gio/gsimplepermission.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketclient.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketconnectable.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gsocket.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketlistener.h: |
||||
/usr/local/include/glib-2.0/gio/gsocketservice.h: |
||||
/usr/local/include/glib-2.0/gio/gsrvtarget.h: |
||||
/usr/local/include/glib-2.0/gio/gsimpleproxyresolver.h: |
||||
/usr/local/include/glib-2.0/gio/gtask.h: |
||||
/usr/local/include/glib-2.0/gio/gsubprocess.h: |
||||
/usr/local/include/glib-2.0/gio/gsubprocesslauncher.h: |
||||
/usr/local/include/glib-2.0/gio/gtcpconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtestdbus.h: |
||||
/usr/local/include/glib-2.0/gio/gthemedicon.h: |
||||
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsbackend.h: |
||||
/usr/local/include/glib-2.0/gio/gtlscertificate.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsdatabase.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsinteraction.h: |
||||
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h: |
||||
/usr/local/include/glib-2.0/gio/gtlspassword.h: |
||||
/usr/local/include/glib-2.0/gio/gvfs.h: |
||||
/usr/local/include/glib-2.0/gio/gvolume.h: |
||||
/usr/local/include/glib-2.0/gio/gzlibcompressor.h: |
||||
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusinterface.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobject.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/giotypes.h: |
||||
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h: |
||||
/usr/local/include/glib-2.0/gio/gmenumodel.h: |
||||
/usr/local/include/glib-2.0/gio/gmenu.h: |
||||
/usr/local/include/glib-2.0/gio/gmenuexporter.h: |
||||
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h: |
||||
/usr/local/include/glib-2.0/gio/gnotification.h: |
||||
/usr/local/include/glib-2.0/gio/glistmodel.h: |
||||
/usr/local/include/glib-2.0/gio/gliststore.h: |
||||
/usr/local/include/glib-2.0/gio/gio-autocleanups.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-macros.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: |
||||
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-enum-types.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/librsvg-features.h: |
||||
/usr/local/include/librsvg-2.0/librsvg/rsvg-cairo.h: |
||||
../src/bmp/BMPParser.h: |
||||
../src/Canvas.h: |
||||
../src/backend/Backend.h: |
||||
../src/backend/../dll_visibility.h: |
||||
../src/dll_visibility.h: |
||||
/usr/local/include/pango-1.0/pango/pangocairo.h: |
||||
/usr/local/include/pango-1.0/pango/pango.h: |
||||
/usr/local/include/pango-1.0/pango/pango-attributes.h: |
||||
/usr/local/include/pango-1.0/pango/pango-font.h: |
||||
/usr/local/include/pango-1.0/pango/pango-coverage.h: |
||||
/usr/local/include/pango-1.0/pango/pango-version-macros.h: |
||||
/usr/local/include/pango-1.0/pango/pango-features.h: |
||||
/usr/local/include/pango-1.0/pango/pango-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-gravity.h: |
||||
/usr/local/include/pango-1.0/pango/pango-matrix.h: |
||||
/usr/local/include/pango-1.0/pango/pango-script.h: |
||||
/usr/local/include/pango-1.0/pango/pango-language.h: |
||||
/usr/local/include/pango-1.0/pango/pango-bidi-type.h: |
||||
/usr/local/include/pango-1.0/pango/pango-break.h: |
||||
/usr/local/include/pango-1.0/pango/pango-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-context.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontmap.h: |
||||
/usr/local/include/pango-1.0/pango/pango-fontset.h: |
||||
/usr/local/include/pango-1.0/pango/pango-engine.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph.h: |
||||
/usr/local/include/pango-1.0/pango/pango-enum-types.h: |
||||
/usr/local/include/pango-1.0/pango/pango-glyph-item.h: |
||||
/usr/local/include/pango-1.0/pango/pango-layout.h: |
||||
/usr/local/include/pango-1.0/pango/pango-tabs.h: |
||||
/usr/local/include/pango-1.0/pango/pango-renderer.h: |
||||
/usr/local/include/pango-1.0/pango/pango-utils.h: |
||||
../src/Util.h: |
@ -0,0 +1,69 @@ |
||||
cmd_Release/obj.target/canvas/src/ImageData.o := g++ '-DNODE_GYP_MODULE_NAME=canvas' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DHAVE_GIF' '-DHAVE_JPEG' '-DHAVE_RSVG' '-DBUILDING_NODE_EXTENSION' -I/root/.cache/node-gyp/12.13.1/include/node -I/root/.cache/node-gyp/12.13.1/src -I/root/.cache/node-gyp/12.13.1/deps/openssl/config -I/root/.cache/node-gyp/12.13.1/deps/openssl/openssl/include -I/root/.cache/node-gyp/12.13.1/deps/uv/include -I/root/.cache/node-gyp/12.13.1/deps/zlib -I/root/.cache/node-gyp/12.13.1/deps/v8/include -I../../node_modules/nan -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/libpng16 -I/usr/include/uuid -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/fribidi -I/usr/local/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -O3 -fno-omit-frame-pointer -fno-rtti -std=gnu++1y -MMD -MF ./Release/.deps/Release/obj.target/canvas/src/ImageData.o.d.raw -c -o Release/obj.target/canvas/src/ImageData.o ../src/ImageData.cc |
||||
Release/obj.target/canvas/src/ImageData.o: ../src/ImageData.cc \ |
||||
../src/ImageData.h ../../node_modules/nan/nan.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h \ |
||||
../../node_modules/nan/nan_callbacks.h \ |
||||
../../node_modules/nan/nan_callbacks_12_inl.h \ |
||||
../../node_modules/nan/nan_maybe_43_inl.h \ |
||||
../../node_modules/nan/nan_converters.h \ |
||||
../../node_modules/nan/nan_converters_43_inl.h \ |
||||
../../node_modules/nan/nan_new.h \ |
||||
../../node_modules/nan/nan_implementation_12_inl.h \ |
||||
../../node_modules/nan/nan_persistent_12_inl.h \ |
||||
../../node_modules/nan/nan_weak.h \ |
||||
../../node_modules/nan/nan_object_wrap.h \ |
||||
../../node_modules/nan/nan_private.h \ |
||||
../../node_modules/nan/nan_typedarray_contents.h \ |
||||
../../node_modules/nan/nan_json.h \ |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h ../src/Util.h |
||||
../src/ImageData.cc: |
||||
../src/ImageData.h: |
||||
../../node_modules/nan/nan.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/errno.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/unix.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/threadpool.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/uv/linux.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-internal.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8config.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8-platform.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_version.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_buffer.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/node_object_wrap.h: |
||||
../../node_modules/nan/nan_callbacks.h: |
||||
../../node_modules/nan/nan_callbacks_12_inl.h: |
||||
../../node_modules/nan/nan_maybe_43_inl.h: |
||||
../../node_modules/nan/nan_converters.h: |
||||
../../node_modules/nan/nan_converters_43_inl.h: |
||||
../../node_modules/nan/nan_new.h: |
||||
../../node_modules/nan/nan_implementation_12_inl.h: |
||||
../../node_modules/nan/nan_persistent_12_inl.h: |
||||
../../node_modules/nan/nan_weak.h: |
||||
../../node_modules/nan/nan_object_wrap.h: |
||||
../../node_modules/nan/nan_private.h: |
||||
../../node_modules/nan/nan_typedarray_contents.h: |
||||
../../node_modules/nan/nan_json.h: |
||||
/root/.cache/node-gyp/12.13.1/include/node/v8.h: |
||||
../src/Util.h: |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue