summaryrefslogtreecommitdiff
path: root/generate_delta_main.cc
blob: 14af193a9eb2d1b451d19e091a578f127f08c021 (plain)
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
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>

#include <algorithm>
#include <string>
#include <vector>
#include <tr1/memory>

#include <glib.h>

#include "chromeos/obsolete_logging.h"
#include "update_engine/subprocess.h"
#include "update_engine/update_metadata.pb.h"

using std::sort;
using std::string;
using std::vector;
using std::tr1::shared_ptr;

// This file contains a simple program that takes an old path, a new path,
// and an output file as arguments and the path to an output file and
// generates a delta that can be sent to Chrome OS clients.

namespace chromeos_update_engine {

int main(int argc, char** argv) {
  g_thread_init(NULL);
  Subprocess::Init();
  if (argc != 4) {
    usage(argv[0]);
  }
  const char* old_dir = argv[1];
  const char* new_dir = argv[2];
  if ((!IsDir(old_dir)) || (!IsDir(new_dir))) {
    usage(argv[0]);
  }
  // TODO(adlr): implement using DeltaDiffGenerator
  return 0;
}