This file is indexed.

/usr/include/jellyfish/stream_manager.hpp is in libjellyfish-2.0-dev 2.2.8-3build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*  This file is part of Jellyfish.

    Jellyfish is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Jellyfish is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Jellyfish.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <iostream>
#include <fstream>
#include <stdexcept>
#include <memory>
#include <vector>
#include <list>
#include <set>

#include <jellyfish/locks_pthread.hpp>
#include <jellyfish/err.hpp>
#include <jellyfish/parser_common.hpp>

namespace jellyfish {
template<typename PathIterator>
class stream_manager {
  /// A wrapper around an ifstream for a standard file. Standard in
  /// opposition to a pipe_stream below, but the file may be a regular
  /// file or a pipe. The file is opened once and notifies the manager
  /// that it is closed upon destruction.
  class file_stream : public std::ifstream {
    stream_manager& manager_;
  public:
    file_stream(const char* path, stream_manager& manager) :
      std::ifstream(path),
      manager_(manager)
    {
      manager_.take_file();
    }
    virtual ~file_stream() { manager_.release_file(); }
  };
  friend class file_stream;

  /// A wrapper around an ifstream for a "multi pipe". The multi pipe
  /// are connected to generators (external commands generating
  /// sequence). They are opened repeatedly, until they are unlinked
  /// from the file system.
  class pipe_stream : public std::ifstream {
    const char*     path_;
    stream_manager& manager_;
  public:
    pipe_stream(const char* path, stream_manager& manager) :
      std::ifstream(path),
      path_(path),
      manager_(manager)
    { }
    virtual ~pipe_stream() { manager_.release_pipe(path_); }
  };
  friend class pipe_stream;

#ifdef HAVE_HTSLIB
  /// A wrapper around a SAM file wrapper.
  class sam_stream : public sam_wrapper {
    const char*     path_;
    stream_manager& manager_;
  public:
    sam_stream(const char* path, stream_manager& manager)
      : sam_wrapper(path)
      , path_(path)
      , manager_(manager)
    {
      manager_.take_file();
    }
    virtual ~sam_stream() { manager_.release_file(); }
  };
  friend class sam_stream;
#endif

  PathIterator           paths_cur_, paths_end_;
#ifdef HAVE_HTSLIB
  PathIterator           sams_cur_, sams_end_;
#endif
  int                    files_open_;
  const int              concurrent_files_;
  std::list<const char*> free_pipes_;
  std::set<const char*>  busy_pipes_;
  locks::pthread::mutex_recursive  mutex_;

public:
  define_error_class(Error);

  explicit stream_manager(int concurrent_files = 1)
    : paths_cur_(PathIterator()), paths_end_(PathIterator())
#ifdef HAVE_HTSLIB
    , sams_cur_(PathIterator()), sams_end_(PathIterator())
#endif
    , files_open_(0)
    , concurrent_files_(concurrent_files)
  { }
  stream_manager(PathIterator paths_begin, PathIterator paths_end, int concurrent_files = 1)
    : paths_cur_(paths_begin), paths_end_(paths_end)
#ifdef HAVE_HTSLIB
    , sams_cur_(PathIterator()), sams_end_(PathIterator())
#endif
    , files_open_(0)
    , concurrent_files_(concurrent_files)
  { }

  stream_manager(PathIterator paths_begin, PathIterator paths_end,
                 PathIterator pipe_begin, PathIterator pipe_end,
                 int concurrent_files = 1)
    : paths_cur_(paths_begin), paths_end_(paths_end)
#ifdef HAVE_HTSLIB
    , sams_cur_(PathIterator()), sams_end_(PathIterator())
#endif
    , files_open_(0)
    , concurrent_files_(concurrent_files)
    , free_pipes_(pipe_begin, pipe_end)
  { }

  void paths(PathIterator paths_begin, PathIterator paths_end) {
    paths_cur_ = paths_begin;
    paths_end_ = paths_end;
  }

  void pipes(PathIterator pipe_begin, PathIterator pipe_end) {
    free_pipes_.assign(pipe_begin, pipe_end);
  }

#ifdef HAVE_HTSLIB
  void sams(PathIterator sam_begin, PathIterator sam_end) {
    sams_cur_ = sam_begin;
    sams_end_ = sam_end;
  }
#endif

  stream_type next() {
    locks::pthread::mutex_lock lock(mutex_);
    stream_type res;
    open_next_file(res);
    if(res.standard) return res;
    open_next_pipe(res);
    if(res.standard) return res;
#ifdef HAVE_HTSLIB
    open_next_sam(res);
#endif
    return res;
  }

  int concurrent_files() const { return concurrent_files_; }
  // Number of pipes available. Not thread safe
  int concurrent_pipes() const { return free_pipes_.size() + busy_pipes_.size(); }
  // Number of streams available. Not thread safe
  int nb_streams() const { return concurrent_files() + concurrent_pipes(); }

protected:
  void open_next_file(stream_type& res) {
    if(files_open_ >= concurrent_files_)
      return;
    while(paths_cur_ != paths_end_) {
      std::string path = *paths_cur_;
      ++paths_cur_;
      res.standard.reset(new file_stream(path.c_str(), *this));
      if(res.standard->good())
        return;
      res.standard.reset();
      throw std::runtime_error(err::msg() << "Can't open file '" << path << "'");
    }
  }

#ifdef HAVE_HTSLIB
  void open_next_sam(stream_type& res) {
    if(files_open_ >= concurrent_files_)
      return;
    while(sams_cur_ != sams_end_) {
      std::string path = *sams_cur_;
      ++sams_cur_;
      res.sam.reset(new sam_stream(path.c_str(), *this));
      if(res.sam->good())
        return;
      res.sam.reset();
      throw std::runtime_error(err::msg() << "Can't open SAM file '" << path << '\'');
    }
  }
#endif

  void open_next_pipe(stream_type& res) {
    while(!free_pipes_.empty()) {
      const char* path = free_pipes_.front();
      free_pipes_.pop_front();
      res.standard.reset(new pipe_stream(path, *this));
      if(res.standard->good()) {
        busy_pipes_.insert(path);
        return;
      }
      // The pipe failed to open, so it is not marked as busy. This
      // reset will make us forget about this path.
      res.standard.reset();
    }
  }

  void take_file() {
    locks::pthread::mutex_lock lock(mutex_);
    ++files_open_;
  }

  void release_file() {
    locks::pthread::mutex_lock lock(mutex_);
    --files_open_;
  }

  // void take_pipe(const char* path) {
  //   locks::pthread::mutex_lock lock(mutex_);
  // }
  void release_pipe(const char* path) {
    locks::pthread::mutex_lock lock(mutex_);
    if(busy_pipes_.erase(path) == 0)
      return; // Nothing erased. We forget about that path
    free_pipes_.push_back(path);
  }
};
} // namespace jellyfish