aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/SkSLFileOutputStream.h
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-03-31 16:04:34 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-31 16:04:41 +0000
commit9bd301d640ff63c280b202c7dd00bc00a3315ff4 (patch)
tree176fcfe46fb17a8c50c145196705f4ef42a950fa /src/sksl/SkSLFileOutputStream.h
parent92d7ccafdf896cf19764e025873d13315a76842d (diff)
Revert "skslc can now be compiled with no Skia dependencies, in preparation for its eventual"
This reverts commit f3333c89bf05fc602d9bf8e1e24547668c660383. Reason for revert: breaking the bots Original change's description: > skslc can now be compiled with no Skia dependencies, in preparation for its eventual > role in Skia's build process. > > This reverts commit bcf35f86d50b784b165de703b404998dd4299f6a. > > BUG=skia: > > Change-Id: Id0a12dfc4d804d69a3c6bf60fed37e89ee130f02 > Reviewed-on: https://skia-review.googlesource.com/10802 > Commit-Queue: Ethan Nicholas <ethannicholas@google.com> > Reviewed-by: Ben Wagner <benjaminwagner@google.com> > TBR=benjaminwagner@google.com,ethannicholas@google.com,reviews@skia.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Change-Id: Ic7b50d391d25b3870acffa9764cbafc7f5c3be89 Reviewed-on: https://skia-review.googlesource.com/10962 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/SkSLFileOutputStream.h')
-rw-r--r--src/sksl/SkSLFileOutputStream.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/src/sksl/SkSLFileOutputStream.h b/src/sksl/SkSLFileOutputStream.h
deleted file mode 100644
index f4739306c9..0000000000
--- a/src/sksl/SkSLFileOutputStream.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright 2017 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SKSL_FILEOUTPUTSTREAM
-#define SKSL_FILEOUTPUTSTREAM
-
-#include "SkSLOutputStream.h"
-#include <stdio.h>
-
-namespace SkSL {
-
-class FileOutputStream : public OutputStream {
-public:
- FileOutputStream(const char* name) {
- fFile = fopen(name, "w");
- }
-
- ~FileOutputStream() {
- ASSERT(!fOpen);
- }
-
- bool isValid() const override {
- return nullptr != fFile;
- }
-
- void write8(uint8_t b) override {
- ASSERT(fOpen);
- if (isValid()) {
- if (EOF == fputc(b, fFile)) {
- fFile = nullptr;
- }
- }
- }
-
- void writeText(const char* s) override {
- ASSERT(fOpen);
- if (isValid()) {
- if (EOF == fputs(s, fFile)) {
- fFile = nullptr;
- }
- }
- }
-
- void write(const void* s, size_t size) override {
- if (isValid()) {
- size_t written = fwrite(s, 1, size, fFile);
- if (written != size) {
- fFile = nullptr;
- }
- }
- }
-
- bool close() {
- fOpen = false;
- if (isValid() && fclose(fFile)) {
- fFile = nullptr;
- return false;
- }
- return true;
- }
-
-private:
- bool fOpen = true;
- FILE *fFile;
-
- typedef OutputStream INHERITED;
-};
-
-} // namespace
-
-#endif