File: func_grpc_main.cc

package info (click to toggle)
opentelemetry-cpp 1.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,372 kB
  • sloc: cpp: 96,239; sh: 1,766; makefile: 36; python: 31
file content (821 lines) | stat: -rw-r--r-- 19,117 bytes parent folder | download
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#include <stdio.h>
#include <string.h>
#include <chrono>
#include <cstdint>
#include <iostream>
#include <string>
#include <utility>

#include "opentelemetry/exporters/otlp/otlp_grpc_exporter_factory.h"
#include "opentelemetry/exporters/otlp/otlp_grpc_exporter_options.h"
#include "opentelemetry/nostd/shared_ptr.h"
#include "opentelemetry/nostd/string_view.h"
#include "opentelemetry/sdk/common/attribute_utils.h"
#include "opentelemetry/sdk/common/global_log_handler.h"
#include "opentelemetry/sdk/trace/exporter.h"
#include "opentelemetry/sdk/trace/processor.h"
#include "opentelemetry/sdk/trace/provider.h"
#include "opentelemetry/sdk/trace/simple_processor_factory.h"
#include "opentelemetry/sdk/trace/tracer_provider.h"
#include "opentelemetry/sdk/trace/tracer_provider_factory.h"
#include "opentelemetry/trace/provider.h"
#include "opentelemetry/trace/span.h"
#include "opentelemetry/trace/tracer.h"
#include "opentelemetry/trace/tracer_provider.h"

namespace trace     = opentelemetry::trace;
namespace trace_sdk = opentelemetry::sdk::trace;
namespace otlp      = opentelemetry::exporter::otlp;
namespace nostd     = opentelemetry::nostd;

namespace internal_log = opentelemetry::sdk::common::internal_log;

const int TEST_PASSED = 0;
const int TEST_FAILED = 1;

/*
  Command line parameters.
*/

enum class TestMode : std::uint8_t
{
  kNone,
  kHttp,
  kHttps
};

bool opt_help   = false;
bool opt_list   = false;
bool opt_debug  = false;
bool opt_secure = false;
// HTTPS by default
std::string opt_endpoint = "https://127.0.0.1:4317";
std::string opt_cert_dir;
std::string opt_test_name;
TestMode opt_mode = TestMode::kNone;

/*
  Log parsing
*/

struct TestResult
{
  bool found_connection_failed = false;
  bool found_export_error      = false;
  bool found_export_success    = false;
  bool deadline_exceeded       = false;
  bool empty_address_list      = false;

  void reset()
  {
    found_connection_failed = false;
    found_export_error      = false;
    found_export_success    = false;
    deadline_exceeded       = false;
    empty_address_list      = false;
  }
};

struct TestResult g_test_result;

void parse_error_msg(TestResult *result, const std::string &msg)
{
  static std::string connection_failed("failed to connect to all addresses");

  if (msg.find(connection_failed) != std::string::npos)
  {
    result->found_connection_failed = true;
  }

  static std::string export_failed("Export() failed with status_code");

  if (msg.find(export_failed) != std::string::npos)
  {
    result->found_export_error = true;
  }

  static std::string deadline_exceeded("Deadline Exceeded");

  if (msg.find(deadline_exceeded) != std::string::npos)
  {
    result->deadline_exceeded = true;
  }

  static std::string empty_address_list("empty address list:");

  if (msg.find(empty_address_list) != std::string::npos)
  {
    result->empty_address_list = true;
  }
}

void parse_warning_msg(TestResult * /* result */, const std::string & /* msg */) {}

void parse_info_msg(TestResult * /* result */, const std::string & /* msg */) {}

void parse_debug_msg(TestResult *result, const std::string &msg)
{
  static std::string export_success("Export 1 trace span(s) success");

  if (msg.find(export_success) != std::string::npos)
  {
    result->found_export_success = true;
  }
}

class TestLogHandler : public opentelemetry::sdk::common::internal_log::LogHandler
{
public:
  void Handle(opentelemetry::sdk::common::internal_log::LogLevel level,
              const char * /* file */,
              int /* line */,
              const char *msg,
              const opentelemetry::sdk::common::AttributeMap & /* attributes */) noexcept override
  {
    if (msg == nullptr)
    {
      msg = "<no msg>";
    }

    switch (level)
    {
      case opentelemetry::sdk::common::internal_log::LogLevel::None:
        break;
      case opentelemetry::sdk::common::internal_log::LogLevel::Error:
        std::cout << " - [E] " << msg << '\n';
        parse_error_msg(&g_test_result, msg);
        break;
      case opentelemetry::sdk::common::internal_log::LogLevel::Warning:
        std::cout << " - [W] " << msg << '\n';
        parse_warning_msg(&g_test_result, msg);
        break;
      case opentelemetry::sdk::common::internal_log::LogLevel::Info:
        std::cout << " - [I] " << msg << '\n';
        parse_info_msg(&g_test_result, msg);
        break;
      case opentelemetry::sdk::common::internal_log::LogLevel::Debug:
        std::cout << " - [D] " << msg << '\n';
        parse_debug_msg(&g_test_result, msg);
        break;
    }
  }
};

void init(const otlp::OtlpGrpcExporterOptions &opts)
{
  // Create OTLP exporter instance
  auto exporter  = otlp::OtlpGrpcExporterFactory::Create(opts);
  auto processor = trace_sdk::SimpleSpanProcessorFactory::Create(std::move(exporter));
  std::shared_ptr<opentelemetry::trace::TracerProvider> provider =
      trace_sdk::TracerProviderFactory::Create(std::move(processor));
  // Set the global trace provider
  trace_sdk::Provider::SetTracerProvider(provider);
}

void payload()
{
  static const nostd::string_view k_tracer_name("func_test");
  static const nostd::string_view k_span_name("func_grpc_main");
  static const nostd::string_view k_attr_test_name("test_name");

  auto provider = trace::Provider::GetTracerProvider();
  auto tracer   = provider->GetTracer(k_tracer_name, "1.0");

  auto span = tracer->StartSpan(k_span_name);
  span->SetAttribute(k_attr_test_name, opt_test_name);
  span->End();
}

void cleanup()
{
  std::shared_ptr<opentelemetry::trace::TracerProvider> none;
  trace_sdk::Provider::SetTracerProvider(none);
}

void instrumented_payload(const otlp::OtlpGrpcExporterOptions &opts)
{
  g_test_result.reset();
  init(opts);
  payload();
  cleanup();
}

void usage(FILE *out)
{
  static const char *msg =
      "Usage: func_otlp_grpc [options] test_name\n"
      "Valid options are:\n"
      "  --help            Print this help\n"
      "  --list            List test names\n"
      "  --endpoint url    OTLP gRPC endpoint (https://localhost:4317/ by default)\n"
      "  --cert-dir dir    Directory that contains test ssl certificates\n"
      "  --mode mode       Test server mode (used to verify expected results)\n"
      "                      - none: no endpoint\n"
      "                      - http: http endpoint\n"
      "                      - https: https endpoint\n";
  fprintf(out, "%s", msg);
}

int parse_args(int argc, char *argv[])
{
  int remaining_argc    = argc;
  char **remaining_argv = argv;

  while (remaining_argc > 0)
  {
    if (strcmp(*remaining_argv, "--help") == 0)
    {
      opt_help = true;
      return 0;
    }

    if (strcmp(*remaining_argv, "--list") == 0)
    {
      opt_list = true;
      return 0;
    }

    if (strcmp(*remaining_argv, "--debug") == 0)
    {
      opt_debug = true;
      remaining_argc--;
      remaining_argv++;
      continue;
    }

    if (remaining_argc >= 2)
    {
      if (strcmp(*remaining_argv, "--cert-dir") == 0)
      {
        remaining_argc--;
        remaining_argv++;
        opt_cert_dir = *remaining_argv;
        remaining_argc--;
        remaining_argv++;
        continue;
      }

      if (strcmp(*remaining_argv, "--endpoint") == 0)
      {
        remaining_argc--;
        remaining_argv++;
        opt_endpoint = *remaining_argv;
        remaining_argc--;
        remaining_argv++;
        continue;
      }

      if (strcmp(*remaining_argv, "--mode") == 0)
      {
        remaining_argc--;
        remaining_argv++;
        std::string mode = *remaining_argv;
        remaining_argc--;
        remaining_argv++;

        if (mode == "none")
        {
          opt_mode = TestMode::kNone;
        }
        else if (mode == "http")
        {
          opt_mode = TestMode::kHttp;
        }
        else if (mode == "https")
        {
          opt_mode = TestMode::kHttps;
        }
        else
        {
          // Unknown mode
          return 2;
        }

        continue;
      }
    }

    opt_test_name = *remaining_argv;
    remaining_argc--;
    remaining_argv++;

    if (remaining_argc)
    {
      // Unknown option
      return 1;
    }
  }

  return 0;
}

typedef int (*test_func_t)();

struct test_case
{
  std::string m_name;
  test_func_t m_func;
};

int test_basic();

int test_cert_not_found();
int test_cert_invalid();
int test_cert_unreadable();
int test_client_cert_not_found();
int test_client_cert_invalid();
int test_client_cert_unreadable();
int test_client_cert_no_key();
int test_client_key_not_found();
int test_client_key_invalid();
int test_client_key_unreadable();

int test_mtls_ok();

static const test_case all_tests[] = {{"basic", test_basic},
                                      {"cert-not-found", test_cert_not_found},
                                      {"cert-invalid", test_cert_invalid},
                                      {"cert-unreadable", test_cert_unreadable},
#ifdef ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW
                                      {"client-cert-not-found", test_client_cert_not_found},
                                      {"client-cert-invalid", test_client_cert_invalid},
                                      {"client-cert-unreadable", test_client_cert_unreadable},
                                      {"client-cert-no-key", test_client_cert_no_key},
                                      {"client-key-not-found", test_client_key_not_found},
                                      {"client-key-invalid", test_client_key_invalid},
                                      {"client-key-unreadable", test_client_key_unreadable},
                                      {"mtls-ok", test_mtls_ok},
#endif  // ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW
                                      {"", nullptr}};

void list_test_cases()
{
  const test_case *current = all_tests;

  while (current->m_func != nullptr)
  {
    std::cout << current->m_name << '\n';
    current++;
  }
}

int run_test_case(const std::string &name)
{
  const test_case *current = all_tests;

  while (current->m_func != nullptr)
  {
    if (current->m_name == name)
    {
      int rc = current->m_func();
      return rc;
    }
    current++;
  }

  std::cerr << "Unknown test <" << name << ">" << '\n';
  return 1;
}

int main(int argc, char *argv[])
{
  // Program name
  argc--;
  argv++;

  int rc = parse_args(argc, argv);

  if (rc != 0)
  {
    usage(stderr);
    return 1;
  }

  if (opt_help)
  {
    usage(stdout);
    return 0;
  }

  if (opt_list)
  {
    list_test_cases();
    return 0;
  }

  if (opt_endpoint.find("https:") != std::string::npos)
  {
    opt_secure = true;
  }
  else
  {
    opt_secure = false;
  }

  opentelemetry::nostd::shared_ptr<internal_log::LogHandler> log_handler(new TestLogHandler);

  internal_log::GlobalLogHandler::SetLogHandler(log_handler);
  internal_log::GlobalLogHandler::SetLogLevel(internal_log::LogLevel::Debug);

  rc = run_test_case(opt_test_name);
  return rc;
}

void set_common_opts(otlp::OtlpGrpcExporterOptions &opts)
{
  opts.endpoint            = opt_endpoint;
  opts.timeout             = std::chrono::milliseconds{100};
  opts.use_ssl_credentials = (opt_mode == TestMode::kHttps);

#ifdef ENABLE_ASYNC_EXPORT
  // Work around, ASYNC export not working.
  opts.max_concurrent_requests = 0;
#endif
}

int expect_connection_failed()
{
  if (g_test_result.found_export_error &&
      (g_test_result.found_connection_failed || g_test_result.deadline_exceeded ||
       g_test_result.empty_address_list))
  {
    return TEST_PASSED;
  }
  return TEST_FAILED;
}

int expect_success()
{
  if (g_test_result.found_export_success)
  {
    return TEST_PASSED;
  }
  return TEST_FAILED;
}

int expect_export_failed()
{
  /*
    Can not test exact root cause:
    - connect failed ?
    - send request failed ?
    - exact error message ?
    so only verifying export failed.
  */

  if (g_test_result.found_export_error)
  {
    return TEST_PASSED;
  }
  return TEST_FAILED;
}

int test_basic()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  if (opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_connection_failed();
  }

  return expect_connection_failed();
}

int test_cert_not_found()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/no-such-file.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_cert_invalid()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/garbage.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_cert_unreadable()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/unreadable.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

#ifdef ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW
int test_client_cert_not_found()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/no-such-file.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_client_cert_invalid()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/garbage.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_client_cert_unreadable()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/unreadable.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_client_cert_no_key()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/client_cert.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_client_key_not_found()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/client_cert.pem";
  opts.ssl_client_key_path         = opt_cert_dir + "/no-such-file.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_client_key_invalid()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/client_cert.pem";
  opts.ssl_client_key_path         = opt_cert_dir + "/garbage.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_client_key_unreadable()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/client_cert.pem";
  opts.ssl_client_key_path         = opt_cert_dir + "/unreadable.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_success();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_export_failed();
  }

  return expect_connection_failed();
}

int test_mtls_ok()
{
  otlp::OtlpGrpcExporterOptions opts;

  set_common_opts(opts);
  opts.ssl_credentials_cacert_path = opt_cert_dir + "/ca.pem";
  opts.ssl_client_cert_path        = opt_cert_dir + "/client_cert.pem";
  opts.ssl_client_key_path         = opt_cert_dir + "/client_cert-key.pem";

  instrumented_payload(opts);

  if (opt_mode == TestMode::kNone)
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_connection_failed();
  }

  if (!opt_secure && (opt_mode == TestMode::kHttps))
  {
    return expect_success();
  }

  if (opt_secure && (opt_mode == TestMode::kHttp))
  {
    return expect_connection_failed();
  }

  return expect_success();
}
#endif  // ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW